Difference between revisions of "Export Video menjadi DVD"

From OnnoWiki
Jump to navigation Jump to search
(New page: Kino akan mengenerate mp2 & mpv file misalnya menggunakan script berikut ffmpeg -i $1 -vcodec copy -an -f rawvideo foo.mpv ffmpeg -i $1 -vn -acodec copy -f mp2 foo.mp2 mplex -...)
 
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
Kino akan mengenerate mp2 & mpv file misalnya menggunakan script berikut
+
Untuk Export [[Video]] menjadi [[DVD]] menggunakan Kino. Pastikan
 +
 
 +
# apt-get install avidemux
 +
 
 +
 
 +
[[Image:Kino05.jpeg|right|200px|thumb]]
 +
Kemudian dari menu di Kino lakukan
 +
 
 +
Export -> MPEG
 +
 
 +
Pastikan file format [[DVD]]. File yang di hasilkan akan berextension .mpeg.
 +
 
 +
Pada dasarnya Kino akan mengenerate mp2 & mpv file misalnya menggunakan script mpgfix berikut
  
 
     ffmpeg -i $1 -vcodec copy -an -f rawvideo foo.mpv
 
     ffmpeg -i $1 -vcodec copy -an -f rawvideo foo.mpv
Line 6: Line 18:
 
     rm foo.mpv foo.mp2
 
     rm foo.mpv foo.mp2
  
Jalankan menggunakan perintah misalnya
+
Untuk memperbaiki file mpg jalankan menggunakan perintah misalnya
  
 
     mpgfix file.mpg file-fixed.mpg
 
     mpgfix file.mpg file-fixed.mpg
  
So file.mpg is remuxed and saved as file-fixed.mpg. You can save the file with the same name of course, then the original one will be replaced with the remuxed one. Mind that there is no quality loss here, no recoding.
+
Gunakan todisc dari aplikasi tovid untuk membuat folder DVD
 
 
And here comes the nice part DVD authoring, I just launch one of the tovid scripts (todisc):
 
  
    todisc -loop 0 -chain-videos -menu-length 2 -thumb-shape normal -aspect 16:9 -menu-title "My DVD" -pal -files *.mpg -titles *.mpg -out DVD
+
todisc -loop 0 -chain-videos -menu-length 2 -thumb-shape normal -aspect 16:9 \
 +
-menu-title "My DVD" -pal -files *.mpg -titles *.mpg -out DVD
  
And after a while in the DVD directory there is a complete authored DVD :) with nice animated menus. You can generate an ISO image out of it:
+
Buat file iso dari folder DVD
  
    mksiofs -dvd-video -o dvd.iso DVD/
+
mkisofs -dvd-video -o dvd.iso DVD/
  
And you'll get a file dvd.iso which is a complete ISO image ready to burn. Enjoy.
+
File iso siap di burn :) ..
  
  
Line 30: Line 41:
 
==Pranala Menarik==
 
==Pranala Menarik==
  
 +
* [[tovid Video Authoring CLI di Linux]]
 
* [[Kino Video Editor di Linux]]
 
* [[Kino Video Editor di Linux]]
 
* [[Multimedia di Linux]]
 
* [[Multimedia di Linux]]
 
* [[Linux Howto]]
 
* [[Linux Howto]]
 +
 +
[[Category: Multimedia]]
 +
[[Category: Linux]]

Latest revision as of 09:51, 10 May 2010

Untuk Export Video menjadi DVD menggunakan Kino. Pastikan

# apt-get install avidemux


Kino05.jpeg

Kemudian dari menu di Kino lakukan

Export -> MPEG

Pastikan file format DVD. File yang di hasilkan akan berextension .mpeg.

Pada dasarnya Kino akan mengenerate mp2 & mpv file misalnya menggunakan script mpgfix berikut

   ffmpeg -i $1 -vcodec copy -an -f rawvideo foo.mpv
   ffmpeg -i $1 -vn -acodec copy -f mp2 foo.mp2
   mplex -f 8 -o $2 foo.mpv foo.mp2
   rm foo.mpv foo.mp2

Untuk memperbaiki file mpg jalankan menggunakan perintah misalnya

   mpgfix file.mpg file-fixed.mpg

Gunakan todisc dari aplikasi tovid untuk membuat folder DVD

todisc -loop 0 -chain-videos -menu-length 2 -thumb-shape normal -aspect 16:9 \
-menu-title "My DVD" -pal -files *.mpg -titles *.mpg -out DVD

Buat file iso dari folder DVD

mkisofs -dvd-video -o dvd.iso DVD/

File iso siap di burn :) ..


Referensi

Pranala Menarik