Results 1 to 6 of 6

Thread: Convert video using VLC Media Player

  1. #1
    Join Date
    Oct 2008
    Location
    on the web
    Posts
    2,790
    Thanks
    842
    Thanked 1,482 Times in 963 Posts

    Default Convert video using VLC Media Player

    First I would like to say sorry if there is a thread on here for this already.

    Does anyone please know how to convert videos using VLC Media Player? I think I have got version 1.1.11 but not too sure sorry.

    Thanks any help would be great.

  2. #2
    Join Date
    Apr 2007
    Location
    MACKEMLAND
    Posts
    13,084
    Thanks
    10,426
    Thanked 13,211 Times in 5,064 Posts

    Default

    From what to what....?

    Very old example here.
    Say NO to Ads on streams & Stop the Virus/Malware Alerts.

    If ever a password is needed in any of my or other users uploads try myp2p, Myp2p or wiziwig.

  3. #3
    Join Date
    Nov 2008
    Location
    austria
    Posts
    1,897
    Thanks
    40
    Thanked 2,151 Times in 984 Posts

    Default

    all videos vlc can play, also can convert ...

  4. #4
    Join Date
    Apr 2007
    Location
    MACKEMLAND
    Posts
    13,084
    Thanks
    10,426
    Thanked 13,211 Times in 5,064 Posts

    Default

    Personally i use FFmpeg that also comes with FFplay...

    I use it in my own AutoIt script to covert music videos to mp3 with the help of the Lame encoder.

    The AutoIt Script...
    Code:
    $ffmpeg = @TempDir & "\ffmpeg.exe"
    $lame = @TempDir & "\lame.exe"
    
    
    FileInstall(".\ffmpeg.exe", $ffmpeg)
    FileInstall(".\lame.exe", $lame)
    
    
    $input = FileOpenDialog("Open video file", @WorkingDir, "Video files (*.avi;*.mp4;*.flv)", 3)
    $wavname = @TempDir & "\vidtomp3wav.wav"
    $output = StringTrimRight($input, 3) & "mp3"
    
    
    FileDelete($wavname)
    
    
    ;... Convert to WAV
    $cmd = $ffmpeg & " -i """ & $input & """ -vn -f wav """ & $wavname & """"
    $process = Run($cmd)
    ProcessWaitClose($process)
    
    
    ;... Convert to MP3
    $cmd = $lame & " """ & $wavname & """ """ & $output & """"
    $process = Run($cmd)
    ProcessWaitClose($process)
    
    
    FileDelete($wavname)
    FileDelete($ffmpeg)
    FileDelete($lame)
    Say NO to Ads on streams & Stop the Virus/Malware Alerts.

    If ever a password is needed in any of my or other users uploads try myp2p, Myp2p or wiziwig.

  5. #5
    Join Date
    Nov 2012
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    i am using mac osx 10.5.8, VLC can do this job?

  6. #6
    Join Date
    Oct 2008
    Location
    on the web
    Posts
    2,790
    Thanks
    842
    Thanked 1,482 Times in 963 Posts

    Default

    VLC will run on MAC.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •