Support and General Use > Plugins/Viewers
why no audio?
gnu:
I mean when I don't use the batch file, but set all the streaming options myself!
gnu:
OK I fixed it, you need this in your batch file:
"c:\programs\vlc.exe" %1 --sout=#transcode{vcodec=mp2v,vb=600,width=176,height=128,acodec=mp3,ab=128,samplerate=44100}:std{access-video=file,mux=ps,url=%1.mpg}
You'll need to adjust the path to your VLC, the height and the width!
fishlover900:
what options do you use, is there any chance of a step by step guide as when ive tried to do it manually the video comes out all jerky
AndrewTheArt:
OK, as I understand it... The m2v format will NOT accept audio, therefore making the batch script on the mpgplayer useless for converting to a video+audio file. Therefore, a different container is necessary to house the audio+ vudeo
My NOT WORKING modded script contains...
--- Code: ---@echo off
set WIDTH=320
set HEIGHT=240
"C:\Program Files\VideoLAN\VLC\vlc.exe" %1 --sout=#transcode{vcodec=mp2v,vb=600,width=%WIDTH%,height=%HEIGHT%,acodec=mp3,ab=128,samplerate=44100}:std{access-video=file,mux=ps,url=%1.mpg}
--- End code ---
... as suggested by user "gnu" above.
However, this simply outputs an audio file, no video. :(
AndrewTheArt:
SUCCESS!!!! Using gnu's awesome program (http://forums.rockbox.org/index.php?topic=8150), I was able to find the correct settings to go from mp4 to vid+audio mpg.
--- Code: ---@echo off
"C:\Progra~1\VideoLAN\VLC\vlc.exe" %1 --sout=#transcode{vcodec=mp2v,vb=320,height=240,fps=25,acodec=mp3,ab=180,samplerate=44100}:std{access-video=file,mux=ps,url=%1.mpg}
--- End code ---
Simply type that in a batch file to go from .mp4 to .mpg. This particular code is optimized for an iPod video.
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version