yum -y install xine kino
# (mjpegtools included)
yum -y install transcode ffmpeg
yum -y install libdvdread-devel
# for dvdauthor make
# not install dvdauthor, but build from src (/usr/local/bin/)
# for dv2sub-0.1
yum -y install libdv-devel
# dv2sub-0.1
./configure; make; make install
### SHIT !!!
### qdvdauthor-0.1.1
### ./configure; make; make install
# very cool :)
yum -y install cinelerra
# I do not know how usable is that:
yum -y install ksubtile subtitleripper
Nice commands:
# print information about multimedia streams: tcprobe -i file.avi # supported formats: ffmpeg -formats # Convert to VCD format: ffmpeg -i source_file.avi -target vcd test.mpg # split to separate audio an video streams ffmpeg -i dv001.dv -ab 192 -ar 48000 audio.mp2 -f dvd -an video.mpv kino - Get recording time for subtitles (in directory from where started) cp sub_date.sh sub_ffmpeg_dvd.sh /usr/share/kino/scripts/exports
Make a new image of size 720×576 (for PAL), with a resolution of 75dpi in the x-axis and 80 in the y-axis (NTSC values are 81 and 72). Add an alpha channel, then create the menu picture you desire. Once this is finished, add another layer and mark out the location of the buttons that can be highlighted, A maximum of four colors can be used for this mask. When you're satisfied with the menu, export the background layer as a JPEG file and the mask as an indexed PNG. Make sure you've set the number of colors to four, three if you're saving the transparent background as a color.
convert background.jpg ppm:- | ppmtoy4m -n50 -F25:1 -A59:54 -I p -r -S 420mpeg2 | \ mpeg2enc -n p -f8 -b5000 -a3 -o background.m2v # If you do not want any audio present in your menu, # it is still necessary to create a silent audio ffmpeg -ab 224 -ar 48000 -ac 2 -t 5 menu_audio.ac3 # put together mplex -f 8 -o menu_tmp.mpg background.m2v menu_audio.ac3 # Use spumux to merge button_highlight & button_select images into the menu video. spumux spumux.xml < menu_tmp.mpg > menu_final.mpg
<dvdauthor dest="dvdtmp">
<vmgm>
<menus>
<video format="pal" aspect="4:3" />
<audio />
<subpicture lang="en" />
</menus>
</vmgm>
<titleset>
<titles>
<pgc>
<vob file="test.mpg" pause="0" />
</pgc>
</titles>
</titleset>
</dvdauthor>