The filename in the generated stream output string is correct with certainty.Media > Stream... > ... > ... :sout-keep
in Generated stream otput string.
Code: Select all
:sout=#transcode{vcodec=none,acodec=mpga,ab=192,channels=2,samplerate=48000}:file{dst=D:\\VLC\\Music\\Test.raw} :sout-keep
When I start with:Then check playlist to see all audio tracks there.
Code: Select all
:sout=#transcode{vcodec=none,acodec=mpga,ab=192,channels=2,samplerate=48000}:file{dst=D:\\VLC\\Music\\Test.mp3} :sout-keep
Code: Select all
:sout=#transcode{vcodec=none,acodec=mpga,ab=192,channels=2,samplerate=48000}:file{mux=raw,dst=D:\\VLC\\Music\\Test.mp3} :sout-keep
Code: Select all
@ECHO OFF
SETLOCAL ENABLEDELAYEDEXPANSION
SET /a n=0
SET f=""
SET p=D:\\VLC\\Music\\
FOR /R G:\ %%L IN (*.cda) DO (CALL :sub_transcode "%%L")
GOTO :eof
:sub_transcode
Call SET /a n=n+1
ECHO Transcoding %1
IF !n! LEQ 9 (GOTO :with_zero) ELSE (GOTO :without_zero)
:with_zero
CALL SET f=%p%Track_0!n!.mp3
GOTO :transcode
:without_zero
CALL SET f=%p%Track_!n!.mp3
:transcode
CALL "C:\Program Files\VideoLAN\VLC\vlc.exe" -I http cdda:///G:/ --cdda-track=!n! :sout=#transcode{vcodec=none,acodec=mp3,ab=128,channels=2,samplerate=44100}:std{access="file",mux=raw,dst=!f!} vlc://quit
:eof
Return to “VLC media player for Windows Troubleshooting”
Users browsing this forum: No registered users and 83 guests