ffmpeg

Forum rules
Share your brain ;)
machinebacon
Baconator
Posts: 10253
Joined: Thu Sep 16, 2010 11:03 am
Location: Pfälzerwald
Contact:

ffmpeg

Unread post by machinebacon » Wed May 21, 2014 7:13 pm

To convert an mp4 (recorded with your mobile's cam) to flv (for direct upload to youtube) you can try something like this:
ffmpeg -i dat_ass.mp4 -c:v libx264 -ar 22050 -crf 28 this_ass.flv

-ar sets the audio quality
-crf sets the compression (this is around 50% compressed)

Other hints: http://blog.superuser.com/2012/02/24/ff ... tion-tool/
..gnutella..

User avatar
dkeg
Configurator
Posts: 3782
Joined: Sun Nov 18, 2012 9:23 pm
Location: Mid-Atlantic Grill

Re: ffmpeg

Unread post by dkeg » Wed May 21, 2014 10:38 pm

Oh cool, that could prove useful.

Work hard; Complain less

User avatar
johnraff
Sperminator
Posts: 199
Joined: Wed Oct 17, 2012 6:38 pm
Location: Japan
Contact:

Re: ffmpeg

Unread post by johnraff » Wed May 28, 2014 5:29 am

Thank you for that. Wading through all of ffmpeg's options is too much like real work...
All code is one.

machinebacon
Baconator
Posts: 10253
Joined: Thu Sep 16, 2010 11:03 am
Location: Pfälzerwald
Contact:

Re: ffmpeg

Unread post by machinebacon » Wed May 28, 2014 5:40 am

Unfortunately it needs quite a CPU ... and time.
..gnutella..

Post Reply