Announcement

Collapse
No announcement yet.

convert video

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    convert video

    my camera takes video and the file is .mov
    what i want to do is to convert them so they can be played on any dvd player.
    can anyone help please. im trying to make a wedding present for my brother in law

    #2
    Re: convert video

    Making video dvd:

    dvdauthor
    create DVD-Video file system
    dvdauthor is a program that will generate a DVD movie from a valid
    mpeg2 stream that should play when you put it in a DVD player.
    qdvdauthor
    GUI frontend for dvdauthor and other related tools
    The goal is to provide an easy-to-use, yet powerful and complete interface
    to generate DVD menus, slideshows, and videos to burn on a DVD.
    KDE DVDAuthor Wizard
    http://www.kde-apps.org/content/show...?content=27528
    Description:
    This wizard will allow you to create a DVD from one or more DVD compatible MPEG-2 files. It is designed to be very easy to use. All you need to do is add one or multiple files to the playlist and answer the questions that follow.

    You can add a menu that will contain animated thumbnails of the files in the playlist. Creating a menu is optional.

    Requirements:

    * Kommander >= 1.0 (part of kdewebdev >= 3.3.0)
    * ImageMagick 6.2 or 6.3
    * MJPEGTools
    * Sox
    * DVDAuthor >= 0.6.11
    * Transcode

    Conversion:

    Topic: batch convert wmv
    http://kubuntuforums.net/forums/inde...opic=3085911.0

    Topic: Converting OMG to AVI
    http://kubuntuforums.net/forums/inde...opic=3086561.0

    Tried this script:
    Code:
    #!/bin/sh
    
    FLIST=`ls -1 $1 | grep mov`
    for F in $FLIST
    do
      mencoder $F -of mpeg -ovc lavc -lavcopts vcodec=mpeg2video -oac mp3lame -o $F.mpg
    done
    to returnoftheking_nl480_dl.mov
    Track info (from kaffeine)

    Mime: video/quicktime
    Audio: QDesign (ffmpeg) 118kb/s
    Video: Sorenson Video 3 (ffmpeg) 491x208 (480x208)
    Result: returnoftheking_nl480_dl.mov.mpg
    Track info

    Mime: video/mpeg
    Audio: MPEG audio layer 3 (lib:MAD) 128kb/s
    Video MPEG (libmpeg2) 491x280 (480x208)
    Or try avidemux
    a small editing software for avi (especially DivX)
    With avidemux you can open divx, process the audio track with the included
    filters and save a part of the avi (i.e. split).
    Avidemux wiki tells:
    http://en.wikipedia.org/wiki/Avidemux
    Supported input formats
    ...
    QuickTime, MP4, 3GPP
    ...


    Supported output formats
    ...
    MPEG-1, MPEG-2
    ...

    Links:
    dvdauthor
    http://dvdauthor.sourceforge.net/

    DVDAuthor
    http://dvdauthor.sourceforge.net/doc/index.html

    KDE DVD Authoring Wizard
    http://dvdauthorwizard.sourceforge.n...age/Voorpagina

    convert avi to mpeg 2
    http://www.linuxforums.org/forum/red...-mpeg-2-a.html

    MEncoder MPEG-2 framecopy
    http://lists.mplayerhq.hu/pipermail/...ry/000408.html
    Before you edit, BACKUP !

    Why there are dead links ?
    1. Thread: Please explain how to access old kubuntu forum posts
    2. Thread: Lost Information

    Comment

    Working...
    X