Streaming with vlc windows

Streaming

Overview of the VideoLAN streaming solution

The VideoLAN streaming solution includes two programs:

  • VLC media player which can be used as a server and as a client to stream and receive network streams. VLC is able to stream all that it can read.
  • VLS (VideoLAN Server), which can stream MPEG-1, MPEG-2 and MPEG-4 files, DVDs, digital satellite channels, digital terrestial television channels and live videos on the network in unicast or multicast. Most of the VLS functionality can now be found VLC. Usage of VLC instead of VLS is advised.

Download

  • To download VLC, go to the VLC download page.
  • To download VLS, you can browse our FTP archive.
  • To download miniSAPserver, you can browse our FTP archive.

The network on which you setup the VideoLAN solution can be as small as one ethernet 10/100Mb switch or hub, and as big as the whole Internet.
The VideoLAN streaming solution has full IPv6 support.

Examples of needed bandwidth are:

  • 0.5 to 4 Mbit/s for a MPEG-4 stream,
  • 3 to 4 Mbit/s for an MPEG-2 stream read from a satellite card, a digital television card or a MPEG-2 encoding card,
  • 6 to 9 Mbit/s for a DVD.

VLC is able to announce its streams using the SAP/SDP standard, or using Zeroconf (also known as Bonjour).

Documentation:Streaming HowTo New

This documentation explains how to stream, transcode and save streams using VLC media player.

NOTE: This is work in progress. For a more complete, yet outdated, documentation on Streaming with VLC please see the old Streaming HowTo.

Contents

Introduction

VLC media player is able to stream, transcode and save different media streams. For more information about the formats and codecs supported please see the VideoLAN Streaming Features list.

Transcoding

Transcoding is the process of taking a media file or stream and converting it to a different format or bitrate.
There are two methods for transcoding in VLC: via the GUI (VLC’s default interface) or via the commandline. The term transcode by itself normally refers to converting one media format to another and saving the output to a file (i.e. no streaming involved).

Transcoding using the GUI

One of the methods of transcoding is via the GUI. To access this:

  1. In VLC, go to «Media >> Convert / Save. » (Ctrl+R).
  2. Add the input file(s) or stream(s) you want to transcode. Press «Convert / Save».
  3. In the «Convert» windows specify the destination file name (including file extension — e.g. on Windows «C:\out.mp3»).
  4. Select the desired codec from the profile list. To check/edit the settings of a given profile press the «Edit selected profile» button. Profiles can also be added/deleted.
  5. Press «Start».

If the profile settings were compatible and transcoding was successful, a playable destination file should be created.

Using the commandline

Another method of transcoding is via the commandline. This is more flexible than via the GUI as it enables full usage of the modules and options available in VLC.

Читайте также:  Не запускается пуск windows 10 что делать

To use the VLC’s commandline you need to have access to the commandline interface, for example via a shell.

Windows-based systems

On Windows-based systems the Command Prompt can be used. This can be found in the «Accessories» folder of the Start menu. Alternatively by going to «Start >> Run. » or pressing «Windows key + R», entering «cmd» into the text field and press «OK» or Enter.

Once the Command Prompt window is opened navigating to the folder/directory where VLC is located is easiest for using the commandline as only «vlc.exe» or «vlc» (as the .exe part is assumed) needs to entered to run VLC. If VLC is installed in the default location (on a 32-bit system) running:

Should change to the directory where vlc.exe is located.

Unix systems

On Unix-based system (such as Linux and macOS) a terminal window can be opened. Running «vlc» should be all that is needed to open VLC:

Transcoding commandline string structure

A typical commandline string for converting a file to another format is:

Where INPUT is the input stream, [TRANSCODE_OPTIONS] are the options set for the desired output format, codecs, bitrate etc. and [OUTPUT_OPTIONS] are the option set for the output type. —sout is the stream output commandline option.

Example commandline: Converting an audio file to a MP3 file

An example usage might be converting an audio file to a MP3 file:

Where INPUT is the input file and OUTPUT is the destination file (for example «C:\out.mp3» on Windows or «/home/username/out.mp3» on a *nix system). The above sout string is the default «Audio — MP3» profile setting accessible via the GUI. It will convert an audio input to a 128kbps CBR MP3 file (sample rate 44100Hz, 2 channels).

Other examples commandline strings

Convert an audio input to an uncompressed WAVE (*.wav) file:

Convert an audio input to an AAC file (MP4 container):

Streaming

Streaming using the GUI

Streaming using the GUI is only available on the Qt interface. To stream using the GUI, open VLC, then Media [menu] -> Stream:

Select a stream (such as a file, a network stream, a disk, a capture device . ) from the «Open Media» dialogs that pops up.

The following streaming methods are available for use with VLC:

  • Display locally: display the stream on your screen. This allows you to display the stream you are actually streaming. Effects of transcoding, rescaling, etc. can be monitored locally using this function.
  • File: Save the stream to a file.
  • HTTP: Use the HTTP streaming method. Specify the TCP port number on which to listen.
  • MS-WMSP (MMSH): This access method allows you to stream to Microsoft Windows Media Player. Specify the IP address and TCP port number on which to listen. Note: This will only work with the ASF encapsulation method.
  • UDP: Stream in unicast by providing an address in the 0.0.0.0 — 223.255.255.255 range or in multicast by providing an address in the 224.0.0.0 — 239.255.255.255 range. It is also possible to stream to IPv6 addresses. Note: This will only work with the TS encapsulation method.
  • RTP: Use the Real-Time Transfer Protocol. Like UDP, it can use both unicast and multicast addresses.
  • IceCast: Stream to an IceCast server. Specify the address, port, mount point and authentication of the IceCast server to stream to.
Читайте также:  Не работают системные приложения windows

The most common way is via HTTP. To stream via HTTP, click on «Destinations», choose HTTP from the drop down as a «New Destination» and click add. Now if you are streaming video, you will want to stream to something like «/go.mpg.» Now hit stream, and you should be able to use a different instance of VLC as a client, and listen to that stream now (ex: on the same computer it would be «Media» [menu] -> Open Network Stream -> «http://localhost:8080/go.mpg» and it should work.

  • even though you click on «enable transcoding» and specify some other container type, it will give you the flv container type unless you use a suffix, like «.mpg» ref
  • VLC client cannot receive a stream at less than 5 fps, though it can stream it alright for those speeds (and other players can receive it). ref.
  • NB that *many* times when using the GUI to stream it will choose the wrong thing. For example, if you give a path of «/» it will use FLV container type (which you probably didn’t want, and which overrides your transcoding settings’ container type *silently*), and if you give it «/go.mp4» it will *silently* fail (you can look at the log messages to see what the error is—it says «mp4 type is not supported except for files»). It is tricky to get it set up. It’s like the GUI sets it up wrong most times. Here is a laundry list.

Select a transcoding profile that fits the codecs and access method of your stream, such as MPEG-TS, MPEG-PS, MPEG-1, Ogg, Raw, ASF, AVI, MP4 and MOV. You can also create or modify profiles by clicking the «Edit selected profile» button next to the selection combobox.

Select methods to announce your stream. You can use SAP (Service Announce Protocol) or SLP (Service Location Protocol). You must also specify a channel name. The macOS interface also allows you to export the description (SDP) file of a RTP session using the internal HTTP or RTSP server of VLC, or as a file. This can be done using the according checkboxes. The SDP URL text box allows to give the url or destination where the SDP file will be available. There is a text box displays the Stream Output MRL (Media Resource Locator). This is updated as you change options in the Stream output dialog, and can be tweaked by hand if necessary.

Click «Stream» to start streaming.

Streaming using the command line interface

If you want to stream using the command line interface instead of the GUI (more control, for example you can specify your own container), you can «sniff» the options the GUI is using by opening up the logger (Tools menu -> message) and setting verbosity level to «2» then doing a stream. It will output debug messages that basically tell you what it is using for command line parameters, then you will take those same parameters and use them on the command line (you may need to add quotation marks around words that have spaces in them, and you may need to add —‘s).

Documentation:Streaming HowTo/Command Line Examples

VLC Streaming HowTo
Introduction
Streaming, Muxers and Codecs
Main
Easy Streaming
Advanced Streaming Using the Command Line
Command Line Examples
VLM
VLM — Multiple Streaming and Video on Demand
Tutorials and examples
Receive and Save a Stream
Convert files to other formats
Stream a File
Stream a DVD
Stream a DVB Channel
Stream from Encoding Cards and Other Capture Devices
Stream from a DV Camcorder
Streaming for the iPhone
IPv6
Streaming over IPv6
View this alone

Examples for advanced use of VLC’s stream output (transcoding, multiple streaming, etc. )

Contents

Transcoding

Transcode a stream to Ogg Vorbis with 2 channels at 128kbps and 44100Hz and save it as foobar.ogg:

Transcode the input stream and send it to a multicast IP address with the associated SAP announce:

Display the input stream, transcode it and send it to a multicast IP address with the associated SAP announce:

Transcode the input stream, display the transcoded stream and send it to a multicast IP address with the associated SAP announce:

To receive the input stream that is being multicasted above on a client:

More complex transcoding example

Stream a SDI card to H.264 and AAC in TS on UDP

Multiple streaming

Send a stream to a multicast IP address and a unicast IP address:

Display the stream and send it to two unicast IP addresses:

Send parts of a multiple program input stream:

This command sends the program of the input stream which id is 12345 to 239.255.12.42 and all video programs with id between 1234 and 2345 to 239.255.12.43.

Transcoding and multiple streaming

Transcode the input stream, display the transcoded stream and send it to a multicast IP address with the associated SAP announce and an unicast IP address:

Display the input stream, transcode it and send it to two unicast IP addresses:

Send the input stream to a multicast IP address and the transcoded stream to another multicast IP address with the associated SAP announces:

More complex multi-transcoding example

Take a SDI input, and transcode it twice, once in HD, and one in SD and send both on udp.

Take a SDI input, and restreaming it once in raw and transcoding it for the second

HTTP streaming

Transcode and stream in HTTP:

Recording a live video stream:

For example, if you want to stream an audio CD in Ogg/Vorbis over HTTP:

RTSP live streaming

Stream with RTSP and RTP:

RTSP on-demand streaming

MMS / MMSH streaming to Windows Media Player

VLC media player can connect to this by using the following url: mmsh://server_ip_address:8080. Windows Media Player can connect to this by using the following url: mms://server_ip_address:8080.

Use the es module

Separate audio and video in two PS files:

Extract the audio track of the input stream to a TS file:

Stream in unicast the audio track on a port and the video track on another port (NOTE: This will not only work with VLC 0.8.6 or older — FIXME?): [Please check this]

  • on the server side:
  • on the client side:
    • to receive the audio:
    • to receive the video:

Stream in multicast the video and dump the audio in a file:

Note: You can also combine the es module with the other modules to set-up even more complex solution.

Keeping the stream open

The basic transcoding is an mp3 stream from the file you select (if it is a video file, then the video is ignored). It is streamed via http to localhost:8080/stream.mp3

The combination of :sout-keep and dst=gather:std mean that the stream is kept open and subsequent items are played through the same stream.

Using VLC as a reflector

Taking a UDP input and resending it once raw via IPv6 multicast, and once in HLS

Читайте также:  Как изменить имя пользователя windows 10 реестр
Оцените статью