-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
176 lines (154 loc) · 6.81 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>David Wiesner - Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="First-name Last-name">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le styles -->
<link href='/assets/stylesheets/../media/fonts/font-awesome/css/font-awesome.min.css' type='text/css' rel='stylesheet' media='all'>
<link href='/assets/stylesheets/fonts-8ca3d10a4d00d75652d64b39a49c361d.css' type='text/css' rel='stylesheet' media='all'>
<link href='/assets/stylesheets/amazium-813333c9c0b7adcb980b423764cc2796.css' type='text/css' rel='stylesheet' media='all'>
<link href='/assets/stylesheets/amazium-percent-80c1b3e9d4c14b6d57a2ecf791b7ae38.css' type='text/css' rel='stylesheet' media='all'>
<link href='/assets/stylesheets/base-ea2f4b860b83c1fdf53d8e02d52aa28b.css' type='text/css' rel='stylesheet' media='all'>
<link href='/assets/stylesheets/form-fbe618b3a7993902ba4710fca0036659.css' type='text/css' rel='stylesheet' media='all'>
<link href='/assets/stylesheets/layout-d3f8a417928ba162834defe86c9f65ce.css' type='text/css' rel='stylesheet' media='all'>
<link href='/assets/stylesheets/google_prettify/twitter-bootstrap-365cab8d7f30e6fb74a6426275837bc2.css' type='text/css' rel='stylesheet' media='all'>
<link href='https://fonts.googleapis.com/css?family=Lato:300,400,700,400italic+Droid+Sans:400,700' type='text/css' rel='stylesheet' media='all'> <link href='https://fonts.googleapis.com/css?family=Anonymous+Pro:400,700' rel='stylesheet' type='text/css'>
<!-- Le fav and touch icons -->
<!-- Update these with your own images
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
-->
</head>
<body>
<header role="banner">
<div>
<nav>
<div class="brand">
<div class="hide-mobile"><img src="/assets/media/ich_conterfei_square_white.png"/></div>
<a href="/" class="logo">David Wiesner</a>
<div class="hide-mobile"><em>Programmer - an organism that turns coffee into software</em></div>
</div>
<ul id="social-media">
<li>
<a href="https://plus.google.com/116758442804450648154" rel="social-googleplus" title="Google+" target="_blank">
<i class="fa fa-google-plus"></i>
<span class="screen-reader-text">G+</span>
</a>
<li>
<a href="https://github.com/DavidWiesner" rel="social-github" title="GitHub" target="_blank">
<i class="fa fa-github"></i>
<span class="screen-reader-text">GitHub</span>
</a>
</li>
<li>
<a href="//posts/rss.xml" rel="social-rss" title="RSS">
<i class="fa fa-rss"></i>
<span class="screen-reader-text">RSS</span>
</a>
</li>
</ul>
<a href="#" class="mobile-nav show-mobile"><i class="fa fa-bars"></i></a>
<ul class="navigation" role="navigation">
<li><a href="/pages/archive">Archive</a></li>
</ul>
</nav>
</div>
</header>
<div id="main">
<section class="row-max content">
<div class="content">
<article class="post" role="article">
<header>
<h2 class="title"><a href="/posts/using-vlc-as-upnp-renderer-with-rygel">Using VLC as UPnP renderer with rygel</a></h2>
<div class="date">12. Dec, 2012</div>
</header>
<div class="summary ellipsis">
<p>I have a NAS, a smartphone and my local Computer. What todo with all this thinks? My NAS has a lot of multimedia files and my computer has a large monitor i thought why not connect all this thinks. </p>
<p>So here is my setup:</p>
<ol>
<li>my NAS as UPnP media server with all my movies</li>
<li>my Smartphone with an UPnP control point app like <a href="https://play.google.com/store/apps/details?id=com.bubblesoft.android.bubbleupnp">BubbleUPnP</a>
</li>
<li>and my linux machine</li>
</ol>
<p>So now to the interessting part. <a href="https://wiki.gnome.org/Projects/Rygel">rygel</a> is a UPnP AV MediaServer. But rygel can also as as an player to recieve media files and play this. This is called a UPnP media renderer. Rygel provides a standalone Media Renderer based on GStreamer playbin. This play video and audio files, but thats´s it. You can´t even play a video in fullscreeen mode. </p>
<p>So here comes VLC in play with another protocoll called <a href="http://specifications.freedesktop.org/mpris-spec/latest/">MPRIS</a>. So i don´t get in to details here so MPRIS works and its connect VLC with our media renderer rygel. </p>
<p>So here is an example configuration for rygel. I have disabled all the stuff that isn´t necessary to just play our videos.</p>
<p><code>~/.config/rygel.conf</code></p>
<pre><code>[general]
upnp-enabled=true
enable-transcoding=false
[Tracker]
enabled=false
[MediaExport]
enabled=false
[Playbin]
enabled=false
[GstLaunch]
enabled=false
[MPRIS]
enabled=true
[External]
enabled=false
</code></pre>
</div>
<div class="more">
<a href="/posts/using-vlc-as-upnp-renderer-with-rygel" class="btn">Continue reading …</a>
</div>
</article>
</div>
</section>
<footer>
<div>
<div>
<!--
<p>© First-name Last-name 2013
with help from <a href="http://ruhoh.com" target="_blank" title="The Definitive Technical Blogging Framework">ruhoh</a>
and <a href="http://twitter.github.com/bootstrap/" target="_blank">Twitter Bootstrap</a>
-->
</div>
</p>
</div>
</div>
</footer>
<!-- Google Prettify -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/prettify/188.0.0/prettify.js"></script>
<script>
var pres = document.getElementsByTagName("pre");
for (var i=0; i < pres.length; ++i) {
pres[i].className = "prettyprint linenums";
}
prettyPrint();
</script>
<!-- end Google Prettify -->
<!-- mathjax -->
<!-- INSERT MATHJAX CONFIGURATION FROM MATH.STACKEXCHANGE -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
jax: ["input/TeX", "output/HTML-CSS"],
tex2jax: {
inlineMath: [ ['$', '$'] ],
displayMath: [ ['$$', '$$']],
processEscapes: true,
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
},
messageStyle: "none",
"HTML-CSS": { preferredFont: "TeX", availableFonts: ["STIX","TeX"] }
});
</script>
<script type="text/javascript"
src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<script src='/assets/javascripts/jquery-1.8.0.min-cd8b0bffc85bb5614385ee4ce3596d07.js'></script>
<script src='/assets/javascripts/amazium-ebd6d750c9c8caa5b78a2ab3ba1fdb7a.js'></script>
</div>
</body>
</html>