<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#ffffff">
    On 13/10/10 13:05, Rhytha Web wrote:
    <blockquote
      cite="mid:AANLkTi=-14XrrNRjOHz9-RmAD9-WTgVkftBG_4Q17ZVy@mail.gmail.com"
      type="cite"><br>
      We tried in VLC player to configure through Icecast for streaming
      but nothing works. But the VLC player deducts webcam and showing
      the video picture in the VLC player.<br>
      <br>
      <b>Whether the IceCast will only support the audio streaming or
        IceCast will also support live online video streaming for my
        website?</b><br>
      <br>
      pls help us on this, becoz we are trying this for long time and
      could not find the solution for it.<br>
      <br>
      <b>It would be great if you can send us any correct online
        documentation for configuring the IceCast with VLC player for
        live video streaming</b><br>
      <br>
      Thanks in advance!!!<br>
      <br>
      Regards<br>
      Arun<br>
      <div style="visibility: hidden; display: inline;"
        id="avg_ls_inline_popup">
      </div>
      <style type="text/css">#avg_ls_inline_popup {  position:absolute;  z-index:9999;  padding: 0px 0px;  margin-left: 0px;  margin-top: 0px;  width: 240px;  overflow: hidden;  word-wrap: break-word;  color: black;  font-size: 10px;  text-align: left;  line-height: 13px;}</style><br>
    </blockquote>
    <br>
    Hello again,<br>
    <br>
    I'm not sure to understand you, but it seems that your system is
    missing something. When you use IceCast, there must be, apart from
    the icecast server, a source (in the radio station), and the
    listeneres. As far as I know, VLC is a player, so it is what a
    listener uses to listen/watch the stream that the server is sending.
    But you need also something to send the data to the server (e.g.
    oggfwd, or many others). I'm not sure if you can use VLC for this.<br>
    <br>
    I suggest reading the following links:<br>
    <br>
    <a class="moz-txt-link-freetext" href="http://en.flossmanuals.net/TheoraCookbook/WhatIsStreaming">http://en.flossmanuals.net/TheoraCookbook/WhatIsStreaming</a><br>
    <a class="moz-txt-link-freetext" href="http://en.flossmanuals.net/TheoraCookbook/IcecastIntro">http://en.flossmanuals.net/TheoraCookbook/IcecastIntro</a><br>
    <br>
    On the other hand, are you running Windows, Linux, ...?<br>
    <br>
    If you're running Linux, you can use for example GStreamer to send
    video to your icecast server, typing the following command in a
    console (all in one line).<br>
    <br>
    gst-launch-0.10 -v v4l2src device=/dev/video0 !
    video/x-raw-yuv,width=320,height=240 ! queue ! videorate !
    video/x-raw-yuv,framerate=25/2 ! videoscale !
    video/x-raw-yuv,width=360,height=288 ! theoraenc ! oggmux !
    shout2send ip=localhost port=8000 mount=stream.ogg password=hackme<br>
    <br>
    (of course, you should change ip, port, etc with your own values).<br>
    <br>
    Alternatively, FFmpeg could be used. The following command used to
    work for me (one line):<br>
    <br>
    ffmpeg -f oss -i /dev/dsp -f video4linux2 -i  /dev/video0 -s 320x240
    -r 25 -aq 2 -ac 2 -ar 44100  -acodec libvorbis -f ogg - | oggfwd
    localhost 8000 hackme /stream.ogg<br>
    <br>
    But it stopped working with recent versions of FFmpeg (I don't know
    why).<br>
    <br>
    I hope this helps you. Feel free to ask further questions.<br>
    <br>
    Regards,<br>
    Andrés<br>
    <br>
    <br>
    <br>
    <br>
  </body>
</html>