I've formatted WMV to others plenty before. I usually use FormatFactory or something online like Zamzar.
However, I've recently been trying to convert a Webex recording (that's already converted from its proprietary format into WMV) into an AVI or MPG.
I've been successful with one program but it's only converting audio.
Would this be a missing codec issue?
I can play the WMV just fine and see video and audio, but once I convert the WMV to an AVI or MPG and play it, I only hear audio.
Same playback issue in Media Player (latest), VLC player, and Media Player Classic.
I searched forum here for webex but couldn't gather anything to solve.
+ Reply to Thread
Results 1 to 4 of 4
-
Last edited by jgq85; 16th Dec 2011 at 15:28.
-
I can try.
Do you mean like a sample WebEx file? Or the .WMV that WebEx player can convert to?
If a raw file, maybe one of these will work (searching the file types on Google):
Google "recording filetype:WRF", or "recording filetype:ARF".
Theoretically you could try converting one from there with WebEx player to WMV and see what I mean when you try to convert the WMV to anything else.
I can play the original just fine in "Media Player Classic - Home Cinema" and it shows the information of the .wmv to be:
Audio: Windows Media Audio 44100Hz mono 48kbps [Raw Audio 0]
Unknown [Raw Stream 1]
Video: G2M4 1366x768 29.97fps 83kbps [Raw Video 2]
I tried using Citrix's GoToMeeting g2mtranscoder.exe but says it ran but after a couple mins it took to complete, I see no change in the file properties or codec properties.
Playing original wmv in VLC says:
"No suitable decoder module:
"VLC does not support the audio or video format "G2M4". Unfortunately there is no way for you to fix this."" -
Oh here's the answer:
1st re-encode:
g2mtranscoder.exe source=filename.wmv
for more info on g2mtranscoder, http://www.any-video-converter.com/convert-g2m3-g2m4-codec-video-to-wmv-avi-mp4-flv.php
2nd convert to avi:
ffmpeg -i "filename.wmv" -vcodec libx264 -crf !Input2! -acodec libmp3lame -ab 128k -ar 44100 -ac 2 -coder 1 -trellis 1 -flags +loop -cmp +chroma -partitions +parti4x4+parti8x8+partp8x8+partb8x8 -me_method hex -subq 6 -me_range 16 -g 250 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -b_strategy 2 -threads 0 Final.avi
for more info on ffmpeg tool, http://ffmpeg.org/
batch file for process:
@echo off
TITLE WMV-G2M4 to WMV9 Converter
color 9F
MODE CON: COLS=77 LINES=25
cls
echo.
echo.
echo.
echo.
echo. Enter a name of your WMV G2M4 file.
echo.
set /p Input1= File name :
echo.
echo.
echo.
echo. Enter a quality factor for AVI ( 1 - 51 ). Ussually this value is 30.
echo.
echo. The minimal value is 23 if the input file has a low quality
echo.
echo. and for high quality input files it can be from 27 - 51.
echo.
set /p Input2= Quality factor :
echo.
echo.
setlocal enabledelayedexpansion
echo.
echo.
echo. The file is converting ^^! Please be a patient ...
echo.
echo.
g2mtranscoder.exe source=!Input1!
echo.
cls
echo.
echo.
echo.
echo.
echo.
echo.
ffmpeg -i "!Input1!" -vcodec libx264 -crf !Input2! -acodec libmp3lame -ab 128k -ar 44100 -ac 2 -coder 1 -trellis 1 -flags +loop -cmp +chroma -partitions +parti4x4+parti8x8+partp8x8+partb8x8 -me_method hex -subq 6 -me_range 16 -g 250 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -b_strategy 2 -threads 0 Final.avi
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo. Your conversion is finished ^^!!!
echo.
echo.
set /p Press any key to quit this program !
Last edited by jgq85; 19th Dec 2011 at 09:58. Reason: batch file
Similar Threads
-
WebEx WMV file, can't open in VirtualDub, says "missing codec"
By violetta in forum Newbie / General discussionsReplies: 13Last Post: 22nd Jul 2016, 21:39 -
Editing MPG versus AVI/WMV
By dt126 in forum EditingReplies: 3Last Post: 29th May 2010, 16:57 -
Cheap device that will play AVI, WMV, MPG?
By videohalp in forum Media Center PC / MediaCentersReplies: 2Last Post: 18th May 2009, 21:32 -
AVI,VOB,MPG > WMV * New App
By VirtualDoobMon in forum Video ConversionReplies: 2Last Post: 14th Oct 2008, 19:42 -
HD-DVD - MPG/AVI/WMV data disc support?
By Tiernan in forum DVD & Blu-ray PlayersReplies: 2Last Post: 27th Dec 2007, 11:58