web-dev-qa-db-ja.com

コマンドラインを介してVLCでMMSストリームを再生する方法は?

私は朝、VLCとCron(Mac OS X)で目を覚ますようにしています。

cronが実行する必要があるコマンドは次のとおりです。

/Applications/VLC.app/Contents/MacOS/VLC mms://213.8.138.13/glz-stream

しかし、VLCは私に次の出力を与えます:

[0x100202b88] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
[0x114740818] access_mms access error: error while asking for file -1
[0x114740818] access_mms access error: error while asking for file -1
[0x114740818] access_mms access error: cannot connect to server
[0x114740818] access_mms access error: error: HTTP/1.0 503 Service Unavailable
[0x101e681a8] main input error: open of `mms://213.8.138.13/glz-stream' failed: (null)`

ストリームをプレイリストに追加するだけです–すぐに再生したいです(起きたいので...)

GUIを介してmms://213.8.138.13/glz-streamを再生しようとすると、問題なく再生されます。

次のコマンドも試しました。

open -a "VLC" mms://213.8.138.13/glz-stream<br>
Applications/VLC.app/Contents/MacOS/VLC --open  mms://213.8.138.13/glz-stream<br>
Applications/VLC.app/Contents/MacOS/VLC --play-and-stop  mms://213.8.138.13/glz-stream

それらはどれも機能せず、プレイリストにストリームを追加するだけです。

では、VLCのMac OSターミナルを介してMMSストリームを再生するにはどうすればよいですか?

4
Arnon

次のことを試してください、-I rcは、GUIなしで実行するように指示するものです。

/Applications/VLC.app/Contents/MacOS/VLC -I rc mms://wm-live.world.mii-streaming.net/live/klove/high_01
2
PTejada