Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
06-30-2005, 09:25 AM
|
#1
|
Member
Registered: Dec 2004
Distribution: Windows XP Home, Ubuntu Hoary
Posts: 584
Rep:
|
Convert AVI to either DVD, VCD or SVCD format
I have an AVI file on my harddrive that I would like to burn to either a videocd or a dvd.
I currently have dvdauthor, transcode, mjpegtools and numerous other programs like that installed on Ubuntu.
Is there an easy way to do this?
Also, is there a way using transcode or something to compress an avi file?
|
|
|
Click here to see the post LQ members have rated as the most helpful post in this thread.
|
06-30-2005, 03:06 PM
|
#2
|
LQ Guru
Registered: May 2003
Location: INDIA
Distribution: Ubuntu, Solaris,CentOS
Posts: 5,522
Rep:
|
|
|
|
06-30-2005, 07:59 PM
|
#3
|
Member
Registered: Dec 2004
Distribution: Windows XP Home, Ubuntu Hoary
Posts: 584
Original Poster
Rep:
|
Hey. I'm giving tovid a shot right now. I'm just using it to convert the file. I'll most likely still use dvdauthor and k3b to burn the file to DVD, all I needed was something to convert the file to the proper format, and this appeared to have that capability.
Anyways, I'll post back and let you know how it went.
Thx!
|
|
|
06-30-2005, 11:54 PM
|
#4
|
Member
Registered: Dec 2004
Distribution: Windows XP Home, Ubuntu Hoary
Posts: 584
Original Poster
Rep:
|
Video encoding seems to take forever with these scripts, which is odd because if I use transcode and other such tools directly, it goes much faster. Is 2 hours to convert a 700 MB AVI to vcd while running the CPU at 100% normal? What about 4 hours for the same file trying to convert to dvd format? My lower times are normally working with vob files ive ripped from a dvd (legally mind you). Do AVI files normally take this long to work with?
What I'm worried about is that I have been having problems with my CPU running hot lately. It seems to be running better now that I have applied Thermal Paste, but it still worries me leaving my computer running at such a high cpu load for that long of a time.
I have an Athlon XP 2200+. The CPU at one point was almost hitting 60 degrees celcius, so I immediately shut the computer off. After applying the thermal paste, I have been using xsensors to monitor the cpu and motherboard temperatures. When I first turn my computer on, my CPU is around 35 degrees. Now it is at 45 degrees after running for a few days, but not under high loads.
Do you think I have anything to worry about?
|
|
|
07-01-2005, 12:46 AM
|
#5
|
LQ Guru
Registered: May 2003
Location: INDIA
Distribution: Ubuntu, Solaris,CentOS
Posts: 5,522
Rep:
|
Is 2 hours to convert a 700 MB AVI to vcd while running the CPU at 100% normal?
yes they may take this time
the time also matters on what parmaters u want to convert
the bit rate, resolution etc
regards
|
|
|
04-07-2009, 09:36 AM
|
#6
|
LQ Newbie
Registered: Dec 2005
Location: Wessex
Distribution: Mint 16
Posts: 8
Rep:
|
Quote:
Originally Posted by masand
|
Thanks Masand. This works well with Ubuntu 8.04 (gOS Gadgets), but I had to download various other packages as well, through Synaptic, such as ImageMagick, to make it work. The list is at http://tovid.wikia.com/wiki/Tovid_dependencies#Dependency_list. I know this is an old post, but is still relevant, IMO. Greg
|
|
|
04-07-2009, 07:25 PM
|
#7
|
Member
Registered: Sep 2006
Location: USA - NYC
Distribution: Whatever icon you see!
Posts: 642
Rep: 
|
Quote:
Originally Posted by linux-rulz
I have an AVI file on my harddrive that I would like to burn to either a videocd or a dvd.
I currently have dvdauthor, transcode, mjpegtools and numerous other programs like that installed on Ubuntu.
Is there an easy way to do this?
Also, is there a way using transcode or something to compress an avi file?
|
ffmpeg -i input.avi -target ntsc-vcd output.mpg
ffmpeg -i input.avi -target ntsc-svcd output.mpg
ffmpeg -i input.avi -target ntsc-dvd output.mpg
Note: Replace ntsc with pal where appropriate.
Try using ffmpeg. Ffmpeg will use preset values for video encoding based on keywords from the command line.
From above, the first will create a ntsc vcd compatible file, the second, a ntsc svcd file and lastly, a ntsc dvd compatible file.
For this example lets make a dvd compatible file and disc.
ffmpeg -i input.avi -target ntsc-dvd output.mpg
Next, we do dvd authoring, we use a directory called tempdir for this example.
dvdauthor -o tempdir -t output.mpg
Next, type
dvdauthor -o tempdir -T
Next, open k3b and choose "New Video DVD project" from the further actions button.
On the left panel, double click on VIDEO_TS
On the top window, change to the directory where you did the dvd authoring and open the VIDEO_TS folder. Select all files and drag to the bottom window.
Next, click on burn.
That's it.
These steps will create a dvd that will play automatically when played on a dvd player.
If you wish to create a dvd with menus and such, just do the ffmpeg part and use a program called dvdstyler. Once you added the menus, titles, images etc, dvdstyler will use a xml file to create an iso image. To burn the iso image go to Tools -> Burn DVD iso image
Hope this helps
Last edited by dv502; 04-07-2009 at 07:48 PM.
|
|
4 members found this post helpful.
|
10-15-2010, 10:54 AM
|
#8
|
LQ Newbie
Registered: Jul 2009
Location: Marietta, GA
Posts: 5
Rep:
|
Thanks, this works like a charm. A script file would really be nice to automate the steps.
|
|
|
07-27-2011, 05:20 AM
|
#9
|
LQ Newbie
Registered: Jul 2011
Posts: 1
Rep: 
|
I ever used this DVD Creator to burn an AVI movie to a blank DVD Disc, the conversion speed is very fast, and most importance is it is totally free for 30 days.
|
|
|
11-11-2011, 01:58 PM
|
#10
|
Member
Registered: Sep 2005
Location: macon, ga
Distribution: downgraded from rh9 to fc8
Posts: 57
Rep:
|
thanks for this post. the instructions are still valid at this writing. and my hp 64bit thanks you. didn't time the conversion of the 700mb avi file, but i was able to do other things while it cooked. cd burn was just shy of 8 min. and k3b spit out the dvd when it was done. that was amazing, considering the reluctance of other s/w.
|
|
|
11-12-2011, 08:05 PM
|
#11
|
LQ Newbie
Registered: Jul 2009
Location: Marietta, GA
Posts: 5
Rep:
|
Quote:
Originally Posted by andyliu
I ever used this DVD Creator to burn an AVI movie to a blank DVD Disc, the conversion speed is very fast, and most importance is it is totally free for 30 days.
|
Are you kidding? This is a windoze program. Why would you post this on a Linux forum?
|
|
1 members found this post helpful.
|
11-12-2011, 08:19 PM
|
#12
|
Member
Registered: Sep 2005
Location: macon, ga
Distribution: downgraded from rh9 to fc8
Posts: 57
Rep:
|
i was referring to the script from dy502. the "totally free for 30 days" told me that spam was not of our world.
|
|
|
12-27-2011, 09:22 AM
|
#13
|
Member
Registered: Sep 2005
Location: macon, ga
Distribution: downgraded from rh9 to fc8
Posts: 57
Rep:
|
after two painful experiences (to accommodate my lovely spouse), i can assure you that adding codecs is easier than putting your processor(s) into an anaerobic state for an inordinate amount of time to simply produce vob files. i'm willing to try a specific file with my player(s) if you can cite an example.
|
|
|
12-27-2011, 01:29 PM
|
#14
|
Member
Registered: Dec 2011
Location: USA
Distribution: Crux 2.7.1
Posts: 41
Rep:
|
The script that dv502 is good, but there is no ability to select a movie if there is more than one, it needs to have some kind of menu selection.
I use tovid to make dvds from video files
http://tovid.wikia.com/wiki/Tovid_Wiki
You can make text menus as well as thumbnails like you see with commercial dvds. It can also add visual effects to the menus as well.
Last edited by Sed_Awk; 12-27-2011 at 01:32 PM.
|
|
|
All times are GMT -5. The time now is 10:30 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|