Burning A DVD Movie From .avi file
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    xyphoid
    Posts: 870 from 2008/7/11
    From: Delaware, USA
    How do I go about burning a movie on morphos? What is the best technique(commands, and programs)
    found dvd engine, and dvdauthor, but I suck at shell commands..
  • »25.11.09 - 22:11
    Profile
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    xyphoid
    Posts: 870 from 2008/7/11
    From: Delaware, USA
    found thisMEncoder link and wondered if some could pick out the string to convert from avi to vob
  • »27.11.09 - 21:13
    Profile
  • Order of the Butterfly
    Order of the Butterfly
    koan
    Posts: 303 from 2005/11/21
    From: UK
    Do you mean burn the file onto a DVD-R ?

    If you mean burn a DVD that you can put in a consumer DVD player and play on TV then you've got a lot of work to convert it into a suitable video coding, audio coding, resolution, bit rate etc. dvdauthor and mencoder are good places to start looking.
  • »28.11.09 - 20:14
    Profile
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    xyphoid
    Posts: 870 from 2008/7/11
    From: Delaware, USA
    yea, I mentioned that....I can't seem to figure out the technical set of commands, as I tried, but was unsuccessful.
  • »29.11.09 - 20:33
    Profile
  • Order of the Butterfly
    Order of the Butterfly
    koan
    Posts: 303 from 2005/11/21
    From: UK
    Umm, you're thinking that two lines of CLI will be enough to create a burnable DVD image ? I'm sorry but you really need to do your research on this.

    Try keywords "create DVD mencoder".

    You will get something like

    Code:
    mencoder -of mpeg -mpegopts format=dvd:tsaf -oac lavc -ovc lavc -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:keyint=15:vstrict=0:acodec=ac3 -srate 48000 -af lavcresample=48000 input.avi -o output.mpg


    But you have to understand what all those options mean otherwise you'll end up making lots of expensive silver coasters. Many people post tips with magic incantations for using mencoder but don't know what the options mean. This is a case where you have to RTFM and separate the information from people who know what they are doing and the people who don't.

    You need to know about DVD specifications for bit rate and coding; dvdauthor set up and how to burn the image when it is complete.
  • »29.11.09 - 21:42
    Profile
  • Yokemate of Keyboards
    Yokemate of Keyboards
    Zylesea
    Posts: 2057 from 2003/6/4
    What abaout this software;
    http://www.amiganews.de/en/news/AN-2008-12-00040-EN.html
    Never tried myself, but sounded nice. Information is/was sparse, the webpage www.pegasossoft.de seriously lacks information (and is not really browseable with that Firefox on the Eee I am using right now).
    --
    http://via.bckrs.de

    Whenever you're sad just remember the world is 4.543 billion years old and you somehow managed to exist at the same time as David Bowie.
    ...and Matthias , my friend - RIP
  • »29.11.09 - 22:48
    Profile Visit Website
  • Yokemate of Keyboards
    Yokemate of Keyboards
    Andreas_Wolf
    Posts: 12163 from 2003/5/22
    From: Germany
    > What abaout this software;
    > http://www.amiganews.de/en/news/AN-2008-12-00040-EN.html

    Most recent version would be:

    http://www.amiga-news.de/en/news/AN-2009-01-00033-EN.html

    > the webpage www.pegasossoft.de seriously lacks information (and is not really
    > browseable with that Firefox on the Eee I am using right now).

    That's been the condition of that site from the year dot. And it has zilch to do with the browser ;-)
  • »30.11.09 - 00:09
    Profile
  • Just looking around
    oposky2006
    Posts: 1 from 2009/11/30
    maybe a burner will help u
  • »30.11.09 - 05:11
    Profile Visit Website
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    xyphoid
    Posts: 870 from 2008/7/11
    From: Delaware, USA
    using the below set of lines, produced resulting files in about 45mins.

    mencoder <input file> -o <output file> -oac lavc -ovc lavc -of mpeg
    -mpegopts format=dvd:tsaf -lavcopts
    vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:keyint=15:vstrict=0:acodec=ac3

    Again this is just tinkering, and a/v sync may not be in tune, but two files were produced one a mpeg of 1.7gigs, and a vob which was 565.6 megs. The original file was avi 699.1megs.

    What would be the next step, and how does dvdauthor come into play? Do I now proceed to FP, and set the dirs. then burn? I haven't found anything on this next step or steps.

    dvd author -m command produced A/V_TS folders, but I can't decifer the next set of codes (pls don't WTF me :-))

    dvdauthor -v ntsc + 16:9 + 720xfull -a ac3 + en -o [location/file] -f|[location:temp/file.vob

    [ Edited by xyphoid on 2009/11/30 19:33 ]
  • »30.11.09 - 23:10
    Profile
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    xyphoid
    Posts: 870 from 2008/7/11
    From: Delaware, USA
    1) Is this the correct setup for dvdauthor?(-x dvdauthor.xml)

    <dvdauthor dest="DVD">
    <vmgm />
    <titleset>
    <titles>
    <video widescreen="nopanscan" />
    <pgc>
    <vob file="file.vob" chapters="0,0:30,1:00,1:30,2:30,3:00,3:30,4:00"/>
    </pgc>
    </pgc>
    </titles>
    </titleset>
    </dvdauthor>

    2) how do I impliment it?

    3) what does this error [ Input is not proper UTF-8, indicate encoding !
    Bytes: 0xA0 0x3C 0x74 0x69
    <titleset>] mean?

    [ Edited by xyphoid on 2009/11/30 22:10 ]
  • »01.12.09 - 02:40
    Profile
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    xyphoid
    Posts: 870 from 2008/7/11
    From: Delaware, USA
    dvd-engine links seem broken..
    would like to give this another attempt
    :-?
  • »18.01.10 - 04:14
    Profile
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    osco
    Posts: 680 from 2009/10/21
    From: Boston, USA
    How about going to the Mplayer site..There is extensive documentation.. "A lot of how to's http://www.mplayerhq.hu/DOCS/man/en/mplayer.1.txt
    http://www.mplayerhq.hu/DOCS/HTML/en/index.html

    there is also a main page link in the second link above
    you can do it..show us the path:)


    [ Edited by osco on 2010/1/18 0:45 ]

    [ Edited by osco on 2010/1/18 0:46 ] :-D :-D :-D

    [ Edited by osco on 2010/1/18 0:49 ]
    Mac Mini 1.5GHz, 1G, 250G Drive, Apple Cinema Display, MorphOS 3.1 registered, MacOS 10 PowerBook (5,8) 1.67Hz, 2G, 80G Drive,........Waiting
    PowerBook (5,8) 1.67Hz, 2G, 40G MorphOS 3.1 unregisterd
  • »18.01.10 - 04:42
    Profile
  • Yokemate of Keyboards
    Yokemate of Keyboards
    Andreas_Wolf
    Posts: 12163 from 2003/5/22
    From: Germany
    > dvd-engine links seem broken..

    http://www.amiga-news.de/en/news/AN-2010-01-00045-EN.html
  • »18.01.10 - 14:32
    Profile
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    xyphoid
    Posts: 870 from 2008/7/11
    From: Delaware, USA
    thanks!
  • »18.01.10 - 23:38
    Profile
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    xyphoid
    Posts: 870 from 2008/7/11
    From: Delaware, USA
    Can someone contact the author and port DVDAuthorGUI
    He may share the source code. I've been unsuccessful with coding .vob

    [ Edited by xyphoid on 2010/2/1 20:59 ]
  • »01.02.10 - 03:20
    Profile
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    xyphoid
    Posts: 870 from 2008/7/11
    From: Delaware, USA
    :-)

    [ Edited by xyphoid on 2010/2/5 22:50 ]
  • »04.02.10 - 21:44
    Profile
  • Bounty Manager
    insane
    Posts: 66 from 2003/5/20
    Maybe this (new) peace of software can help !?

    http://www.amiga-news.de/de/news/AN-2010-02-00037-DE.html

    But i did'nt tired it by myself...
    Would be nice to hear, if it is usefull or not ;-)
  • »12.02.10 - 17:02
    Profile Visit Website
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    xyphoid
    Posts: 870 from 2008/7/11
    From: Delaware, USA
    Hey, now that looks interesting! I have completed the task successfully, but I guess I could tinker with this program. Possibly some time inbetween Olympic events heh
    thanks

    edit: readme translationInstallation:
    The archive must only be endpackt, and you can Verszeichnis
    Any copy somewhere.
    Furthermore, one must possess to operate as follows: mplayer, mencoder, dvdauthor,
    spumux ffmpeg, (MOS version of FAB), pngnq, mkisofs, mkvmerge.
    Thus one can use BlueHD at all, we must create a directory, where
    at least 18 GB of space is available. This is required because of
    the calculation of the ISO's generated a lot of Temporary data. In this directory
    niss, depending on the name of the DVD re-separated lists of BlueHD
    created.

    Sorry..this kills my test run

    [ Edited by xyphoid on 2010/2/13 0:07 ]
  • »13.02.10 - 03:39
    Profile
  • Paladin of the Pegasos
    Paladin of the Pegasos
    Amigaharry2
    Posts: 1282 from 2010/1/6
    From: EU-Austria (Wien)
    Took me 5 minutes with google.......

    DVDauthor, Spumux: http://aminet.net/gfx/conv/dvdauthor-morphos.lha
    mkisofs: http://aminet.net/dev/gg/mkisofs-2.0bin.lha
    mkvmerge: http://www.christianrosentreter.com/download/ports/mkvtoolnix-0.9.1-morphos.lha
    pngnq: http://aminet.net/package.php?package=gfx/misc/png_neuquant-mos.lha
    mplayer/mencoder/ffmpeg: http://fabportnawak.free.fr/
    Peg2, 3xPowerMac G5, 2xPowerbookG4, 2x MacMiniG4, Efika (again), A3000T and life is never boring.....
  • »13.02.10 - 09:41
    Profile
  • Yokemate of Keyboards
    Yokemate of Keyboards
    Andreas_Wolf
    Posts: 12163 from 2003/5/22
    From: Germany
    > mkisofs: http://aminet.net/dev/gg/mkisofs-2.0bin.lha

    MorphOS native version contained in:
    http://aminet.net/package/disk/cdrom/dvdrtools
  • »13.02.10 - 13:16
    Profile
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    xyphoid
    Posts: 870 from 2008/7/11
    From: Delaware, USA
    I was making reference to the 18gigs, not sure if that's necessary, but i was unable to create a dvd-iso. I got a pop up in german saying something about can't create file check ....
    I saved dvd pref to a file on my seagate usb, and upon dvd author pop-up(after selecting erzeuge dvd-iso) I'm assuming it 's asking where to put temp, so i directed a temp also on external.
    no go.....hopefully someone else got it ...it seems easy enough
  • »15.02.10 - 05:31
    Profile
  • rms
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    rms
    Posts: 602 from 2004/11/27
    @ xyphoid

    I did quite some testing but couldn't get it to work at 1st but finally found out what the problem is. You must enter excately the same file names as how they are written in the gui, eg. I had GMplayer on my system and therefore it didn't work, the gui needs MPlayer! You have to rename it, and all the others is well.

    2nd when saving the bluehd.cfg (when you hit the "Speichern..." button) the file is saved with an error, as it does not create a new line in the cfg for the "DVD-Verzeichnis". So I opend the file in a texteditor and added a new line for it.

    3rd after having hit "Speichern..." the cfg is onl copied to Envarc but not to Env, so either you do a reset or you copy it by hand also to Env.

    I also noticed that if you call the Temp directory BlueHD/ as I did, it want work neither. I include here a config file which works here:

    System:MPlayer/mencoder
    System:MPlayer/MPlayer
    System:MPlayer/ffmpeg/ffmpeg
    System:C/dvdauthor
    System:C/spumux
    System:C/pngnq
    System:C/mkvmerge
    System:C/mkisofs
    P3-MM:DVD-Temp/

    and here is the one created after having hit "Speichern..."

    System:MPlayer/mencoder
    System:MPlayer/MPlayer
    System:MPlayer/ffmpeg/ffmpeg
    System:C/dvdauthor
    System:C/spumux
    System:C/pngnq
    System:C/mkvmerge
    System:C/mkisofsP3-MM:DVD-Temp/

    Hope this helps.
  • »16.02.10 - 05:17
    Profile Visit Website
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    xyphoid
    Posts: 870 from 2008/7/11
    From: Delaware, USA
    all i get is a dir named temDVDname(it adds the word temp and cuts off the p) containing an empty dvd folder and an x. xml file. no conversion takes place.
    all my exe are in c: was the 18gig necessary, or apparently I missed something else

    C:mencoder
    C:MPlayer
    C:ffmpeg
    C:dvdauthor
    C:spumux
    C:pngnq
    C:mkvmerge
    C:mkisofs
    Seagate:Temp/test
    where should the erzeuge DVD-iso (create) default to when pressed

    weird, it seems to be going now. i put a / at end of temp/test

    [ Edited by xyphoid on 2010/2/16 23:28 ]
  • »17.02.10 - 02:20
    Profile
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    xyphoid
    Posts: 870 from 2008/7/11
    From: Delaware, USA
    ok it works for me now and gets it done in about 2hrs. I assume it does blu-ray? hence the name. the other video opts. hd-video-dvd (mkv) and hd-video-dvd (mp4) something to play with which is the reason for 18gig avail.

    Overall pretty neat program to have for us. now you don't have to type in a long syntax to create a dvd. Well done thanks to the author!!! ;-)
  • »17.02.10 - 14:22
    Profile
  • Yokemate of Keyboards
    Yokemate of Keyboards
    amigadave
    Posts: 2795 from 2006/3/21
    From: Northern Calif...
    Do the combination of programs listed in this thread allow us to duplicate our commercial DVD movies for backup purposes to new DVD's, or to copy old commercial (copy protected) VHS movies and write them to new DVD's?

    I have been told that all I need to get rid of copy protection, such as Macro-Vision, is to run the output through a TBC on one of my Amigas or PCs. Has anyone had any experience with this to back up any of their movies?
    MorphOS - The best Next Gen Amiga choice.
  • »18.02.10 - 04:11
    Profile