From 3b0142cedcde39e4c2097ecd916a870a3ced5ec6 Mon Sep 17 00:00:00 2001 From: Vito Graffagnino Date: Tue, 8 Sep 2020 18:10:49 +0100 Subject: Added the relevent parts of the .config directory. Alss add ssh config --- .cheat/dvdlinux | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .cheat/dvdlinux (limited to '.cheat/dvdlinux') diff --git a/.cheat/dvdlinux b/.cheat/dvdlinux new file mode 100644 index 0000000..fbccb6b --- /dev/null +++ b/.cheat/dvdlinux @@ -0,0 +1,28 @@ +Make sure the following are installed: + +ffmpeg, dvdauthor, genisoimage, growisofs, dvd+rw-tools + +enter the following: + +$ export VIDEO_FORMAT=PAL # This is used later when the DVD is being authored. + +now need to convert the video file into mpg format: + +$ ffmpeg -i yourfile.mkv -target pal-dvd -aspect 16:9 yournewfile.mpg + +Now we can use dvdauthor + +$ mkdir DVD +$ dvdauthor -o DVD -t yournewfile.mpg # -o defines the output folder, -t defines the title file. + # Repeat this for as many files as you want on the dvd. +$ dvdauthor -i DVD -T # This defines the TOC. + +We are now ready to convert the DVD to an iso to burn + +genisoimage -dvd-video -o yourimage.iso + +Once this is ready to burn can use k3b or on the command line use: + +$ growisofs -dvd-compat -Z /dev/sr0=yourimage.iso + +Ref: https://www.linux.com/blog/how-convert-video-file-iso-burn-dvd -- cgit v1.2.3