Contents
- Edit DVDs with Avidemux
- Burn Video DVDs with K3b
- Easily Create DVDs with Menus
- Make Cinelerra look much nicer!
- Get DVDShrink working under Wine
- Video Editing Bookmarks
Linux Video Editing Tips
Edit DVDs with Avidemux
Using Avidemux you can edit the vob files off a DVD (vob files are just mpegs I think).
Burn Video DVDs with K3b
Say you have your "AUDIO_TS" and "VIDEO_TS" folders ready and you want to use them to burn a DVD video, here's how to do that:
Run this command replacing "mydvd" with the name of the folder containing the "AUDIO_TS" and "VIDEO_TS" folders:
mkisofs -dvd-video -o mydvd.iso mydvd/
- Open K3b and go to "Settings -> Configure K3b"
- Click on "Programs"
- Click on the "User Parameters" tab.
- Double-click under "Parameters" next to "growisofs"
- Paste: "-dvd-compat" in the blank. (The "-dvd-compat" option enables maximum media compatibility with DVD-ROM/-Video.)
- Click on the "Programs" tab.
- Click the "OK" button.
- Click the "Burn DVD ISO Image..." button.
- Click on the blue "folder" icon.
- Find and select "mydvd.iso" and click the "OK" button.
- Click the "Start" button.
Easily Create DVDs with Menus
Use KMediafactory which uses templates to allow you to quickly and easily create DVDs with great-looking menus.
Make Cinelerra look much nicer!
I just saw this screenshot of Cinelerra using the Blue Dot theme and I was like "WOW! It looks like a KDE app!".
Here's how to switch to using the Bluedot theme in Cinelerra:
- Go to Settings -> Preferences...
- From the drop-down list choose "Interface".
- Under the "Editing" next to "Theme:" select "Blue Dot" instead of "Blond" from the drop-down list..
- Click "OK".
- Close and reopen Cinelerra.
Now Cinelerra should look much nicer.
Get DVDShrink working under Wine
See the following pages:
Scale down an MPEG
Modified: 2006-08-22 21:13:17
To resize an MPEG video file install mencoder and run a command like this:
mencoder input.mpeg -ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell -oac copy -vf scale=360:240 -o output.avi
Change 360:240 to the size that you want.
The Steps I used to create a DVD from DV video
Modified: 2007-05-21 14:35:03
Note: I started with Windows programs.
- Caputured with WinDV
- Edited with Windows Movie Maker
- Converted from AVI to MPG with mencoder
- Used Avidemux to see the exact time that I wanted to start each chapter and used those times to write to a text file that I imported into KMediaFactory.
- Created DVD Menu with KMediaFactory and created a DVDAuthor project. I created a custom KMediaFactory template in order to display the chapter images that I wanted.
- Created a DVD directory with DVDAuthor:
mkdir mydvd dvdauthor -o mydvd -x mydvd-dvdauthor.xml
Previewed the DVD with XINE:
xine dvd:/usr/tmp/mydvd/VIDEO_TS/
Convert AVI or ASF to MPEG
Modified: 2007-06-04 12:48:38
From Convert any video file to DVD with open source tools
Run this command to convert an ASF file to MPEG:
mencoder -oac lavc -ovc lavc -of mpeg -mpegopts format=dvd -vf scale=720:480,harddup \ -srate 48000 -af lavcresample=48000 \ -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:keyint=18:aspect=4/3:\ acodec=ac3:abitrate=192 -ofps 30000/1001 -o your_video.mpg your_wmv_file.asf
See HOWTO mencoder divx to dvd: Using MEncoder for an explanation of what all those parameters mean.
Now you can use something like KMediafactory to create a DVD out of it. :)
Video Editing Bookmarks
- HOWTO Convert video files - Added: 2007-06-04 13:41:54
http://en.linuxreviews.org/HOWTO_Convert_video_files
- Converting avi's to DVD HOWTO - Added: 2007-06-04 13:42:53
http://murphys-law.us/howto/DVD_HOWTO.pdf
- Creating Video DVD Video - PCLinuxOS Documentation Wiki - Added: 2007-06-04 13:44:01
http://docs.mypclinuxos.com/CreatingVideoDVDVideo
- Using MEncoder to create VCD/SVCD/DVD-compliant files - Added: 2007-06-04 13:44:31
http://www.mplayerhq.hu/DOCS/HTML/en/menc-feat-vcd-dvd.html
- Convert any video file to DVD with open source tools - Added: 2007-06-04 13:44:52
http://www.linux.com/article.pl?sid=06/04/17/2058219
Convert AVI to FLV in Linux
Modified: 2008-04-01 15:52:38
I am using what is posted here: :
#!/bin/sh mencoder -forceidx \ -lavfopts i_certify_that_my_video_stream_does_not_use_b_frames \ -of lavf -ffourcc FLV1 \ -oac mp3lame -lameopts abr:br=56 -srate 22050 \ -ovc lavc \ -lavcopts vcodec=flv:vbitrate=250:mbd=2:mv0:trell:v4mv:cbp:last_pred=3 \ -vf scale=360:240 \ -o $1.flv $1
Just save that in a script, make it executable, then call it with the name of the AVI file you want to convert as the only argument. :)
Then you can easily use JW FLV MEDIA PLAYER to embed it on your website! :)