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 -...)
 
Line 6: Line 6:
 
     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/
 
     mksiofs -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 :) ..
  
  

Revision as of 18:56, 9 March 2010

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 -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

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

File iso siap di burn :) ..


Referensi

Pranala Menarik