4
4
I am trying to resize a video from 1920x1800 to 1280x720 for phone viewing.
This is the command I used:
avconv -i input.mkv \
-map 0:v -map 0:a:1 -map 0:s:0 \ # map video, 2nd audio stream, and subtitles
-s 1280x720 \ # resize
-c:a copy -c:s copy \ # copy audio and subtitles
output.mkv`
The output is indeed the correct resolution, but it suffers from artifacts.
Input:

Output:

Output detail:

1I am pretty sure that if you don't specify a bitrate for the video it will use the default 256 kBit/s, which is low, hence the banding. – Paul – 2013-10-02T02:52:12.810
That's the reason! If you make this an answer I'll accept it as soon as I'm able. – Matthew Piziak – 2013-10-02T03:29:33.077