Difference between revisions of "Documentation:Modules/upnp"

From VideoLAN Wiki
Jump to navigation Jump to search
(Framework for page)
m (Fix last)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
Prior to VLC 2.0.0 the [[wikipedia:UPnP|UPnP]] module had 2 files: upnp_cc (for [[wikipedia:CyberLink|CyberLink]]) and upnp_intel (for [[wikipedia:Intel Corporation|Intel]]).<br />The upnp_cc file was {{Commitdiff|63751e5aef7dc2ef5098df0df8bdca07849d8fd5|l=removed}} and the upnp_intel file was {{Commitdiff|15e31aa8a7a30df086bb31422b750dcbd632dfae|l=renamed}} to upnp.
 
Prior to VLC 2.0.0 the [[wikipedia:UPnP|UPnP]] module had 2 files: upnp_cc (for [[wikipedia:CyberLink|CyberLink]]) and upnp_intel (for [[wikipedia:Intel Corporation|Intel]]).<br />The upnp_cc file was {{Commitdiff|63751e5aef7dc2ef5098df0df8bdca07849d8fd5|l=removed}} and the upnp_intel file was {{Commitdiff|15e31aa8a7a30df086bb31422b750dcbd632dfae|l=renamed}} to upnp.
  
== <span id="upnp_intel"></span> upnp ==
+
== <span id="upnp_intel"></span> upnp.cpp ==
 
+
{{Module|name=upnp|type=Services discovery|first_version=0.8.4|description=[[wikipedia:Universal Plug'n'Play|Universal Plug'n'Play]]|sc=none}}
 
When VLC is compiled with UPNP support, you will still need{{Check|for=May no longer be necessary?}} to enable UPNP service discovery:
 
When VLC is compiled with UPNP support, you will still need{{Check|for=May no longer be necessary?}} to enable UPNP service discovery:
 
* either on command line via $ vlc --services-discovery upnp_intel
 
* either on command line via $ vlc --services-discovery upnp_intel
Line 9: Line 9:
 
Then discovered UPNP servers will be listed on the playlist.
 
Then discovered UPNP servers will be listed on the playlist.
  
== upnp_cc ==
+
=== Options ===
 +
Note the spelling difference: it is option satip-channe'''l'''ist and satip-channe'''ll'''ist-url.
 +
{{Option
 +
|name=satip-channelist<span id="satip-channelist"></span>
 +
|value=string
 +
|select=[[#appendix_satip-channelist|{ "Auto", "ASTRA_19_2E", "ASTRA_28_2E", "ASTRA_23_5E", "MasterList", "ServerList", "CustomList" }]]
 +
|default="auto"
 +
|description=Custom SAT&gt;IP channel list URL
 +
}}
 +
{{Option
 +
|name=satip-channellist-url
 +
|value=string
 +
|default=NULL
 +
|description=Custom SAT&gt;IP channel list URL
 +
}}
 +
{{Clear}}
 +
 
 +
=== upnp ===
 +
==== Options ====
 +
None.
 +
{{Clear}}
 +
 
 +
=== upnp_renderer ===
 +
{{Module|name=upnp_renderer|type=Renderer discovery|description=UPnP Renderer Discovery|sc=upnp_renderer}}
 +
 
 +
==== Options ====
 +
None.
 +
{{Clear}}
 +
 
 +
<!-- Scheduled for 4.0.0-dev:
 +
=== dlna ===
 +
{{Module|name=dlna|type=Stream output|description=UPnP/[[wikipedia:DLNA|]] stream output|sc=dlna}}
 +
 
 +
Note that <code>--sout-dlna-base_url</code> uses an underscore <code>'''_'''</code> rather than a hyphen.
 +
 
 +
==== Options ====
 +
{{Option
 +
|name=sout-dlna-ip
 +
|value=string
 +
|default=NULL
 +
|description=[[IP address|IP Address]] of the UPnP Renderer.
 +
}}
 +
{{Option
 +
|name=sout-dlna-port
 +
|value=integer
 +
|default=NULL
 +
|description=The [[port]] used to talk to the UPnP Renderer.
 +
}}
 +
{{Option
 +
|name=sout-dlna-http-port
 +
|value=integer
 +
|default=7070
 +
|description=This sets the [[HTTP]] port of the local server used to stream the media to the UPnP Renderer.
 +
}}
 +
{{Option
 +
|name=sout-dlna-video
 +
|value=boolean
 +
|default=enabled
 +
|description=The UPnP Renderer can receive video.
 +
}}
 +
{{Option
 +
|name=sout-dlna-base_url
 +
|value=string
 +
|default=NULL
 +
|description=The base Url relative to which all other UPnP operations must be called
 +
}}
 +
{{Option
 +
|name=sout-dlna-url
 +
|value=string
 +
|default=NULL
 +
|description=The Url used to get the xml descriptor of the UPnP Renderer
 +
}}
 +
{{Clear}}-->
 +
 
 +
== <span id="upnp_cc"></span> upnp_cc.cpp ==
 +
{{Module|name=UPnP|type=Services discovery|last_version=1.1.?|description=Universal Plug'n'Play|sc=none}}
 +
 
 +
=== Options ===
 +
None.
 +
{{Clear}}
  
 
== Source code ==
 
== Source code ==
Line 16: Line 95:
 
Former:
 
Former:
 
* {{VLCSourceFile|p=vlc/vlc-0.8.git|modules/services_discovery/upnp_cc.cpp}}
 
* {{VLCSourceFile|p=vlc/vlc-0.8.git|modules/services_discovery/upnp_cc.cpp}}
 +
* {{VLCSourceFile|p=vlc/vlc-0.9.git|modules/services_discovery/upnp_cc.cpp}}
 +
* {{VLCSourceFile|p=vlc/vlc-1.0.git|modules/services_discovery/upnp_cc.cpp}}
 +
* {{VLCSourceFile|p=vlc/vlc-1.1.git|modules/services_discovery/upnp_cc.cpp}}
 
* {{VLCSourceFile|p=vlc/vlc-0.8.git|modules/services_discovery/upnp_intel.cpp}}
 
* {{VLCSourceFile|p=vlc/vlc-0.8.git|modules/services_discovery/upnp_intel.cpp}}
 +
* {{VLCSourceFile|p=vlc/vlc-0.9.git|modules/services_discovery/upnp_intel.cpp}}
 +
* {{VLCSourceFile|p=vlc/vlc-1.0.git|modules/services_discovery/upnp_intel.cpp}}
 +
* {{VLCSourceFile|p=vlc/vlc-1.1.git|modules/services_discovery/upnp_intel.cpp}}
 +
 +
== Appendix ==
 +
<span id="appendix_satip-channelist"></span>
 +
'''For the option <code>[[#satip-channelist|--satip-channelist]]</code>:'''
 +
{| class="mw-datatable sortable"
 +
! scope="row" | Option name
 +
| Auto || ASTRA_19_2E || ASTRA_28_2E || ASTRA_23_5E || MasterList || ServerList || CustomList
 +
|-
 +
! scope="row" | Meaning
 +
| Auto || Astra 19.2°E || Astra 28.2°E || Astra 23.5°E || SAT&gt;IP Main List || Device List || Custom List
 +
|}
  
 
{{Documentation}}
 
{{Documentation}}
 +
 +
{{DEFAULTSORT:{{#titleparts:{{PAGENAME}}|0|2}}|noerror}}<!-- Override sortkey -->

Latest revision as of 07:11, 28 May 2019

Prior to VLC 2.0.0 the UPnP module had 2 files: upnp_cc (for CyberLink) and upnp_intel (for Intel).
The upnp_cc file was removed and the upnp_intel file was renamed to upnp.

upnp.cpp

Module: upnp
Type Services discovery
First VLC version 0.8.4
Last VLC version -
Operating system(s) all
Description Universal Plug'n'Play
Shortcut(s) (none)

When VLC is compiled with UPNP support, you will still need[May no longer be necessary?] to enable UPNP service discovery:

  • either on command line via $ vlc --services-discovery upnp_intel
  • or in the playlist menu: File/Service discovery/UPNP

Then discovered UPNP servers will be listed on the playlist.

Options

Note the spelling difference: it is option satip-channelist and satip-channellist-url.

upnp

Options

None.

upnp_renderer

Module: upnp_renderer
Type Renderer discovery
First VLC version -
Last VLC version -
Operating system(s) all
Description UPnP Renderer Discovery
Shortcut(s) upnp_renderer

Options

None.


upnp_cc.cpp

Module: UPnP
Type Services discovery
First VLC version -
Last VLC version 1.1.?
Operating system(s) all
Description Universal Plug'n'Play
Shortcut(s) (none)

Options

None.

Source code

Current:

Former:

Appendix

For the option --satip-channelist:

Option name Auto ASTRA_19_2E ASTRA_28_2E ASTRA_23_5E MasterList ServerList CustomList
Meaning Auto Astra 19.2°E Astra 28.2°E Astra 23.5°E SAT>IP Main List Device List Custom List
This page is part of official VLC media player Documentation (User GuideStreaming HowToHacker GuideModules)
Please read the Documentation Editing Guidelines before you edit the documentation
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.