- March 24, 2007
- 12,073
- 7,459
- Home Country
- Germany
- Moderator
- #31
I had some small tests with ffmpeg as well and it will be used as an additional thumbnail creator for MP2 as well (default uses Windows-shell thumbnail features).
I have many recordings stored in anamorphic format and want to get the image in proper 16:9 format (no tiling wanted at all). So I used video filters to scale the output according to the sample aspect ratio. I've added also a deinterlace filter:
ffmpeg.... -vf "yadif=0:-1:0","scale=iw*sar:ih","setsar=1:1","scale=iw/2:-1"
the 2nd scale command does resize the corrected frame to 1/2 of input size.
Maybe this can be useful for your needs as well, so I let you know this
I have many recordings stored in anamorphic format and want to get the image in proper 16:9 format (no tiling wanted at all). So I used video filters to scale the output according to the sample aspect ratio. I've added also a deinterlace filter:
ffmpeg.... -vf "yadif=0:-1:0","scale=iw*sar:ih","setsar=1:1","scale=iw/2:-1"
the 2nd scale command does resize the corrected frame to 1/2 of input size.
Maybe this can be useful for your needs as well, so I let you know this