[solved] ps -> 3gp and start-time: audio is moved

About encoding, codec settings, muxers and filter usage
Peter S
Blank Cone
Blank Cone
Posts: 38
Joined: 21 Jun 2007 11:24

[solved] ps -> 3gp and start-time: audio is moved

Postby Peter S » 19 Apr 2013 13:06

I have reported that the following codes on command line produces a bug: the audio content ist moved to end of the video which is so long as the original:

Code: Select all

for %%a in (00000.ts) do cmd /c "C:\program files (x86)\VideoLan\VLC\vlc.exe" ^ -I dummy -vvv %%a ^ --start-time 897 ^ --sout-transcode-audio-sync ^ --sout=#transcode{vcodec=mp4v,acodec=mp4a}:standard{access=file,mux=mp4,dst=plusminus.3gp} ^ vlc://quit
This problem can be solved with a two step procedure:

Code: Select all

for %%a in (00000.ts) do cmd /c "C:\program files (x86)\VideoLan\VLC\vlc.exe" ^ -I dummy -vvv %%a ^ --sout-transcode-audio-sync ^ --sout=#transcode{vcodec=mp4v,acodec=mp4a}:standard{access=file,mux=mp4,dst=nottheend.3gp} ^ vlc://quit for %%a in (nottheend.3gp) do cmd /c "C:\program files (x86)\VideoLan\VLC\vlc.exe" ^ -I dummy -vvv %%a ^ --start-time=897 ^ --sout=#standard{access=file,mux=mp4,dst=plusminus.3gp} ^ vlc://quit

Return to “VLC stream-output (sout)”

Who is online

Users browsing this forum: No registered users and 20 guests