~ubuntu-branches/debian/squeeze/mplayer/squeeze

« back to all changes in this revision

Viewing changes to DOCS/HTML/en/streaming.html

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2010-07-31 23:44:52 UTC
  • mfrom: (1.1.4 upstream) (8.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20100731234452-j7yyrgsh1wustazr
Tags: 2:1.0~rc3++final.dfsg1-1
* upload to unstable
* enable mencoder and mplayer-gui package
* build again against the system FFmpeg 0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>3.4. Streaming from network or pipes</title><link rel="stylesheet" href="default.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.75.2"><link rel="home" href="index.html" title="MPlayer - The Movie Player"><link rel="up" href="usage.html" title="Chapter 3. Usage"><link rel="prev" href="control.html" title="3.3. Control"><link rel="next" href="edl.html" title="3.5. Edit Decision Lists (EDL)"><link rel="preface" href="howtoread.html" title="How to read this documentation"><link rel="chapter" href="intro.html" title="Chapter 1. Introduction"><link rel="chapter" href="install.html" title="Chapter 2. Installation"><link rel="chapter" href="usage.html" title="Chapter 3. Usage"><link rel="chapter" href="advaudio.html" title="Chapter 4. Advanced audio usage"><link rel="chapter" href="cd-dvd.html" title="Chapter 5. CD/DVD usage"><link rel="chapter" href="tv.html" title="Chapter 6. TV"><link rel="chapter" href="radio.html" title="Chapter 7. Radio"><link rel="chapter" href="video.html" title="Chapter 8. Video output devices"><link rel="chapter" href="ports.html" title="Chapter 9. Ports"><link rel="chapter" href="mencoder.html" title="Chapter 10. Basic usage of MEncoder"><link rel="chapter" href="encoding-guide.html" title="Chapter 11. Encoding with MEncoder"><link rel="chapter" href="faq.html" title="Chapter 12. Frequently Asked Questions"><link rel="appendix" href="bugreports.html" title="Appendix A. How to report bugs"><link rel="appendix" href="skin.html" title="Appendix B. MPlayer skin format"><link rel="subsection" href="streaming.html#streaming-save" title="3.4.1. Saving streamed content"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">3.4. Streaming from network or pipes</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="control.html">Prev</a> </td><th width="60%" align="center">Chapter 3. Usage</th><td width="20%" align="right"> <a accesskey="n" href="edl.html">Next</a></td></tr></table><hr></div><div class="sect1" title="3.4. Streaming from network or pipes"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="streaming"></a>3.4. Streaming from network or pipes</h2></div></div></div><p>
 
2
<span class="application">MPlayer</span> can play files from the network, using the
 
3
HTTP, FTP, MMS or RTSP/RTP protocol.
 
4
</p><p>
 
5
Playing works simply by passing the URL on the command line.
 
6
<span class="application">MPlayer</span> honors the <code class="envar">http_proxy</code>
 
7
environment variable, using a proxy if available. Proxies can also be forced:
 
8
</p><pre class="screen">
 
9
mplayer <em class="replaceable"><code>http_proxy://proxy.micorsops.com:3128/http://micorsops.com:80/stream.asf</code></em>
 
10
</pre><p>
 
11
</p><p>
 
12
<span class="application">MPlayer</span> can read from stdin
 
13
(<span class="emphasis"><em>not</em></span> named pipes). This can for example be used to
 
14
play from FTP:
 
15
</p><pre class="screen">
 
16
wget <em class="replaceable"><code>ftp://micorsops.com/something.avi</code></em> -O - | mplayer -
 
17
</pre><p>
 
18
</p><div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Note</h3><p>
 
19
It is also recommended to enable <tt class="option">-cache</tt> when playing
 
20
from the network:
 
21
</p><pre class="screen">
 
22
wget <em class="replaceable"><code>ftp://micorsops.com/something.avi</code></em> -O - | mplayer -cache 8192 -
 
23
</pre><p>
 
24
</p></div><div class="sect2" title="3.4.1. Saving streamed content"><div class="titlepage"><div><div><h3 class="title"><a name="streaming-save"></a>3.4.1. Saving streamed content</h3></div></div></div><p>
 
25
Once you succeed in making <span class="application">MPlayer</span> play
 
26
your favorite internet stream, you can use the option
 
27
<tt class="option">-dumpstream</tt> to save the stream into a file.
 
28
For example:
 
29
</p><pre class="screen">
 
30
mplayer <em class="replaceable"><code>http://217.71.208.37:8006</code></em> -dumpstream -dumpfile <em class="replaceable"><code>stream.asf</code></em>
 
31
</pre><p>
 
32
will save the content streamed from
 
33
<em class="replaceable"><code>http://217.71.208.37:8006</code></em> into
 
34
<em class="replaceable"><code>stream.asf</code></em>.
 
35
This works with all protocols supported by
 
36
<span class="application">MPlayer</span>, like MMS, RTSP, and so forth.
 
37
</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="control.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="usage.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="edl.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">3.3. Control </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 3.5. Edit Decision Lists (EDL)</td></tr></table></div></body></html>