💾 Archived View for zigford.org › burning-a-dvd-video-on-gentoo.gmi captured on 2023-03-20 at 18:02:09. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
Sharing linux/windows scripts and tips
May 15, 2018 — Jesse Harris
Quick note for my future self
~~~
media-video/ffmpeg
media-video/dvdauthor
app-cdr/dvd+rw-tools
Start by using ffmpeg to convert the media to a dvd compatible format:
ffmpeg -i Big\ Buck\ Bunny.mp4 -target pal-dvd BigBuckBunny.mpg
Now use dvdauthor to author a title
dvdauthor -t -o dvd --video=pal -f BigBuckBunny.mpg
Add a table of contents
dvdauthor -T -o dvd
Create the ISO file
mkisofs -dvd-video -o BigBuckBunny.iso dvd/
(Optional) Mount to a loopback for testing
mkdir mount mount -o loop BigBuckBunny.iso mount/
Play the video using VLC or some other tool to check it, then unmount
umount mount/
Burn to a disc
growisofs -dvd-compat -Z /dev/sr0=BigBuckBunny.iso
Credit to andrew.46 over at the ubuntuforums
andrew.46 over at the ubuntuforums
Tags:
Generated with bashblog, a single bash script to easily create blogs like this one