user349026
user349026

Reputation:

How to create uncompressed avi from a compressed video using FFMPEG

I need to create an uncompressed avi from a compressed video (.mpg). How do I do that using ffmpeg?

Thanks!

Upvotes: 0

Views: 4200

Answers (1)

obaqueiro
obaqueiro

Reputation: 982

You should however change the settings for your video:

ffmpeg -i test.mpg -y -f avi -b 1150 -s 320x240 -r 29.97 -g 12 -qmin 3 -qmax 13 -ab 224 -ar 44100 -ac 2 test.avi

Source

Upvotes: 1

Related Questions