LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Mandriva
User Name
Password
Mandriva This Forum is for the discussion of Mandriva (Mandrake) Linux.

Notices


Reply
  Search this Thread
Old 11-15-2005, 12:57 PM   #1
Rick069
Member
 
Registered: Feb 2005
Distribution: Arch Linux
Posts: 204

Rep: Reputation: 30
A question about burning video files to dvd.


Is it my computer or does it take like almost a half day to prep/convert/burn a video file to a dvd? I know it depends on the size, but jeez. I can go to work and come back and the process would probably just finish. Anyway, I was given the following directions to prep/convert and burn video files to a dvd.

1. You have to prepare the mpeg
1.1. demux the file (split pictures and sound)
-> I prefer "avidemux" but you can also use "transcode" as a very powerful commandline-tool
2. you have to mplex sound and pictures with a utility
-> I use "kavi2svcd" with the mjpegutilities choosing DVD-format
3. You have to master the DVD for Chapters, Menus etc
-> I use "dvdwizard"
3. Burn the files to the DVD in the proper format
-> I use "k3b" (Projecttype DVD-Video)


Is there an easier way if I don't even want to customize a menu or whatever. I have a bunch of .avi,.mpg hollywood movies I want to convert/copy/burn and give to my dad. I found a linux program called Videotrans that's a commandline/script sort of thing and its ok, but I thought there might be graphical interface that I could better deal with. There is one called tovid, but I got so many dependency issues trying to install that program that I just said, f**k it.
 
Old 11-15-2005, 05:46 PM   #2
tkedwards
Senior Member
 
Registered: Aug 2004
Location: Munich, Germany
Distribution: Opensuse 11.2
Posts: 1,549

Rep: Reputation: 52
I've had a lot of luck with Tovid - its very easy to use although of course its not overly fast. To install it on Mandriva you first need to goto http://easyurpmi.zarb.org and setup all the software sources. Then install mencoder (the tovid package is broken in that it doesn't correctly pull in this dependency) and then install tovid with urpmi (or just double-click it on your desktop). With the sources from easyurpmi it should be able to pull in all the dependencies.

Here's a little howto I wrote for myself:
Quote:
***********Re-Encoding************
Re-encoding using tovid:
nice -n 19 tovid -normalize -dvd -pal -full -in "/mnt/share2/multimedia/videos/FamilyGuy/Family Guy - 301 - The Thin White Line.avi" -out "FG301-TheThinWhiteLine"

************Mastering & Burning************

Now, we have to master the DVD image. You’ll need a copy of dvdauthor for this.

Create a basic DVD structure:
--------------------------------------

Either make a .xml file with something like this:
<dvdauthor>
<vmgm />
<titleset>
<titles>
<pgc>
<vob file="file1.mpg" />
<vob file="file2mpg" />
<vob file="file3.mpg" />
<vob file="file4.mpg" />
<vob file="file5.mpg" />
<vob file="file6.mpg" />
</pgc>
</titles>
</titleset>
</dvdauthor>

then do:
$ mkdir DVD
$ dvdauthor -o DVD -x xmlfile.xml
$ dvdauthor -o DVD -T
After going through this you will have a proper DVD structure in the directory called DVD. You can then use k3b to burn it by selecting 'Video DVD' and dragging and dropping the files from your DVD directory into the project. This makes a simple DVD where each file is a chapter and there is no menu or anything like that.

Quote:
Is it my computer or does it take like almost a half day to prep/convert/burn a video file to a dvd?
Depends what hardware you have but I'd say that's pretty normal.

Last edited by tkedwards; 11-15-2005 at 05:50 PM.
 
Old 11-16-2005, 12:19 AM   #3
usaf_sp
Member
 
Registered: Jul 2005
Location: Tennessee
Distribution: openSUSE
Posts: 419

Rep: Reputation: 30
Although not native to linux, DVDShrink and DVDDecrypter are the best software tools to decode and shrink a dvd to burn onto a disc. Both work well under wine 0.9. That is if you can find them for download anymore.

If you do find and download DVDDecryptor, do not allow it to autocheck for update. The site was turned over to MacroMedia due to court order. It is rumored that they are compiling IPs requesting update.

Last edited by usaf_sp; 11-16-2005 at 12:20 AM.
 
Old 11-16-2005, 03:04 AM   #4
Lakota
Member
 
Registered: Oct 2003
Location: London, ON, Canada
Distribution: Mandriva 2007 Free
Posts: 507

Rep: Reputation: 30
FYI dvdshrink now on plf for 2006 rather than using wine
 
Old 11-16-2005, 04:16 PM   #5
tkedwards
Senior Member
 
Registered: Aug 2004
Location: Munich, Germany
Distribution: Opensuse 11.2
Posts: 1,549

Rep: Reputation: 52
Yeah this is XDvdshrink (http://dvdshrink.sourceforge.net/) and its a native Linux application that's completely seperate to the Windows DVDshrink or anything to do w/ WINE. I've had some luck w/ it but there are some disks that it balks on whereas the Windows dvdshrink (run in Windows on the same machine) works fine, YMMV.

The OP was asking about programs to convert individual video files (ie. .avi, .mpg etc.) that are not in mpeg2 format for DVD into DVD movies. This is different to what *dvdshrink does - a pretty much straight copy of a DVD.

Last edited by tkedwards; 11-16-2005 at 04:19 PM.
 
Old 11-16-2005, 06:30 PM   #6
usaf_sp
Member
 
Registered: Jul 2005
Location: Tennessee
Distribution: openSUSE
Posts: 419

Rep: Reputation: 30
Quote:
The OP was asking about programs to convert individual video files (ie. .avi, .mpg etc.) that are not in mpeg2 format for DVD into DVD movies. This is different to what *dvdshrink does - a pretty much straight copy of a DVD.
Thank you moderator tkedwards for that reminder. I did not see you answer the poor OPs question either. Try to be less snide next time.

I will correct my previous post to:

In the future when you choose to rip a dvd and burn it consider using DVDShrink and DVDDecryptor. They are much better than anything linux has to offer and they run very well under wine. They are superior as they can defeat Arccos protection. I will leave it at that as the other methods of obtaining movie files might lead to the RIAA and MPAA knocking on your door.

You can use mencoder and k3b to prepare, prep and burn refer to their individual documentation for instructions.

Last edited by usaf_sp; 11-16-2005 at 06:33 PM.
 
Old 11-16-2005, 08:37 PM   #7
tkedwards
Senior Member
 
Registered: Aug 2004
Location: Munich, Germany
Distribution: Opensuse 11.2
Posts: 1,549

Rep: Reputation: 52
Quote:
Thank you moderator tkedwards for that reminder. I did not see you answer the poor OPs question either. Try to be less snide next time.
Obviously you didn't read the thread then - I was the first to answer the OP's question about converting avi's, mpg's etc. to a format that can be put on DVD. I wasn't trying to be snide or moderate but just pointing out that they are different things. If you chose to take offence to it then that's your problem, not mine, but in future try actually reading the whole thread before you respond, wether its to offer help or attack someone else.
 
Old 11-16-2005, 11:01 PM   #8
usaf_sp
Member
 
Registered: Jul 2005
Location: Tennessee
Distribution: openSUSE
Posts: 419

Rep: Reputation: 30
 
Old 11-16-2005, 11:59 PM   #9
tkedwards
Senior Member
 
Registered: Aug 2004
Location: Munich, Germany
Distribution: Opensuse 11.2
Posts: 1,549

Rep: Reputation: 52
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
A question about burning a dvd video idisc in K3b Rick069 Linux - Software 1 11-23-2005 04:08 AM
Burning DVD-video, only 35 minutes is ok pingu Linux - Software 5 06-06-2005 03:26 AM
Burning video dvd - vob files? ksgill Linux - Newbie 3 03-23-2005 03:07 PM
Problems burning video dvd Inexactitude Linux - General 2 03-01-2004 11:18 AM
DVD video burning Inexactitude Linux - Software 4 02-23-2004 07:00 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Mandriva

All times are GMT -5. The time now is 02:05 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration