Канал Частота (МГц)
- 1 446,00625
- 2 446,01875
- 3 446,03125
- 4 446,04375
- 5 446,05625
- 6 446,06875
- 7 446,08125
- 8 446,09375
- Details
- Hits: 3555
dv => mpeg2
dvgrab capture_20060604.dv ffmpeg -i capture_20060604.dv -target pal-dvd capture_20060604.mpeg
more ... http://womble.decadent.org.uk/talks/dvd-ukuug06/dvd-talk-ukuug06-paper.html
mkv => avi: change container
/opt/mplayer/bin/mencoder infile.mkv -oac copy -ovc copy -o outfile.avi
or using mkvtoolnix
- MKV is a container, to see what the file contains:
$ mkvinfo movie.mkv |+ Segment tracks | + Track number: 1 ^^^^^^^^^^^^^^^ + Track type: video ^^^^^^^^^^^^^^^^
- select the numbers of the trucks you want to extract and type:
$ mkvextract tracks "/mnt/common/Film/movie.mkv" 1:/mnt/common/Film/video.h264 2:/mnt/common/Film/audio.aac
- Let's put all toghether:
$ mencoder -audiofile video.aac -oac copy -ovc copy audio.h264 [-of mpeg] -o movie_complete.mpg
or
$ ffmpeg -i video.h264 -i audio.aac -map 0.0:0 -map 1.0:0 -acodec copy -vcodec copy -r 23.976 -f vob video.mpg
- Details
- Hits: 3845
Page 6 of 8