Streaming mpeg audio from sat receiver doesn't work

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • boomlumpi
    Junior Member
    • Jan 2009
    • 4

    #16
    Further VLC question

    Thanks for your hint for my command line search.
    I only want to stream the audio to my device.
    So I used:

    vlc movie.mp4 --sout '#transcode{acodec=mp3,ab=192,channels=2}:std{acce ss=http,mux=raw,dst=localhost:1234/audio.mp3}'

    It should create a streaming server but it creates only errors:

    [00000419] access_output_file access out error: cannot open `localhost:1234/audio.mp3' (No such file or directory)
    [00000417] stream_out_standard stream out error: no suitable sout access module for `file/raw://localhost:1234/audio.mp3'
    [00000414] stream_out_transcode stream out error: cannot create chain
    [00000413] main stream output error: stream chain failed for `transcode{acodec=mp3,ab=192,channels=2}:std{acce ss=http,mux=raw,dst=localhost:1234/audio.mp3}'
    [00000412] main input error: cannot start stream output instance, aborting

    I Think this ist caused beacause a user isn't allowed to open a port under linux. But starting with sudo also doesnt work?

    Comment

    • LegaxyTRX
      Junior Member
      • Dec 2007
      • 19

      #17
      Hi,

      I relaised that You might have found a spelling mistake for the line I pasted:
      It states:
      vlc http://192.168.1.111:31343/150 --sout '#transcode{acodec=mp3,ab=192,channels=2}:std{acce ss=http,mux=raw,dst=:1234/audio.mp3}'

      but it should state:
      access not acce ss

      Does that help?

      Frank

      Comment

      • boomlumpi
        Junior Member
        • Jan 2009
        • 4

        #18
        Thank you very much,

        copy paste the greatest achievement since use of computers ;-)
        Becaus of this procedure i am a bit closer to my aim.
        I simply want one vlc server which streams the audio and views the video
        I thought the following would do but I hear the audio and don't see the video

        vlc -vvv movie.mp4
        --sout '#duplicate{dst=display,dst="transcode{acodec=mp3, vb=128}
        :standard{access=http,mux=raw,dst=xxx.xxx.xxx.xxx: 1234/audio.mp3}"}'

        Comment

        Working...