Search found 5 matches

Go to advanced search

by Blutarsky
18 Sep 2013 11:44
Forum: VLC media player for Windows Troubleshooting
Topic: VLC command line: how to generate dynamic filenames
Replies: 12
Views: 7770

Re: VLC command line: how to generate dynamic filenames

Now it works!!!! Yes!!!! Correct syntax is:

Code: Select all

"C:\Program Files\VideoLAN\VLC\vlc.exe" http://62.196.56.141:8080 --sout=#std{access=file,mux=raw,dst="C:\temp\streaming\%Y-%m-%d-RSMorning.mp3"}
[/size]

Hooray!! Thanks! :D
by Blutarsky
18 Sep 2013 11:27
Forum: VLC media player for Windows Troubleshooting
Topic: VLC command line: how to generate dynamic filenames
Replies: 12
Views: 7770

Re: VLC command line: how to generate dynamic filenames

You need to use "%%" within batch file: vlc http://62.196.56.141:8080 --sout=#std{access=file,mux=raw,dst="C:\temp\streaming\%%Y-%%m-%%d %%Hh%%Mm%%Ss RSMorn.mp3"} It is not a batch file, the command is being run from Windows Task Scheduler... However your suggested syntax won't ...
by Blutarsky
17 Sep 2013 15:42
Forum: VLC media player for Windows Troubleshooting
Topic: VLC command line: how to generate dynamic filenames
Replies: 12
Views: 7770

Re: VLC command line: how to generate dynamic filenames

Yes I need recording options.... I need to record an audio stream. Am I using the wrong syntax?
by Blutarsky
17 Sep 2013 14:37
Forum: VLC media player for Windows Troubleshooting
Topic: VLC command line: how to generate dynamic filenames
Replies: 12
Views: 7770

Re: VLC command line: how to generate dynamic filenames

no. I was asking because of this article, however I couldn't sort it out to make it work... The record parameters above assume the stream is in the most universal MP3 format. Where a source has multiple stream formats available, choose MP3 to avoid problems; to try recording some other format, use ...
by Blutarsky
17 Sep 2013 12:36
Forum: VLC media player for Windows Troubleshooting
Topic: VLC command line: how to generate dynamic filenames
Replies: 12
Views: 7770

VLC command line: how to generate dynamic filenames

While I could accomplish generating dynamic filenames for a command line script, using date: set day=%Date:~0,2% set month=%Date:~3,2% set year=%Date:~6,4% set D=%year%-%month%-%day% vlc http://62.196.56.141:8080 --sout=#std{access=file,mux=raw,dst="C:\temp\streaming\%D%-RSMorn.mp3"} I was...

Go to advanced search