DAR 16:9 Sometimes pads when video is already 16:9
- Code:
<Profile id="mpeg2DAR" name="mpeg2video 16:9" extendsProfileId="1">
<Transcoding>
<Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3" DAR="16:9">
<Matches container="*" />
</Video>
</Transcoding>
<OnlineTranscoding>
<Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3">
<Matches container="*" />
</Video>
</OnlineTranscoding>
</Profile>
These files get padded and end up displaying incorrectly in 4:3(including playing the stf file in VLC)
http://www.demo-world.eu/trailers/redir ... sprite_mix).rar 720x480 (16:9)
http://www.demo-world.eu/trailers/redir ... rience.rar 720x480 (16:9)
http://www.demo-world.eu/trailers/redir ... g_life.rar 720x576 (16:9)
e.g. ffmpeg -y -c:v mpeg2video -qscale:v 1 -vf pad=1024:576:152:0:black,setdar=4:3 -r 25 -g 15 -c:a copy -map 0:0 -map 0:1 -sn -f mpegts C:\Windows\TEMP\Serviio\transcoding-temp-197-mpeg2DAR-ORIGINAL.stf
These file don't get padded and display correctly:
http://tomtom2k5.free.fr/mkv/720p/calif ... le-hdq.mkv 1280x720 (16:9)
http://videos.hd-trailers.net/riddick-f ... r-720p.mp4 1280x720 (16:9)
http://videos.hd-trailers.net/riddick-f ... p-HDTN.mov 640x360 (16:9)
eg ffmpeg -y -c:v mpeg2video -qscale:v 1 -r 24000/1001 -g 15 -c:a copy -map 0:0 -map 0:1 -sn -f mpegts C:\Windows\TEMP\Serviio\transcoding-temp-63-mpeg2DAR-ORIGINAL.stf
It seems me that all 16:9 and lower DAR e.g.14:9 and 4:3 should not be padded but this doesn't seem to be the case. Why is that?
This might be related to this topic: viewtopic.php?f=11&t=2956