Hi all!
First, i use Kubuntu and mencoder with mplayer.
I want to convert from mkv to avi. Movie play fine, but don't expand to full screen (remain black borders around image). Anyway, my player from tv don't support mkv format, so i want to convert to avi and add subtitle stream.
I try to do that using mencoder. Everything work, except that, i can't get movie to work at fullscreen, mean that is to stretch the entire width.
This are steps that we followed.
1. detect crop
Code:
mplayer movie.mkv -vf cropdetect=:2
i get after few moments this value: 352:240:0:0

2. encode movie (without subtitle for moment)
Code:
mencoder movie.mkv -vf crop=352:240:0:0 -noskip -oac mp3lame -ovc xvid -xvidencopts pass=1 -ffourcc XVID -o movie-sub.avi
Result play ok on my pc and on tv player, but still not in full screen like other movies.
What i can do?