-
ffmpeg: Using -b option with -target pal-dvd
I’m converting a .ts file from a set top box to a mpg file using:
ffmpeg -i data0001.ts -target pal-dvd data0001.mpg
Works great. However, the output file is large, so I’d like to sacrifice some resolution to get the size down.
I tried to use the -b option as follows:
fmpeg -i data0001.ts -target pal-dvd -b 2048 data0001_2048.mpg
I do get a smaller file (about 5 times smaller), but quite pixelated. Problem is I get the same size/quality no matter what value I use for -b. That is I tried -b 1024,2048,4096 etc etc and I always get approximately the same output size/quality.
I dont really have any control over size/quality.
Am I allowed to use the -target and -b together?
Steve