~ubuntu-branches/ubuntu/feisty/videolan-doc/feisty

« back to all changes in this revision

Viewing changes to doc/streaming-howto/src/en/receive.xml

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hocevar (Debian packages)
  • Date: 2006-07-11 18:08:24 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060711180824-wk7ise3qzgfzo0zy
Tags: 20060711-1
* New SVN snapshot.
* debian/control:
  + Set policy to 3.7.2.
  + Moved debhelper to Build-Depends because we use it in the clean rule.
* debian/copyright:
  + Fixed the FSF address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<chapter id="receive"><title id="treceive">
 
3
Receive and save a stream
 
4
</title>
 
5
 
 
6
<sect1><title>
 
7
Receive a stream with VLC
 
8
</title>
 
9
 
 
10
<sect2><title>
 
11
Receive an unicast stream
 
12
</title>
 
13
 
 
14
<screen>
 
15
<prompt>% </prompt><userinput>vlc -vvv udp:</userinput>
 
16
</screen>
 
17
 
 
18
</sect2>
 
19
 
 
20
<sect2><title>
 
21
Receive a multicast stream
 
22
 
 
23
</title>
 
24
 
 
25
<screen>
 
26
<prompt>% </prompt><userinput>vlc -vvv udp:@239.255.12.42</userinput>
 
27
</screen>
 
28
 
 
29
<para>
 
30
 where <emphasis>239.255.12.42</emphasis> is the
 
31
multicast IP address you want to join.
 
32
 
 
33
</para>
 
34
 
 
35
</sect2>
 
36
 
 
37
<sect2><title>
 
38
Receive an HTTP/FTP/MMS stream
 
39
 
 
40
</title>
 
41
 
 
42
<para>
 
43
Use one of the following command lines:</para>
 
44
 
 
45
<itemizedlist>
 
46
 
 
47
<listitem>
 
48
 
 
49
<screen>
 
50
<prompt>% </prompt><userinput>vlc -vvv http://example/stream.xyz</userinput>
 
51
</screen>
 
52
 
 
53
<para>
 
54
where <emphasis>http://example/stream.xyz</emphasis>
 
55
is the HTTP address of the stream;</para>
 
56
 
 
57
</listitem>
 
58
 
 
59
<listitem>
 
60
 
 
61
<screen>
 
62
<prompt>% </prompt><userinput>vlc -vvv ftp://example/stream.xyz</userinput>
 
63
</screen>
 
64
 
 
65
<para>
 
66
where <emphasis>ftp://example/stream.xyz</emphasis>
 
67
is the FTP address of the stream;</para>
 
68
</listitem>
 
69
 
 
70
<listitem>
 
71
 
 
72
<screen>
 
73
<prompt>% </prompt><userinput>vlc -vvv mms://viptvr.yacast.fr/encoderfranceinfo</userinput>
 
74
</screen>
 
75
 
 
76
<para>
 
77
where
 
78
<emphasis>mms://viptvr.yacast.fr/encoderfranceinfo</emphasis> is the MMS
 
79
address of the stream.
 
80
 
 
81
</para>
 
82
 
 
83
</listitem>
 
84
</itemizedlist>
 
85
 
 
86
</sect2>
 
87
 
 
88
<sect2><title>
 
89
Receive a RTP stream available through RTSP
 
90
 
 
91
</title>
 
92
 
 
93
<screen>
 
94
<prompt>% </prompt><userinput>vlc -vvv rtsp://www.hardradio.com/tonbeme.mov</userinput>
 
95
</screen>
 
96
 
 
97
<para>
 
98
 where <emphasis>rtsp://www.hardradio.com/tonbeme.mov</emphasis> is the address of the stream.
 
99
 
 
100
</para>
 
101
 
 
102
</sect2>
 
103
 
 
104
<sect2><title>
 
105
Receive a stream described by an SDP file
 
106
 
 
107
</title>
 
108
 
 
109
<screen>
 
110
<prompt>% </prompt><userinput>vlc -vvv http://server.example.org/stream.sdp</userinput>
 
111
</screen>
 
112
 
 
113
</sect2>
 
114
</sect1>
 
115
 
 
116
<sect1><title>
 
117
Save a stream with VLC
 
118
 
 
119
</title>
 
120
 
 
121
<para>
 
122
VLC can save the stream to the disk. In order
 
123
to do this, use the Stream Output of VLC : you can do it via the
 
124
graphical interface, or you can add to the command line the following
 
125
argument:</para>
 
126
 
 
127
<screen>
 
128
<userinput>--sout file/muxer:stream.xyz</userinput>
 
129
</screen>
 
130
 
 
131
<para>
 
132
where:
 
133
 
 
134
</para>
 
135
 
 
136
<itemizedlist>
 
137
 
 
138
<listitem><para><emphasis>muxer</emphasis> 
 
139
is one of the formats supported by VLC's stream
 
140
output, i.e. :
 
141
 
 
142
</para>
 
143
 
 
144
<itemizedlist>
 
145
 
 
146
<listitem><para><emphasis>ogg</emphasis>
 
147
  for OGG format,</para></listitem>
 
148
 
 
149
<listitem><para><emphasis>ps</emphasis> 
 
150
  for MPEG2-PS format,</para></listitem>
 
151
 
 
152
<listitem><para><emphasis>ts</emphasis>
 
153
  for MPEG2-PS format.</para></listitem>
 
154
 
 
155
</itemizedlist>
 
156
 
 
157
</listitem>
 
158
 
 
159
<listitem><para>
 
160
and <filename>stream.xyz</filename> is the name of
 
161
the file you want to save the stream to, with the right extension.
 
162
 
 
163
</para></listitem>
 
164
 
 
165
</itemizedlist>
 
166
 
 
167
</sect1>
 
168
 
 
169
<sect1><title>
 
170
Receive a stream with a set-top-box
 
171
 
 
172
</title>
 
173
 
 
174
<para>
 
175
Some set-top-boxes with Ethernet cards can receive
 
176
MPEG2-TS streams over UDP and support multicast.
 
177
</para>
 
178
 
 
179
<para>
 
180
Set-top-boxes known to work with VLC are :
 
181
</para>
 
182
 
 
183
<itemizedlist>
 
184
<listitem><para><ulink url="http://www.pace.co.uk">Pace</ulink> set top boxes. (Pace Micro DSL 4000)</para></listitem>
 
185
<listitem><para><ulink url="http://www.aminocom.com">Aminocom</ulink> set top boxes. (all the models with mpeg2)</para></listitem>
 
186
<listitem><para>tuxia / gct-allwell (mpeg4 and mpeg2) sigma designs8174 chipset</para></listitem>
 
187
<listitem><para>i3micro mood200 (mpeg4 and mpeg2 in transport streams)</para></listitem>
 
188
</itemizedlist>
 
189
 
 
190
</sect1>
 
191
</chapter>