|
| Encoding DVDs |
Linux-Video.net/DVD/Encoders
Linux-Video.net/DVD/Players
Linux-Video.net/DVD/Libs
- Mplayer Config Files
- /etc/mplayer.conf
- ~/.mplayer/config
- ~/.mplayer/mencoder
- Video Format
- List of Supported CODES
MplayerHQ.hu Codecs
mencoder -oac help list of supported Audio codecs
mencoder -ovc help list of supported Video codecs
- Codecs
MplayerHQ.hu codec features
- Video Codes
- Audio Codes
- Containers ( wrappers )
|
| Converting Movies with mencoder ( from mplayer ) |
- create *.mpeg
mencoder movie.wmv -ovc lavc -oac mp3lame -o movie.mpg -of mpeg
- create *.avi and video to DivX video and the audio track to mp3
mencoder movie.wmv -o movie.avi -ovc lavc -oac lavc
- create a DivX AVI using lavc to create mpeg4 for video and your audio to mp2
mencoder -ovc lavc -oac lavc -ffourcc DX50 -o
- use mp3 audio
mencoder movie.wmv -o movie.avi -ovc lavc -oac lavc -lavcopts acodec=mp3
|
| Encoding DVDs with mencoder ( from mplayer ) |
MplayerHQ.hu mencoder
- Convert from StartTime ( 5:00 in ) to EndTime ( 3minutes ) to MPEG4
mencoder dvd://1 -ovc lavc -lavcopts -ss 5:00 -endpos 3:00 vcodec=mpeg4
- Convert Chapter to MPEG4
- convert chapter-1 only
mencoder dvd://1 -ovc lavc -lavcopts -chapter 1-1 vcodec=mpeg4
- convert chapter-2 thru chapter-4 only
mencoder dvd://1 -ovc lavc -lavcopts -chapter 2-4 vcodec=mpeg4
- To View how it was created
|
| Encoder Howto |
|