]> pere.pagekite.me Git - homepage.git/blob - blog/tags/web/web.rss
2f862786fe65685b382037e0ef1c13d5b20f5c28
[homepage.git] / blog / tags / web / web.rss
1 <?xml version="1.0" encoding="utf-8"?>
2 <rss version='2.0' xmlns:lj='http://www.livejournal.org/rss/lj/1.0/'>
3 <channel>
4 <title>Petter Reinholdtsen - Entries tagged web</title>
5 <description>Entries tagged web</description>
6 <link>http://people.skolelinux.org/pere/blog/</link>
7
8
9 <item>
10 <title>Where did that package go? &amp;mdash; geolocated IP traceroute</title>
11 <link>http://people.skolelinux.org/pere/blog/Where_did_that_package_go___mdash__geolocated_IP_traceroute.html</link>
12 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Where_did_that_package_go___mdash__geolocated_IP_traceroute.html</guid>
13 <pubDate>Mon, 9 Jan 2017 12:20:00 +0100</pubDate>
14 <description>&lt;p&gt;Did you ever wonder where the web trafic really flow to reach the
15 web servers, and who own the network equipment it is flowing through?
16 It is possible to get a glimpse of this from using traceroute, but it
17 is hard to find all the details. Many years ago, I wrote a system to
18 map the Norwegian Internet (trying to figure out if our plans for a
19 network game service would get low enough latency, and who we needed
20 to talk to about setting up game servers close to the users. Back
21 then I used traceroute output from many locations (I asked my friends
22 to run a script and send me their traceroute output) to create the
23 graph and the map. The output from traceroute typically look like
24 this:
25
26 &lt;p&gt;&lt;pre&gt;
27 traceroute to www.stortinget.no (85.88.67.10), 30 hops max, 60 byte packets
28 1 uio-gw10.uio.no (129.240.202.1) 0.447 ms 0.486 ms 0.621 ms
29 2 uio-gw8.uio.no (129.240.24.229) 0.467 ms 0.578 ms 0.675 ms
30 3 oslo-gw1.uninett.no (128.39.65.17) 0.385 ms 0.373 ms 0.358 ms
31 4 te3-1-2.br1.fn3.as2116.net (193.156.90.3) 1.174 ms 1.172 ms 1.153 ms
32 5 he16-1-1.cr1.san110.as2116.net (195.0.244.234) 2.627 ms he16-1-1.cr2.oslosda310.as2116.net (195.0.244.48) 3.172 ms he16-1-1.cr1.san110.as2116.net (195.0.244.234) 2.857 ms
33 6 ae1.ar8.oslosda310.as2116.net (195.0.242.39) 0.662 ms 0.637 ms ae0.ar8.oslosda310.as2116.net (195.0.242.23) 0.622 ms
34 7 89.191.10.146 (89.191.10.146) 0.931 ms 0.917 ms 0.955 ms
35 8 * * *
36 9 * * *
37 [...]
38 &lt;/pre&gt;&lt;/p&gt;
39
40 &lt;p&gt;This show the DNS names and IP addresses of (at least some of the)
41 network equipment involved in getting the data traffic from me to the
42 www.stortinget.no server, and how long it took in milliseconds for a
43 package to reach the equipment and return to me. Three packages are
44 sent, and some times the packages do not follow the same path. This
45 is shown for hop 5, where three different IP addresses replied to the
46 traceroute request.&lt;/p&gt;
47
48 &lt;p&gt;There are many ways to measure trace routes. Other good traceroute
49 implementations I use are traceroute (using ICMP packages) mtr (can do
50 both ICMP, UDP and TCP) and scapy (python library with ICMP, UDP, TCP
51 traceroute and a lot of other capabilities). All of them are easily
52 available in &lt;a href=&quot;https://www.debian.org/&quot;&gt;Debian&lt;/a&gt;.&lt;/p&gt;
53
54 &lt;p&gt;This time around, I wanted to know the geographic location of
55 different route points, to visualize how visiting a web page spread
56 information about the visit to a lot of servers around the globe. The
57 background is that a web site today often will ask the browser to get
58 from many servers the parts (for example HTML, JSON, fonts,
59 JavaScript, CSS, video) required to display the content. This will
60 leak information about the visit to those controlling these servers
61 and anyone able to peek at the data traffic passing by (like your ISP,
62 the ISPs backbone provider, FRA, GCHQ, NSA and others).&lt;/p&gt;
63
64 &lt;p&gt;Lets pick an example, the Norwegian parliament web site
65 www.stortinget.no. It is read daily by all members of parliament and
66 their staff, as well as political journalists, activits and many other
67 citizens of Norway. A visit to the www.stortinget.no web site will
68 ask your browser to contact 8 other servers: ajax.googleapis.com,
69 insights.hotjar.com, script.hotjar.com, static.hotjar.com,
70 stats.g.doubleclick.net, www.google-analytics.com,
71 www.googletagmanager.com and www.netigate.se. I extracted this by
72 asking &lt;a href=&quot;http://phantomjs.org/&quot;&gt;PhantomJS&lt;/a&gt; to visit the
73 Stortinget web page and tell me all the URLs PhantomJS downloaded to
74 render the page (in HAR format using
75 &lt;a href=&quot;https://github.com/ariya/phantomjs/blob/master/examples/netsniff.js&quot;&gt;their
76 netsniff example&lt;/a&gt;. I am very grateful to Gorm for showing me how
77 to do this). My goal is to visualize network traces to all IP
78 addresses behind these DNS names, do show where visitors personal
79 information is spread when visiting the page.&lt;/p&gt;
80
81 &lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;www.stortinget.no-geoip.kml&quot;&gt;&lt;img
82 src=&quot;http://people.skolelinux.org/pere/blog/images/2017-01-09-www.stortinget.no-geoip-small.png&quot; alt=&quot;map of combined traces for URLs used by www.stortinget.no using GeoIP&quot;/&gt;&lt;/a&gt;&lt;/p&gt;
83
84 &lt;p&gt;When I had a look around for options, I could not find any good
85 free software tools to do this, and decided I needed my own traceroute
86 wrapper outputting KML based on locations looked up using GeoIP. KML
87 is easy to work with and easy to generate, and understood by several
88 of the GIS tools I have available. I got good help from by NUUG
89 colleague Anders Einar with this, and the result can be seen in
90 &lt;a href=&quot;https://github.com/petterreinholdtsen/kmltraceroute&quot;&gt;my
91 kmltraceroute git repository&lt;/a&gt;. Unfortunately, the quality of the
92 free GeoIP databases I could find (and the for-pay databases my
93 friends had access to) is not up to the task. The IP addresses of
94 central Internet infrastructure would typically be placed near the
95 controlling companies main office, and not where the router is really
96 located, as you can see from &lt;a href=&quot;www.stortinget.no-geoip.kml&quot;&gt;the
97 KML file I created&lt;/a&gt; using the GeoLite City dataset from MaxMind.
98
99 &lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2017-01-09-www.stortinget.no-scapy.svg&quot;&gt;&lt;img
100 src=&quot;http://people.skolelinux.org/pere/blog/images/2017-01-09-www.stortinget.no-scapy-small.png&quot; alt=&quot;scapy traceroute graph for URLs used by www.stortinget.no&quot;/&gt;&lt;/a&gt;&lt;/p&gt;
101
102 &lt;p&gt;I also had a look at the visual traceroute graph created by
103 &lt;a href=&quot;http://www.secdev.org/projects/scapy/&quot;&gt;the scrapy project&lt;/a&gt;,
104 showing IP network ownership (aka AS owner) for the IP address in
105 question.
106 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2017-01-09-www.stortinget.no-scapy.svg&quot;&gt;The
107 graph display a lot of useful information about the traceroute in SVG
108 format&lt;/a&gt;, and give a good indication on who control the network
109 equipment involved, but it do not include geolocation. This graph
110 make it possible to see the information is made available at least for
111 UNINETT, Catchcom, Stortinget, Nordunet, Google, Amazon, Telia, Level
112 3 Communications and NetDNA.&lt;/p&gt;
113
114 &lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;https://geotraceroute.com/index.php?node=4&amp;host=www.stortinget.no&quot;&gt;&lt;img
115 src=&quot;http://people.skolelinux.org/pere/blog/images/2017-01-09-www.stortinget.no-geotraceroute-small.png&quot; alt=&quot;example geotraceroute view for www.stortinget.no&quot;/&gt;&lt;/a&gt;&lt;/p&gt;
116
117 &lt;p&gt;In the process, I came across the
118 &lt;a href=&quot;https://geotraceroute.com/&quot;&gt;web service GeoTraceroute&lt;/a&gt; by
119 Salim Gasmi. Its methology of combining guesses based on DNS names,
120 various location databases and finally use latecy times to rule out
121 candidate locations seemed to do a very good job of guessing correct
122 geolocation. But it could only do one trace at the time, did not have
123 a sensor in Norway and did not make the geolocations easily available
124 for postprocessing. So I contacted the developer and asked if he
125 would be willing to share the code (he refused until he had time to
126 clean it up), but he was interested in providing the geolocations in a
127 machine readable format, and willing to set up a sensor in Norway. So
128 since yesterday, it is possible to run traces from Norway in this
129 service thanks to a sensor node set up by
130 &lt;a href=&quot;https://www.nuug.no/&quot;&gt;the NUUG assosiation&lt;/a&gt;, and get the
131 trace in KML format for further processing.&lt;/p&gt;
132
133 &lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2017-01-09-www.stortinget.no-geotraceroute-kml-join.kml&quot;&gt;&lt;img
134 src=&quot;http://people.skolelinux.org/pere/blog/images/2017-01-09-www.stortinget.no-geotraceroute-kml-join.png&quot; alt=&quot;map of combined traces for URLs used by www.stortinget.no using geotraceroute&quot;/&gt;&lt;/a&gt;&lt;/p&gt;
135
136 &lt;p&gt;Here we can see a lot of trafic passes Sweden on its way to
137 Denmark, Germany, Holland and Ireland. Plenty of places where the
138 Snowden confirmations verified the traffic is read by various actors
139 without your best interest as their top priority.&lt;/p&gt;
140
141 &lt;p&gt;Combining KML files is trivial using a text editor, so I could loop
142 over all the hosts behind the urls imported by www.stortinget.no and
143 ask for the KML file from GeoTraceroute, and create a combined KML
144 file with all the traces (unfortunately only one of the IP addresses
145 behind the DNS name is traced this time. To get them all, one would
146 have to request traces using IP number instead of DNS names from
147 GeoTraceroute). That might be the next step in this project.&lt;/p&gt;
148
149 &lt;p&gt;Armed with these tools, I find it a lot easier to figure out where
150 the IP traffic moves and who control the boxes involved in moving it.
151 And every time the link crosses for example the Swedish border, we can
152 be sure Swedish Signal Intelligence (FRA) is listening, as GCHQ do in
153 Britain and NSA in USA and cables around the globe. (Hm, what should
154 we tell them? :) Keep that in mind if you ever send anything
155 unencrypted over the Internet.&lt;/p&gt;
156
157 &lt;p&gt;PS: KML files are drawn using
158 &lt;a href=&quot;http://ivanrublev.me/kml/&quot;&gt;the KML viewer from Ivan
159 Rublev&lt;a/&gt;, as it was less cluttered than the local Linux application
160 Marble. There are heaps of other options too.&lt;/p&gt;
161
162 &lt;p&gt;As usual, if you use Bitcoin and want to show your support of my
163 activities, please send Bitcoin donations to my address
164 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&amp;label=PetterReinholdtsenBlog&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
165 </description>
166 </item>
167
168 <item>
169 <title>Nedlasting fra NRK, som Matroska med undertekster</title>
170 <link>http://people.skolelinux.org/pere/blog/Nedlasting_fra_NRK__som_Matroska_med_undertekster.html</link>
171 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Nedlasting_fra_NRK__som_Matroska_med_undertekster.html</guid>
172 <pubDate>Sat, 2 Jan 2016 13:50:00 +0100</pubDate>
173 <description>&lt;p&gt;Det kommer stadig nye løsninger for å ta lagre unna innslag fra NRK
174 for å se på det senere. For en stund tilbake kom jeg over et script
175 nrkopptak laget av Ingvar Hagelund. Han fjernet riktignok sitt script
176 etter forespørsel fra Erik Bolstad i NRK, men noen tok heldigvis og
177 gjorde det &lt;a href=&quot;https://github.com/liangqi/nrkopptak&quot;&gt;tilgjengelig
178 via github&lt;/a&gt;.&lt;/p&gt;
179
180 &lt;p&gt;Scriptet kan lagre som MPEG4 eller Matroska, og bake inn
181 undertekster i fila på et vis som blant annet VLC forstår. For å
182 bruke scriptet, kopier ned git-arkivet og kjør&lt;/p&gt;
183
184 &lt;p&gt;&lt;pre&gt;
185 nrkopptak/bin/nrk-opptak k &lt;ahref=&quot;https://tv.nrk.no/serie/bmi-turne/MUHH45000115/sesong-1/episode-1&quot;&gt;https://tv.nrk.no/serie/bmi-turne/MUHH45000115/sesong-1/episode-1&lt;/a&gt;
186 &lt;/pre&gt;&lt;/p&gt;
187
188 &lt;p&gt;URL-eksemplet er dagens toppsak på tv.nrk.no. Argument &#39;k&#39; ber
189 scriptet laste ned og lagre som Matroska. Det finnes en rekke andre
190 muligheter for valg av kvalitet og format.&lt;/p&gt;
191
192 &lt;p&gt;Jeg foretrekker dette scriptet fremfor youtube-dl, som
193 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Hvordan_enkelt_laste_ned_filmer_fra_NRK_med_den__nye__l_sningen.html&quot;&gt;
194 nevnt i 2014 støtter NRK&lt;/a&gt; og en rekke andre videokilder, på grunn
195 av at nrkopptak samler undertekster og video i en enkelt fil, hvilket
196 gjør håndtering enklere på disk.&lt;/p&gt;
197 </description>
198 </item>
199
200 <item>
201 <title>MPEG LA on &quot;Internet Broadcast AVC Video&quot; licensing and non-private use</title>
202 <link>http://people.skolelinux.org/pere/blog/MPEG_LA_on__Internet_Broadcast_AVC_Video__licensing_and_non_private_use.html</link>
203 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/MPEG_LA_on__Internet_Broadcast_AVC_Video__licensing_and_non_private_use.html</guid>
204 <pubDate>Tue, 7 Jul 2015 09:50:00 +0200</pubDate>
205 <description>&lt;p&gt;After asking the Norwegian Broadcasting Company (NRK)
206 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Hva_gj_r_at_NRK_kan_distribuere_H_264_video_uten_patentavtale_med_MPEG_LA_.html&quot;&gt;why
207 they can broadcast and stream H.264 video without an agreement with
208 the MPEG LA&lt;/a&gt;, I was wiser, but still confused. So I asked MPEG LA
209 if their understanding matched that of NRK. As far as I can tell, it
210 does not.&lt;/p&gt;
211
212 &lt;p&gt;I started by asking for more information about the various
213 licensing classes and what exactly is covered by the &quot;Internet
214 Broadcast AVC Video&quot; class that NRK pointed me at to explain why NRK
215 did not need a license for streaming H.264 video:
216
217 &lt;p&gt;&lt;blockquote&gt;
218
219 &lt;p&gt;According to
220 &lt;a href=&quot;http://www.mpegla.com/Lists/MPEG%20LA%20News%20List/Attachments/226/n-10-02-02.pdf&quot;&gt;a
221 MPEG LA press release dated 2010-02-02&lt;/a&gt;, there is no charge when
222 using MPEG AVC/H.264 according to the terms of &quot;Internet Broadcast AVC
223 Video&quot;. I am trying to understand exactly what the terms of &quot;Internet
224 Broadcast AVC Video&quot; is, and wondered if you could help me. What
225 exactly is covered by these terms, and what is not?&lt;/p&gt;
226
227 &lt;p&gt;The only source of more information I have been able to find is a
228 PDF named
229 &lt;a href=&quot;http://www.mpegla.com/main/programs/avc/Documents/avcweb.pdf&quot;&gt;AVC
230 Patent Portfolio License Briefing&lt;/a&gt;, which states this about the
231 fees:&lt;/p&gt;
232
233 &lt;ul&gt;
234 &lt;li&gt;Where End User pays for AVC Video
235 &lt;ul&gt;
236 &lt;li&gt;Subscription (not limited by title) – 100,000 or fewer
237 subscribers/yr = no royalty; &amp;gt; 100,000 to 250,000 subscribers/yr =
238 $25,000; &amp;gt;250,000 to 500,000 subscribers/yr = $50,000; &amp;gt;500,000 to
239 1M subscribers/yr = $75,000; &amp;gt;1M subscribers/yr = $100,000&lt;/li&gt;
240
241 &lt;li&gt;Title-by-Title - 12 minutes or less = no royalty; &amp;gt;12 minutes in
242 length = lower of (a) 2% or (b) $0.02 per title&lt;/li&gt;
243 &lt;/ul&gt;&lt;/li&gt;
244
245 &lt;li&gt;Where remuneration is from other sources
246 &lt;ul&gt;
247 &lt;li&gt;Free Television - (a) one-time $2,500 per transmission encoder or
248 (b) annual fee starting at $2,500 for &amp;gt; 100,000 HH rising to
249 maximum $10,000 for &amp;gt;1,000,000 HH&lt;/li&gt;
250
251 &lt;li&gt;Internet Broadcast AVC Video (not title-by-title, not subscription)
252 – no royalty for life of the AVC Patent Portfolio License&lt;/li&gt;
253 &lt;/ul&gt;&lt;/li&gt;
254 &lt;/ul&gt;
255
256 &lt;p&gt;Am I correct in assuming that the four categories listed is the
257 categories used when selecting licensing terms, and that &quot;Internet
258 Broadcast AVC Video&quot; is the category for things that do not fall into
259 one of the other three categories? Can you point me to a good source
260 explaining what is ment by &quot;title-by-title&quot; and &quot;Free Television&quot; in
261 the license terms for AVC/H.264?&lt;/p&gt;
262
263 &lt;p&gt;Will a web service providing H.264 encoded video content in a
264 &quot;video on demand&quot; fashing similar to Youtube and Vimeo, where no
265 subscription is required and no payment is required from end users to
266 get access to the videos, fall under the terms of the &quot;Internet
267 Broadcast AVC Video&quot;, ie no royalty for life of the AVC Patent
268 Portfolio license? Does it matter if some users are subscribed to get
269 access to personalized services?&lt;/p&gt;
270
271 &lt;p&gt;Note, this request and all answers will be published on the
272 Internet.&lt;/p&gt;
273 &lt;/blockquote&gt;&lt;/p&gt;
274
275 &lt;p&gt;The answer came quickly from Benjamin J. Myers, Licensing Associate
276 with the MPEG LA:&lt;/p&gt;
277
278 &lt;p&gt;&lt;blockquote&gt;
279 &lt;p&gt;Thank you for your message and for your interest in MPEG LA. We
280 appreciate hearing from you and I will be happy to assist you.&lt;/p&gt;
281
282 &lt;p&gt;As you are aware, MPEG LA offers our AVC Patent Portfolio License
283 which provides coverage under patents that are essential for use of
284 the AVC/H.264 Standard (MPEG-4 Part 10). Specifically, coverage is
285 provided for end products and video content that make use of AVC/H.264
286 technology. Accordingly, the party offering such end products and
287 video to End Users concludes the AVC License and is responsible for
288 paying the applicable royalties.&lt;/p&gt;
289
290 &lt;p&gt;Regarding Internet Broadcast AVC Video, the AVC License generally
291 defines such content to be video that is distributed to End Users over
292 the Internet free-of-charge. Therefore, if a party offers a service
293 which allows users to upload AVC/H.264 video to its website, and such
294 AVC Video is delivered to End Users for free, then such video would
295 receive coverage under the sublicense for Internet Broadcast AVC
296 Video, which is not subject to any royalties for the life of the AVC
297 License. This would also apply in the scenario where a user creates a
298 free online account in order to receive a customized offering of free
299 AVC Video content. In other words, as long as the End User is given
300 access to or views AVC Video content at no cost to the End User, then
301 no royalties would be payable under our AVC License.&lt;/p&gt;
302
303 &lt;p&gt;On the other hand, if End Users pay for access to AVC Video for a
304 specific period of time (e.g., one month, one year, etc.), then such
305 video would constitute Subscription AVC Video. In cases where AVC
306 Video is delivered to End Users on a pay-per-view basis, then such
307 content would constitute Title-by-Title AVC Video. If a party offers
308 Subscription or Title-by-Title AVC Video to End Users, then they would
309 be responsible for paying the applicable royalties you noted below.&lt;/p&gt;
310
311 &lt;p&gt;Finally, in the case where AVC Video is distributed for free
312 through an &quot;over-the-air, satellite and/or cable transmission&quot;, then
313 such content would constitute Free Television AVC Video and would be
314 subject to the applicable royalties.&lt;/p&gt;
315
316 &lt;p&gt;For your reference, I have attached
317 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2015-07-07-mpegla.pdf&quot;&gt;a
318 .pdf copy of the AVC License&lt;/a&gt;. You will find the relevant
319 sublicense information regarding AVC Video in Sections 2.2 through
320 2.5, and the corresponding royalties in Section 3.1.2 through 3.1.4.
321 You will also find the definitions of Title-by-Title AVC Video,
322 Subscription AVC Video, Free Television AVC Video, and Internet
323 Broadcast AVC Video in Section 1 of the License. Please note that the
324 electronic copy is provided for informational purposes only and cannot
325 be used for execution.&lt;/p&gt;
326
327 &lt;p&gt;I hope the above information is helpful. If you have additional
328 questions or need further assistance with the AVC License, please feel
329 free to contact me directly.&lt;/p&gt;
330 &lt;/blockquote&gt;&lt;/p&gt;
331
332 &lt;p&gt;Having a fresh copy of the license text was useful, and knowing
333 that the definition of Title-by-Title required payment per title made
334 me aware that my earlier understanding of that phrase had been wrong.
335 But I still had a few questions:&lt;/p&gt;
336
337 &lt;p&gt;&lt;blockquote&gt;
338 &lt;p&gt;I have a small followup question. Would it be possible for me to get
339 a license with MPEG LA even if there are no royalties to be paid? The
340 reason I ask, is that some video related products have a copyright
341 clause limiting their use without a license with MPEG LA. The clauses
342 typically look similar to this:
343
344 &lt;p&gt;&lt;blockquote&gt;
345 This product is licensed under the AVC patent portfolio license for
346 the personal and non-commercial use of a consumer to (a) encode
347 video in compliance with the AVC standard (&quot;AVC video&quot;) and/or (b)
348 decode AVC video that was encoded by a consumer engaged in a
349 personal and non-commercial activity and/or AVC video that was
350 obtained from a video provider licensed to provide AVC video. No
351 license is granted or shall be implied for any other use. additional
352 information may be obtained from MPEG LA L.L.C.
353 &lt;/blockquote&gt;&lt;/p&gt;
354
355 &lt;p&gt;It is unclear to me if this clause mean that I need to enter into
356 an agreement with MPEG LA to use the product in question, even if
357 there are no royalties to be paid to MPEG LA. I suspect it will
358 differ depending on the jurisdiction, and mine is Norway. What is
359 MPEG LAs view on this?&lt;/p&gt;
360 &lt;/blockquote&gt;&lt;/p&gt;
361
362 &lt;p&gt;According to the answer, MPEG LA believe those using such tools for
363 non-personal or commercial use need a license with them:&lt;/p&gt;
364
365 &lt;p&gt;&lt;blockquote&gt;
366
367 &lt;p&gt;With regard to the Notice to Customers, I would like to begin by
368 clarifying that the Notice from Section 7.1 of the AVC License
369 reads:&lt;/p&gt;
370
371 &lt;p&gt;THIS PRODUCT IS LICENSED UNDER THE AVC PATENT PORTFOLIO LICENSE FOR
372 THE PERSONAL USE OF A CONSUMER OR OTHER USES IN WHICH IT DOES NOT
373 RECEIVE REMUNERATION TO (i) ENCODE VIDEO IN COMPLIANCE WITH THE AVC
374 STANDARD (&quot;AVC VIDEO&quot;) AND/OR (ii) DECODE AVC VIDEO THAT WAS ENCODED
375 BY A CONSUMER ENGAGED IN A PERSONAL ACTIVITY AND/OR WAS OBTAINED FROM
376 A VIDEO PROVIDER LICENSED TO PROVIDE AVC VIDEO. NO LICENSE IS GRANTED
377 OR SHALL BE IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE
378 OBTAINED FROM MPEG LA, L.L.C. SEE HTTP://WWW.MPEGLA.COM&lt;/p&gt;
379
380 &lt;p&gt;The Notice to Customers is intended to inform End Users of the
381 personal usage rights (for example, to watch video content) included
382 with the product they purchased, and to encourage any party using the
383 product for commercial purposes to contact MPEG LA in order to become
384 licensed for such use (for example, when they use an AVC Product to
385 deliver Title-by-Title, Subscription, Free Television or Internet
386 Broadcast AVC Video to End Users, or to re-Sell a third party&#39;s AVC
387 Product as their own branded AVC Product).&lt;/p&gt;
388
389 &lt;p&gt;Therefore, if a party is to be licensed for its use of an AVC
390 Product to Sell AVC Video on a Title-by-Title, Subscription, Free
391 Television or Internet Broadcast basis, that party would need to
392 conclude the AVC License, even in the case where no royalties were
393 payable under the License. On the other hand, if that party (either a
394 Consumer or business customer) simply uses an AVC Product for their
395 own internal purposes and not for the commercial purposes referenced
396 above, then such use would be included in the royalty paid for the AVC
397 Products by the licensed supplier.&lt;/p&gt;
398
399 &lt;p&gt;Finally, I note that our AVC License provides worldwide coverage in
400 countries that have AVC Patent Portfolio Patents, including
401 Norway.&lt;/p&gt;
402
403 &lt;p&gt;I hope this clarification is helpful. If I may be of any further
404 assistance, just let me know.&lt;/p&gt;
405 &lt;/blockquote&gt;&lt;/p&gt;
406
407 &lt;p&gt;The mentioning of Norwegian patents made me a bit confused, so I
408 asked for more information:&lt;/p&gt;
409
410 &lt;p&gt;&lt;blockquote&gt;
411
412 &lt;p&gt;But one minor question at the end. If I understand you correctly,
413 you state in the quote above that there are patents in the AVC Patent
414 Portfolio that are valid in Norway. This make me believe I read the
415 list available from &amp;lt;URL:
416 &lt;a href=&quot;http://www.mpegla.com/main/programs/AVC/Pages/PatentList.aspx&quot;&gt;http://www.mpegla.com/main/programs/AVC/Pages/PatentList.aspx&lt;/a&gt;
417 &amp;gt; incorrectly, as I believed the &quot;NO&quot; prefix in front of patents
418 were Norwegian patents, and the only one I could find under Mitsubishi
419 Electric Corporation expired in 2012. Which patents are you referring
420 to that are relevant for Norway?&lt;/p&gt;
421
422 &lt;/blockquote&gt;&lt;/p&gt;
423
424 &lt;p&gt;Again, the quick answer explained how to read the list of patents
425 in that list:&lt;/p&gt;
426
427 &lt;p&gt;&lt;blockquote&gt;
428
429 &lt;p&gt;Your understanding is correct that the last AVC Patent Portfolio
430 Patent in Norway expired on 21 October 2012. Therefore, where AVC
431 Video is both made and Sold in Norway after that date, then no
432 royalties would be payable for such AVC Video under the AVC License.
433 With that said, our AVC License provides historic coverage for AVC
434 Products and AVC Video that may have been manufactured or Sold before
435 the last Norwegian AVC patent expired. I would also like to clarify
436 that coverage is provided for the country of manufacture and the
437 country of Sale that has active AVC Patent Portfolio Patents.&lt;/p&gt;
438
439 &lt;p&gt;Therefore, if a party offers AVC Products or AVC Video for Sale in
440 a country with active AVC Patent Portfolio Patents (for example,
441 Sweden, Denmark, Finland, etc.), then that party would still need
442 coverage under the AVC License even if such products or video are
443 initially made in a country without active AVC Patent Portfolio
444 Patents (for example, Norway). Similarly, a party would need to
445 conclude the AVC License if they make AVC Products or AVC Video in a
446 country with active AVC Patent Portfolio Patents, but eventually Sell
447 such AVC Products or AVC Video in a country without active AVC Patent
448 Portfolio Patents.&lt;/p&gt;
449 &lt;/blockquote&gt;&lt;/p&gt;
450
451 &lt;p&gt;As far as I understand it, MPEG LA believe anyone using Adobe
452 Premiere and other video related software with a H.264 distribution
453 license need a license agreement with MPEG LA to use such tools for
454 anything non-private or commercial, while it is OK to set up a
455 Youtube-like service as long as no-one pays to get access to the
456 content. I still have no clear idea how this applies to Norway, where
457 none of the patents MPEG LA is licensing are valid. Will the
458 copyright terms take precedence or can those terms be ignored because
459 the patents are not valid in Norway?&lt;/p&gt;
460 </description>
461 </item>
462
463 <item>
464 <title>Hva gjør at NRK kan distribuere H.264-video uten patentavtale med MPEG LA?</title>
465 <link>http://people.skolelinux.org/pere/blog/Hva_gj_r_at_NRK_kan_distribuere_H_264_video_uten_patentavtale_med_MPEG_LA_.html</link>
466 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Hva_gj_r_at_NRK_kan_distribuere_H_264_video_uten_patentavtale_med_MPEG_LA_.html</guid>
467 <pubDate>Wed, 10 Jun 2015 15:20:00 +0200</pubDate>
468 <description>&lt;p&gt;Helt siden jeg i 2012 fikk beskjed fra MPEG LA om at
469 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/MPEG_LA_mener_NRK_m__ha_avtale_med_dem_for___kringkaste_og_publisere_H_264_video.html&quot;&gt;NRK
470 trengte patentavtale med dem&lt;/a&gt; hvis de distribuerte H.264-video til
471 sluttbrukere, har jeg lurt på hva som gjør at NRK ikke har slik
472 avtale. For noen dager siden fikk jeg endelig gjort noe med min
473 undring, og sendte 2015-05-28 følgende epost til info (at) nrk.no med
474 tittel &quot;Hva gjør at NRK kan distribuere H.264-video uten patentavtale
475 med MPEG LA?&quot;:&lt;/p&gt;
476
477 &lt;p&gt;&lt;blockquote&gt;
478 &lt;p&gt;Jeg lurer på en ting rundt NRKs bruk av H.264-video på sine
479 websider samt distribusjon via RiksTV og kabel-TV. Har NRK vurdert om
480 det er behov for en patentavtale med
481 &lt;a href=&quot;http://www.mpegla.com/&quot;&gt;MPEG LA&lt;/a&gt; slik det står i
482 programvarelisensene til blant annet Apple Final Cut Studio, Adobe
483 Premiere Pro, Avid og Apples Final Cut Pro X?&lt;/p&gt;
484
485 &lt;p&gt;Hvis dere har vurdert dette, hva var utfallet av en slik vurdering?&lt;/p&gt;
486
487 &lt;p&gt;Hvis dere ikke har vurdert dette, har NRK planer om å vurdere behovet
488 for patentavtale?&lt;/p&gt;
489
490 &lt;p&gt;I følge en artikkel på
491 &lt;a href=&quot;https://nrkbeta.no/2012/02/01/siste-kutt-for-final-cut/&quot;&gt;NRK
492 Beta i 2012&lt;/a&gt; har NRK brukt eller testet både Apple Final Cut
493 Studio, Adobe Premiere Pro, Avid og Apples Final Cut Pro X til bruk
494 for å redigere video før sending. Alle disse har bruksvilkår
495 understøttet av opphavsretten som sier at de kun kan brukes til å lage
496 filmer til personlig og ikke-kommersiell bruk - med mindre en har en
497 lisensavtale med MPEG LA om bruk av patenter utstedt i USA for H.264.
498 Se f.eks. &lt;a href=&quot;http://www.avid.com/static/resources/common/documents/corporate/LICENSE.pdf&quot;&gt;bruksvilkårene for Avid&lt;/a&gt;, &lt;a href=&quot;http://news.cnet.com/8301-30685_3-20000101-264.html&quot;&gt;Adobe Premiere&lt;/a&gt; og &lt;a href=&quot;http://images.apple.com/legal/sla/docs/finalcutstudio2.pdf&quot;&gt;Apple Final
499 Cut Studio&lt;/a&gt; og søk etter &quot;MPEG LA&quot;.&lt;/p&gt;
500
501 &lt;p&gt;Dette får meg til å lure på om det er brudd på opphavsretten å bruke
502 disse verktøyene i strid med bruksvilkårene uten patentavtale med MPEG
503 LA. Men NRK bruker jo tilsynelatende disse verktøyene uten patentavtale
504 med MPEG LA.&lt;/p&gt;
505
506 &lt;p&gt;I følge forfatteren av Open Broadcast Encoder finnes det to typer
507 H.264-relaterte avtaler en kan få med MPEG LA. Det er én for å lage
508 programvare og utstyr som produserer H.264-video, og en annen for å
509 kringkaste video som bruker H.264. Dette forteller meg at selv om
510 produsentene av utstyr og programvare som NRK bruker har en slik avtale
511 med MPEG LA, så trenges det en egen avtale for å kringkaste video på det
512 formatet.&lt;/p&gt;
513
514 &lt;p&gt;I følge Ryan Rodriguez hos MPEG LA, da jeg spurte ham på epost i
515 juni 2012, har NRK ikke en slik avtale med MPEG LA. Han sa videre at
516 NRK trenger en slik avtale hvis NRK tilbyr H.264-kodet video til
517 sluttbrukere. Jeg sjekket listen med
518 &lt;a href=&quot;http://www.mpegla.com/main/programs/AVC/Pages/Licensees.aspx&quot;&gt;organisasjoner
519 med avtale med MPEG LA&lt;/a&gt; og NRK står fortsatt ikke der.&lt;/p&gt;
520
521 &lt;p&gt;Jeg lurer dermed på hva som gjør at NRK kan bruke de overnevnte
522 videoredigeringsverktøyene, som tilsynelatende har krav om avtale med
523 MPEG LA for å kunne brukes slik NRK bruker dem, til å lage videofiler
524 for distribusjon uten å ha en avtale med MPEG LA om distribusjon av
525 H.264-video? Dette er spesielt interessant å vite for oss andre som
526 også vurderer å spre H.264-video etter å ha redigert dem med disse mye
527 brukte videoredigeringsverktøyene.&lt;/p&gt;
528 &lt;/blockquote&gt;&lt;/p&gt;
529
530 &lt;p&gt;Samme dag fikk jeg automatisk svar om at min henvendelse hadde fått
531 saksid 1294699. Jeg fikk deretter følgende respons fra NRK
532 2015-06-09:&lt;/p&gt;
533
534 &lt;p&gt;&lt;blockquote&gt;
535 &lt;p&gt;Hei, beklager lang svartid, men det tok litt tid å finne ut hvem som kunne
536 svare på dette.&lt;/p&gt;
537
538 &lt;p&gt;For selskaper som leverer h.264 til sluttbrukere på nett (f.eks
539 NRKs nett- tv utgaver som bruker h.264) - og som leverer slike
540 tjenester uten betaling fra forbrukere – er det heller ikke påkrevd
541 noen patentavtale.&lt;/p&gt;
542
543 &lt;p&gt;&lt;a href=&quot;http://www.businesswire.com/news/home/20100825006629/en/MPEG-LA%E2%80%99s-AVC-License-Charge-Royalties-Internet#.VWb2ws_774Y&quot;&gt;http://www.businesswire.com/news/home/20100825006629/en/MPEG-LA%E2%80%99s-AVC-License-Charge-Royalties-Internet#.VWb2ws_774Y&lt;/a&gt;&lt;/p&gt;
544
545 &lt;p&gt;Med vennlig hilsen
546 &lt;br&gt;Gunn Helen Berg
547 &lt;br&gt;Informasjonskonsulent, Publikumsservice&lt;/p&gt;
548
549 &lt;p&gt;NRK
550 &lt;br&gt;Strategidivisjonen
551 &lt;Br&gt;Sentralbord: +47 23 04 70 00
552 &lt;br&gt;Post: NRK Publikumsservice, 8608 Mo i Rana
553 &lt;br&gt;nrk.no / info (at) nrk.no&lt;/p&gt;
554 &lt;/blockquote&gt;&lt;/p&gt;
555
556 Da dette ikke helt var svar på det jeg lurte på, sendte jeg samme dag
557 oppfølgerepost tilbake:
558
559 &lt;p&gt;&lt;blockquote&gt;
560 &lt;p&gt;[Gunn Helen Berg]
561 &lt;br&gt;&gt; Hei, beklager lang svartid, men det tok litt tid å finne ut hvem som
562 &lt;br&gt;&gt; kunne svare på dette.&lt;/p&gt;
563
564 &lt;p&gt;Takk for svar. Men det besvarte ikke helt det jeg spurte om.&lt;/p&gt;
565
566 &lt;p&gt;&gt; For selskaper som leverer h.264 til sluttbrukere på nett (f.eks NRKs
567 &lt;br&gt;&gt; nett- tv utgaver som bruker h.264) - og som leverer slike tjenester
568 &lt;br&gt;&gt; uten betaling fra forbrukere – er det heller ikke påkrevd noen
569 &lt;br&gt;&gt; patentavtale.
570 &lt;br&gt;&gt;
571 &lt;br&gt;&gt; http://www.businesswire.com/news/home/20100825006629/en/MPEG-LA%E2%80%99s-AVC-License-Charge-Royalties-Internet#.VWb2ws_774Y&lt;/p&gt;
572
573 &lt;p&gt;Spørsmålet er ikke kun om MPEG LA krever patentavtale eller ikke
574 (hvilket ikke helt besvares av pressemeldingen omtalt over, gitt at
575 pressemeldingen kom i 2010, to år før MPEG LA ansvarlige for
576 internasjonal lisensiering egen Ryan Rodriguez fortalte meg på epost
577 at NRK trenger en lisens.&lt;/p&gt;
578
579 &lt;p&gt;Det er uklart fra pressemeldingen hva &quot;Internet Broadcast AVC
580 Video&quot; konkret betyr, men i følge en
581 &lt;a href=&quot;http://www.mpegla.com/main/programs/avc/Documents/avcweb.pdf&quot;&gt;presentasjon
582 fra MPEG LA med tema &quot;AVC PAtent Portfoli License Briefing&quot; datert
583 2015-05-15&lt;/a&gt; gjelder &quot;Internet Broadcast AVC Video&quot; kun kringkasting
584 på Internet som ikke tilbyr valg av enkeltinnslag (&quot;not
585 title-by-title&quot;), hvilket jo NRK gjør på sine nettsider. I tillegg
586 kringkaster jo NRK H.264-video også utenom Internet (RiksTV, kabel,
587 satelitt), hvilket helt klart ikke er dekket av vilkårene omtalt i
588 pressemeldingen.&lt;/p&gt;
589
590 &lt;p&gt;Spørsmålet mitt er hvordan NRK kan bruke verktøy med bruksvilkår
591 som krever avtale med MPEG LA for det NRK bruker dem til, når NRK ikke
592 har avtale med MPEG LA. Hvis jeg forsto spørsmålet riktig, så mener
593 NRK at dere ikke trenger avtale med MPEG LA, men uten slik avtale kan
594 dere vel ikke bruke hverken Apple Final Cut Studio, Adobe Premiere
595 Pro, Avid eller Apples Final Cut Pro X for å redigere video før
596 sending?&lt;/p&gt;
597
598 &lt;p&gt;Mine konkrete spørsmål var altså:&lt;/p&gt;
599
600 &lt;ul&gt;
601
602 &lt;li&gt;Hvis NRK har vurdert om det er behov for en patentavtale med MPEG LA
603 slik det er krav om i programvarelisensene til blant annet Apple
604 Final Cut Studio, Adobe Premiere Pro, Avid og Apples Final Cut Pro X,
605 hva var utfallet av en slik vurdering? Kan jeg få kopi av vurderingen
606 hvis den er gjort skriftlig?&lt;/li&gt;
607
608 &lt;li&gt;Hvis NRK ikke har vurdert dette, har NRK planer om å vurdere behovet
609 for patentavtale?&lt;/li&gt;
610
611 &lt;li&gt;Hva slags saksnummer fikk min henvendelse i NRKs offentlige
612 postjournal? Jeg ser at postjournalen ikke er publisert for den
613 aktuelle perioden ennå, så jeg fikk ikke sjekket selv.&lt;/li&gt;
614
615 &lt;/ul&gt;
616 &lt;/blockquote&gt;&lt;/p&gt;
617
618 &lt;p&gt;Det hjelper å ha funnet rette vedkommende i NRK, for denne gangen
619 fikk jeg svar tilbake dagen etter (2015-06-10), fra Geir Børdalen i
620 NRK:&lt;/p&gt;
621
622 &lt;p&gt;&lt;blockquote&gt;
623 &lt;p&gt;Hei Petter Reinholdtsen&lt;/p&gt;
624
625 &lt;p&gt;Jeg har sjekket saken med distribusjonssjef for tv, Arild Hellgren
626 (som var teknologidirektør da bakkenettet ble satt opp). NRK v/
627 Hellgren hadde møte med MPEG LA sammen med den europeiske
628 kringkastingsunionen EBU før bakkenettet for TV ble satt opp
629 (igangsatt høsten 2007). I dette møtet ble det avklart at NRK/EBU ikke
630 trengte noen patentavtale for h.264 i forbindelse med oppsett av
631 bakkenettet eller bruk av MPEG4 h.264 som kompresjonsalgoritme fordi
632 tjenesten «in full»(nor: helt) var betalt av utsendelseselskapene og
633 ikke av forbrukerne.&lt;/p&gt;
634
635 &lt;p&gt;&lt;a href=&quot;http://www.nrk.no/oppdrag/digitalt-bakkenett-1.3214555&quot;&gt;http://www.nrk.no/oppdrag/digitalt-bakkenett-1.3214555&lt;/a&gt;&lt;/p&gt;
636
637 &lt;p&gt;Det er også klart slått fast at selskaper som leverer video basert
638 på MPEG4 h.264 til sluttbrukere på nett, heller ikke påkrevd noen
639 patentavtale – så lenge de leverer slike tjenester uten betaling fra
640 sluttbrukere.&lt;/p&gt;
641
642 &lt;a href=&quot;http://www.businesswire.com/news/home/20100825006629/en/MPEG-LA%E2%80%99s-AVC-License-Charge-Royalties-Internet#.VWb2ws_774Y&quot;&gt;http://www.businesswire.com/news/home/20100825006629/en/MPEG-LA%E2%80%99s-AVC-License-Charge-Royalties-Internet#.VWb2ws_774Y&lt;/a&gt;
643
644 &lt;p&gt;“MPEG LA announced today that its AVC Patent Portfolio License will
645 continue not to charge royalties for Internet Video that is free to
646 end users (known as “Internet Broadcast AVC Video”) during the entire
647 life of this License. MPEG LA previously announced it would not charge
648 royalties for such video through December 31, 2015 (see
649 &lt;a href=&quot;http://www.mpegla.com/Lists/MPEG%20LA%20News%20List/Attachments/226/n-10-02-02.pdf&quot;&gt;http://www.mpegla.com/Lists/MPEG%20LA%20News%20List/Attachments/226/n-10-02-02.pdf&lt;/a&gt;),
650 and today’s announcement makes clear that royalties will continue not
651 to be charged for such video beyond that time. Products and services
652 other than Internet Broadcast AVC Video continue to be
653 royalty-bearing.”&lt;/p&gt;
654
655 &lt;p&gt;Vi har derfor ikke noe behov for å vurdere noen patentavtale med
656 MPEG LA.&lt;/p&gt;
657
658 &lt;p&gt;Understreker for øvrig at NRK ikke er låst til MPEG4 – h.264 som
659 utsendelsesformat – og at vi har brukt og bruker flere andre
660 alternativer i våre tjenester. Ulike «devicer» har ofte behov for
661 forskjellige løsninger – og NRK har forsøkt å levere med best mulig
662 kvalitet /økonomi /stabilitet avhengig av
663 plattform. Produksjonsformater i NRK spenner for øvrig over en rekke
664 forskjellige formater – hvor MPEG4 bare er en av disse. Når NRK kjøper
665 teknisk utstyr er betaling for kodekstøtte ofte en del av
666 anskaffelsesprisen for denne maskinvaren (enten dette er spesialiserte
667 enkodere eller forskjellige typer produksjonsutstyr).&lt;/p&gt;
668
669 &lt;p&gt;Vennlig hilsen
670 &lt;br&gt;Geir Børdalen&lt;/p&gt;
671
672 &lt;p&gt;________________________________________
673 &lt;br&gt;Geir Børdalen
674 &lt;br&gt;Investeringsansvarlig NRK / Hovedprosjektleder - Origo
675 &lt;br&gt;Avdeling for utvikling, innovasjon, investering og eiendom
676 &lt;br&gt;NRK medietjenester
677 &lt;br&gt;Sentralbord: +47 23 04 70 00
678 &lt;br&gt;Post: NRK, AUTV (RBM5), Pb. 8500 Majorstuen, 0340 Oslo
679 &lt;br&gt;nrk.no
680 &lt;/blockquote&gt;&lt;/p&gt;
681
682 &lt;p&gt;Et godt og grundig svar, som var informativt om hvordan NRK tenker
683 rundt patentavtale med MPEG LA, men heller ikke helt besvarte det jeg
684 lurte på, så jeg sendte epostoppfølging samme dag.&lt;/p&gt;
685
686 &lt;p&gt;&lt;blockquote&gt;
687 &lt;p&gt;[Geir Børdalen]
688 &lt;br&gt;&gt; Hei Petter Reinholdtsen&lt;/p&gt;
689
690 &lt;p&gt;Hei, og takk for raskt svar. Er min henvendelse journalført slik
691 at den dukker opp i NRKs postjournal?&lt;/p&gt;
692
693 &lt;p&gt;Svaret ditt var meget nyttig, og jeg forstår ut fra det du skriver
694 at avklaringen med MPEG LA rundt H.264-distribusjon via bakkenettet
695 gjelder alle TV-kanaler i Norge. Hvilke saksnummer fikk dokumenter
696 som ble opprettet i forbindelse med det omtalte møtet NRK v/Hellgren
697 og EBU hadde med MPEG LA (dvs. referater, avtaler, etc),
698 f.eks. dokumentet der formuleringen &quot;in full&quot; som du omtaler
699 finnes?&lt;p&gt;
700
701 &lt;p&gt;Men det er et par ting jeg fortsatt ikke forstår. Det ene er
702 hvorfor NRKs forståelse av hva &quot;Internet Broadcast AVC Video&quot; dekker
703 ser ut til å avvike fra det som presenteres i
704 &lt;a href=&quot;http://www.mpegla.com/main/programs/avc/Documents/avcweb.pdf&quot;&gt;lysark
705 fra MPEG LA&lt;/a&gt; i mai, der MPEG LA på lysark med overskriften
706 &quot;AVC/H.264 License Terms Participation Fees&quot; og undertittel &quot;Where
707 remuneration is from other sources&quot; skriver &quot;Internet Broadcast AVC
708 Video (not title-by-title, not subscription) – no royalty for life of
709 the AVC Patent Portfolio License&quot;.&lt;/p&gt;
710
711 &lt;p&gt;Her leser jeg MPEG LA dithen at det kun er kringkasting uten
712 abonnement via Internet som er dekket at vilkårne omtalt i
713 pressemeldingen, mens jeg forstår deg dithen at NRK mener NRKs
714 nettsider som også har enkeltfilmer og innslag (som jeg forstår dekket
715 av formuleringen &quot;title-by-title&quot;) dekkes av &quot;Internet Broadcast AVC
716 Video&quot; fra MPEG LA. Hva baserer dere denne tolkningen på? Jeg har
717 ikke sett noe skriftlig fra MPEG LA som støtter NRKs tolkning, og
718 lurer på om dere har andre kilder enn den pressemeldingen fra 5 år
719 tilbake, der NRKS forståelse av hva &quot;Internet Broadcast AVC Video&quot;
720 dekker er beskrevet?&lt;/p&gt;
721
722 &lt;p&gt;Det andre er at eposten din ikke nevnte spørsmålet mitt om
723 bruksvilkårene til videoredigeringsverktøyene som NRK bruker. Disse
724 har som tidligere nevnt krav om at de kun skal brukes til private og
725 ikke-kommersielle formål med mindre en har avtale med MPEG LA, og uten
726 avtale med MPEG LA kan det jo virke som om NRK bruker verktøyene i
727 strid med bruksvilkårene. Hva gjør at disse bruksvilkårene ikke
728 gjelder for NRK?&lt;/p&gt;
729 &lt;/blockquote&gt;&lt;/p&gt;
730
731 &lt;p&gt;Noen minutter senere får jeg foreløpig siste svar i
732 føljetongen:&lt;/p&gt;
733
734 &lt;p&gt;&lt;blockquote&gt;
735 &lt;p&gt;Hei igjen&lt;/p&gt;
736
737 &lt;p&gt;Vårt dokumentarkiv har fått en kopi (journalføringsnr kan jeg
738 dessverre ikke gi deg).&lt;p&gt;
739
740 &lt;p&gt;&gt; Svaret ditt var meget nyttig, og jeg forstår ut fra det du
741 &lt;br&gt;&gt; skriver at avklaringen med MPEG LA rundt H.264-distribusjon via
742 &lt;br&gt;&gt; bakkenettet gjelder alle TV-kanaler i Norge.&lt;/p&gt;
743
744 &lt;p&gt;Svar: Kan ikke svare for andre enn for NRK/EBU - og for bakkenettet
745 i Norge er det kun NRK som er et lisensbasert selskap. Kan ikke gi noe
746 svar på saksnr på dokumenter eller ytterligere informasjon da jeg selv
747 ikke var del i dette.&lt;/p&gt;
748
749 &lt;p&gt;&gt; Men det er et par ting jeg fortsatt ikke forstår. ...&lt;/p&gt;
750
751 &lt;p&gt;Svar: Kan ikke gå ytterligere inn i dette fra min side og mitt
752 fagfelt som er produksjon/publisering og systemstrukturene bak
753 disse. For øvrig ligger det etter vår formening ingen begrensninger
754 for NRK i mulighetene til publisering mht til kodek i
755 produksjonssystemer. Som tidligere skrevet mener vi at NRK ikke
756 trenger noen avtale med MPEG LA og støtter oss til det vi allerede har
757 kommunisert i forrige epost.&lt;/p&gt;
758
759 &lt;p&gt;Mvh
760 &lt;br&gt;Geir Børdalen&lt;/p&gt;
761 &lt;/blockquote&gt;&lt;/p&gt;
762
763 &lt;p&gt;Det syntes vanskelig å komme videre når NRK ikke ønsker å gå inn i
764 problemstillingen rundt bruksvilkårene til videoredigeringsverktøyene
765 NRK bruker, så jeg sendte takk for svarene og avsluttet utvekslingen
766 så langt:&lt;/p&gt;
767
768 &lt;p&gt;&lt;blockquote&gt;
769 &lt;p&gt;Tusen takk for rask respons, og oppklarende forklaring om hvordan
770 NRK tenker rundt MPEG LA.&lt;/p&gt;
771
772 &lt;p&gt;Jeg vil høre med NRK-arkivet for å se om de kan spore opp de
773 omtalte dokumentene. Jeg setter pris på om du kan dele titler, dato
774 eller annen informasjon som kan gjøre det enklere for arkivet å finne
775 dem.&lt;/p&gt;
776
777 &lt;p&gt;Når det gjelder hvordan bruksvilkårene til
778 videoredigeringsverktøyene skal tolkes, så skal jeg høre med MPEG LA
779 og produsentene av verktøyene for å forsøke å få klarhet i hva de
780 mener er rikgig rettstilstand.&lt;/p&gt;
781 &lt;/blockquote&gt;&lt;/p&gt;
782
783 &lt;p&gt;Jeg ble litt klokere, men fortsatt er det uklart for meg hva som er
784 grunnlaget til NRK for å se bort fra bruksvilkår i
785 videoredigeringsprogramvare som krever MPEG LA-avtale til alt annet
786 enn privat og ikke-kommersiell bruk.&lt;/p&gt;
787 </description>
788 </item>
789
790 <item>
791 <title>En enklere Osloskolehverdag med automatisk sjekk av Fronter</title>
792 <link>http://people.skolelinux.org/pere/blog/En_enklere_Osloskolehverdag_med_automatisk_sjekk_av_Fronter.html</link>
793 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/En_enklere_Osloskolehverdag_med_automatisk_sjekk_av_Fronter.html</guid>
794 <pubDate>Thu, 12 Feb 2015 10:30:00 +0100</pubDate>
795 <description>&lt;p&gt;En stund nå har jeg vært nødt til å forholde meg til
796 &lt;a href=&quot;https://fronter.com/osloskoler/&quot;&gt;Fronter&lt;/a&gt;, en nettløsning
797 Osloskolen bruker for kontakt mellom hjem og skole. Løsningen
798 imponerer ikke, og det er lagt opp til at vi foreldre skal logge inn
799 regelmessig for å se om noe har endret seg. Idéen om å la folk stikke
800 innom nettsider for å se om det har skjedd endringer er så idiotisk at
801 jeg har lett etter et alternativ. Fronterløsningen har en innebygget
802 løsning der en kan abonnere på forsiden (som viser en oppsummering av
803 det en har tilgang til), og få tilsendt en kopi hver natt, men det
804 fjerner jo bare behovet for å stikke innom, ikke den idiotiske ideen
805 om at folk skal huske hvordan nettsiden så ut sist og oppdage hva som
806 er endret.&lt;/p&gt;
807
808 &lt;p&gt;For å gjøre livet enklere har jeg derfor brukt litt tid på å lage
809 et program som kobler seg opp og sjekker etter endringer automatisk,
810 slik at jeg kan få beskjed fra datamaskinen når noe endrer seg i
811 stedet for å forsøke å finne ut av det selv. I går ble scriptet
812 brukbart, og jeg er dermed klar til å dele det med deg.&lt;/p&gt;
813
814 &lt;p&gt;Jeg startet med å skrive programmet i Python, og hadde en versjon
815 som logget inn og hentet ned enkeltsider fra Fronter. Men
816 Fronter-websidene suger golfballer gjennom en hageslange, med
817 uleselig HTML, flere nivåer av iframes og en struktur på innholdet som
818 er svært vanskelig å finne ut av, så jeg ga til slutt opp lxml-parsing
819 med Python og forsøkte meg med WWW::Mechanize for Perl som jeg kjente
820 fra før. I ettertid har jeg oppdaget at WWW:Mechanize også finnes for
821 Python, så jeg kunne antagelig droppet språkbyttet. Men da jeg
822 oppdaget det hadde jeg kommet så langt med Perl-utgaven, så jeg hoppet
823 ikke tilbake.&lt;/p&gt;
824
825 &lt;p&gt;For å logge inn i Fronter besøker en enten skolens websider eller
826 den sentrale innloggingsiden &lt;tt&gt;https://fronter.com/osloskoler/&lt;/tt&gt;.
827 Perl-koden for å logge inn ser slik ut:&lt;/p&gt;
828
829 &lt;pre&gt;
830 my $mech = WWW::Mechanize-&gt;new();
831 $mech-&gt;get(&#39;https://fronter.com/osloskoler/&#39;);
832 $mech-&gt;submit_form(fields =&gt; {
833 username =&gt; $username,
834 password =&gt; $password,
835 } );
836 &lt;/pre&gt;
837
838 &lt;p&gt;Neste steg er å få oversikt over hvilke «rom» en har tilgang til.
839 På vår skole er det rom for skolen, biblioteket, elevrådet,
840 aktivitetsskolen og klasser der en har unger, og dette vil være
841 forskjellig fra person til person. Etter å ha romstert rundt i
842 Fronter-grensesnittet endel kom jeg over en grei HTML-side med
843 oversikt over rommene,
844 &lt;tt&gt;https://fronter.com/osloskoler/adm/projects.phtml?mode=displayRoomchooser&lt;/tt&gt;,
845 så jeg bruker denne til å hente ut romoversikt med rom-ID.&lt;/p&gt;
846
847 &lt;pre&gt;
848 my %room;
849 $mech-&gt;get(&#39;https://fronter.com/osloskoler/adm/projects.phtml?mode=displayRoomchooser&#39;);
850 for my $link ($mech-&gt;links()) {
851 my $url = $link-&gt;url();
852 if ($url =~ m%/links/list_files.phtml\?edit=(\d+)$%) {
853 $room{$link-&gt;text()} = $1;
854 }
855 }
856 &lt;/pre&gt;
857
858 &lt;p&gt;Når en har rom-ID kan en slå opp websiden for rommet, som starter
859
860 &lt;tt&gt;https://fronter.com/osloskoler/contentframeset.phtml?goto_prjid=$ROMID&lt;/tt&gt;
861 (der $ROMID byttes ut med rom-ID-tallet). Det gir en side med
862 iframes, og en må tre nivåer ned i iframes før en får tak i
863 HTML-informasjonen som vises frem når en ser på det aktuelle rommet.
864 Her ga jeg opp den robuste parsingen og hardkodet endel URL-er som i
865 stedet bør spores opp maskinelt. HTML-informasjonen som vises lagres
866 i en fil etter at økt- og innloggings-nøkkel er fjernet og deretter
867 bruker jeg &lt;tt&gt;lynx --dump --nolist&lt;/tt&gt; for å hente ut en tekstlig
868 utgave av websiden. Denne tekstlige utgaven sammenlignes med forrige
869 versjon og oversikt over endringer kan så sendes ut på egnet vis.&lt;/p&gt;
870
871 &lt;p&gt;Jeg valgte å bruke git til å holde rede på endringer, så jeg
872 sjekker inn HTML og tekst-utgaver i git og bruker git til å vise frem
873 endringene i tekstutgavene. Programvaren for å gjøre dette er testet
874 på Debian GNU/Linux og kan
875 &lt;a href=&quot;https://github.com/petterreinholdtsen/fronter-scraper-oslo&quot;&gt;lastes
876 ned fra github&lt;/a&gt;.&lt;/p&gt;
877
878 &lt;p&gt;For å bruke dette selv, kjør følgende kommandoer på din
879 Debian-maskin (forutsetter sudo-tilgang for installasjon av
880 programvare):&lt;/p&gt;
881
882 &lt;pre&gt;
883 sudo apt-get install git lynx-cur libio-prompter-perl libwww-mechanize-perl \
884 libconfig-inifiles-perl
885 git clone https://github.com/petterreinholdtsen/fronter-scraper-oslo
886 cd fronter-scraper-oslo
887 ./update-git
888 &lt;/pre&gt;
889
890 &lt;p&gt;Det gjenstår endel, men systemet er allerede nyttig for meg. Jeg
891 ønsker at systemet også skal laste ned PDF-er og slikt som er lagt ut
892 for nedlasting på sidene, slik at f.eks. ukeplaner kommer inn i
893 git-arkivet mitt automatisk og jeg får automatisk beskjed når ny
894 ukeplan er lagt ut. Kanskje du kan bidra med å få det på plass, eller
895 kanskje du har andre ting du vil fikse? Jeg tar gjerne imot endringer
896 og forbedringer. Det er mye som kan gjøres bedre, og scriptet er ikke
897 veldig robust mot endringer hos nettsidene til Fronter. Jeg regner
898 dermed med at det vil trengs oppdateringer jevnlig etter hvert som
899 Fronter-løsningen endrer seg.&lt;/p&gt;
900 </description>
901 </item>
902
903 <item>
904 <title>Hvordan vurderer regjeringen H.264-patentutfordringen?</title>
905 <link>http://people.skolelinux.org/pere/blog/Hvordan_vurderer_regjeringen_H_264_patentutfordringen_.html</link>
906 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Hvordan_vurderer_regjeringen_H_264_patentutfordringen_.html</guid>
907 <pubDate>Sun, 16 Nov 2014 10:30:00 +0100</pubDate>
908 <description>&lt;p&gt;For en stund tilbake spurte jeg Fornyingsdepartementet om hvilke
909 juridiske vurderinger rundt patentproblemstillingen som var gjort da
910 H.264 ble tatt inn i &lt;a href=&quot;http://standard.difi.no/&quot;&gt;statens
911 referansekatalog over standarder&lt;/a&gt;. Stig Hornnes i FAD tipset meg
912 om følgende som står i oppsumeringen til høringen om
913 referansekatalogen versjon 2.0, som jeg siden ved hjelp av en
914 innsynsforespørsel fikk tak i
915 &lt;a href=&quot;http://wiki.nuug.no/uttalelser/200901-standardkatalog-v2?action=AttachFile&amp;do=get&amp;target=kongelig-resolusjon.pdf&quot;&gt;PDF-utgaven av&lt;/a&gt;
916 datert 2009-06-03 (saksnummer 200803291, saksbehandler Henrik
917 Linnestad).&lt;/p&gt;
918
919 &lt;p&gt;Der står det følgende om problemstillingen:&lt;/p&gt;
920
921 &lt;p&gt;&lt;blockquote&gt;
922 &lt;strong&gt;4.4 Patentproblematikk&lt;/strong&gt;
923
924 &lt;p&gt;NUUG og Opera ser det som særlig viktig at forslagene knyttet til
925 lyd og video baserer seg på de royalty-frie standardene Vorbis, Theora
926 og FLAC.&lt;/p&gt;
927
928 &lt;p&gt;Kommentarene relaterer seg til at enkelte standarder er åpne, men
929 inneholder tekniske prosedyrer som det i USA (og noen andre land som
930 Japan) er gitt patentrettigheter til. I vårt tilfelle berører dette
931 spesielt standardene Mp3 og H.264, selv om Politidirektoratet peker på
932 at det muligens kan være tilsvarende problematikk også for Theora og
933 Vorbis. Dette medfører at det i USA kan kreves royalties for bruk av
934 tekniske løsninger knyttet til standardene, et krav som også
935 håndheves. Patenter kan imidlertid bare hevdes i de landene hvor
936 patentet er gitt, så amerikanske patenter gjelder ikke andre steder
937 enn USA.&lt;/p&gt;
938
939 &lt;p&gt;Spesielt for utvikling av fri programvare er patenter
940 problematisk. GPL, en &quot;grunnleggende&quot; lisens for distribusjon av fri
941 programvare, avviser at programvare kan distribueres under denne
942 lisensen hvis det inneholder referanser til patenterte rutiner som
943 utløser krav om royalties. Det er imidlertid uproblematisk å
944 distribuere fri programvareløsninger under GPL som benytter de
945 aktuelle standardene innen eller mellom land som ikke anerkjenner
946 patentene. Derfor finner vi også flere implementeringer av Mp3 og
947 H.264 som er fri programvare, lisensiert under GPL.&lt;/p&gt;
948
949 &lt;p&gt;I Norge og EU er patentlovgivningen langt mer restriktiv enn i USA,
950 men det er også her mulig å få patentert metoder for løsning av et
951 problem som relaterer seg til databehandling. Det er AIF bekjent ikke
952 relevante patenter i EU eller Norge hva gjelder H.264 og Mp3, men
953 muligheten for at det finnes patenter uten at det er gjort krav om
954 royalties eller at det senere vil gis slike patenter kan ikke helt
955 avvises.&lt;/p&gt;
956
957 &lt;p&gt;AIF mener det er et behov for å gi offentlige virksomheter mulighet
958 til å benytte antatt royaltyfrie åpne standarder som et likeverdig
959 alternativ eller i tillegg til de markedsledende åpne standardene.&lt;/p&gt;
960
961 &lt;/blockquote&gt;&lt;/p&gt;
962
963 &lt;p&gt;Det ser dermed ikke ut til at de har vurdert patentspørsmålet i
964 sammenheng med opphavsrettsvilkår slik de er formulert for f.eks.
965 Apple Final Cut Pro, Adobe Premiere Pro, Avid og Sorenson-verktøyene,
966 der det kreves brukstillatelse for patenter som ikke er gyldige i
967 Norge for å bruke disse verktøyene til annet en personlig og ikke
968 kommersiell aktivitet når det gjelder H.264-video. Jeg må nok lete
969 videre etter svar på det spørsmålet.&lt;/p&gt;
970 </description>
971 </item>
972
973 <item>
974 <title>Do you need an agreement with MPEG-LA to publish and broadcast H.264 video in Norway?</title>
975 <link>http://people.skolelinux.org/pere/blog/Do_you_need_an_agreement_with_MPEG_LA_to_publish_and_broadcast_H_264_video_in_Norway_.html</link>
976 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Do_you_need_an_agreement_with_MPEG_LA_to_publish_and_broadcast_H_264_video_in_Norway_.html</guid>
977 <pubDate>Mon, 25 Aug 2014 22:10:00 +0200</pubDate>
978 <description>&lt;p&gt;Two years later, I am still not sure if it is legal here in Norway
979 to use or publish a video in H.264 or MPEG4 format edited by the
980 commercially licensed video editors, without limiting the use to
981 create &quot;personal&quot; or &quot;non-commercial&quot; videos or get a license
982 agreement with &lt;a href=&quot;http://www.mpegla.com&quot;&gt;MPEG LA&lt;/a&gt;. If one
983 want to publish and broadcast video in a non-personal or commercial
984 setting, it might be that those tools can not be used, or that video
985 format can not be used, without breaking their copyright license. I
986 am not sure.
987 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Trenger_en_avtale_med_MPEG_LA_for___publisere_og_kringkaste_H_264_video_.html&quot;&gt;Back
988 then&lt;/a&gt;, I found that the copyright license terms for Adobe Premiere
989 and Apple Final Cut Pro both specified that one could not use the
990 program to produce anything else without a patent license from MPEG
991 LA. The issue is not limited to those two products, though. Other
992 much used products like those from Avid and Sorenson Media have terms
993 of use are similar to those from Adobe and Apple. The complicating
994 factor making me unsure if those terms have effect in Norway or not is
995 that the patents in question are not valid in Norway, but copyright
996 licenses are.&lt;/p&gt;
997
998 &lt;p&gt;These are the terms for Avid Artist Suite, according to their
999 &lt;a href=&quot;http://www.avid.com/US/about-avid/legal-notices/legal-enduserlicense2&quot;&gt;published
1000 end user&lt;/a&gt;
1001 &lt;a href=&quot;http://www.avid.com/static/resources/common/documents/corporate/LICENSE.pdf&quot;&gt;license
1002 text&lt;/a&gt; (converted to lower case text for easier reading):&lt;/p&gt;
1003
1004 &lt;p&gt;&lt;blockquote&gt;
1005 &lt;p&gt;18.2. MPEG-4. MPEG-4 technology may be included with the
1006 software. MPEG LA, L.L.C. requires this notice: &lt;/p&gt;
1007
1008 &lt;p&gt;This product is licensed under the MPEG-4 visual patent portfolio
1009 license for the personal and non-commercial use of a consumer for (i)
1010 encoding video in compliance with the MPEG-4 visual standard (“MPEG-4
1011 video”) and/or (ii) decoding MPEG-4 video that was encoded by a
1012 consumer engaged in a personal and non-commercial activity and/or was
1013 obtained from a video provider licensed by MPEG LA to provide MPEG-4
1014 video. No license is granted or shall be implied for any other
1015 use. Additional information including that relating to promotional,
1016 internal and commercial uses and licensing may be obtained from MPEG
1017 LA, LLC. See http://www.mpegla.com. This product is licensed under
1018 the MPEG-4 systems patent portfolio license for encoding in compliance
1019 with the MPEG-4 systems standard, except that an additional license
1020 and payment of royalties are necessary for encoding in connection with
1021 (i) data stored or replicated in physical media which is paid for on a
1022 title by title basis and/or (ii) data which is paid for on a title by
1023 title basis and is transmitted to an end user for permanent storage
1024 and/or use, such additional license may be obtained from MPEG LA,
1025 LLC. See http://www.mpegla.com for additional details.&lt;/p&gt;
1026
1027 &lt;p&gt;18.3. H.264/AVC. H.264/AVC technology may be included with the
1028 software. MPEG LA, L.L.C. requires this notice:&lt;/p&gt;
1029
1030 &lt;p&gt;This product is licensed under the AVC patent portfolio license for
1031 the personal use of a consumer or other uses in which it does not
1032 receive remuneration to (i) encode video in compliance with the AVC
1033 standard (“AVC video”) and/or (ii) decode AVC video that was encoded
1034 by a consumer engaged in a personal activity and/or was obtained from
1035 a video provider licensed to provide AVC video. No license is granted
1036 or shall be implied for any other use. Additional information may be
1037 obtained from MPEG LA, L.L.C. See http://www.mpegla.com.&lt;/p&gt;
1038 &lt;/blockquote&gt;&lt;/p&gt;
1039
1040 &lt;p&gt;Note the requirement that the videos created can only be used for
1041 personal or non-commercial purposes.&lt;/p&gt;
1042
1043 &lt;p&gt;The Sorenson Media software have
1044 &lt;a href=&quot;http://www.sorensonmedia.com/terms/&quot;&gt;similar terms&lt;/a&gt;:&lt;/p&gt;
1045
1046 &lt;p&gt;&lt;blockquote&gt;
1047
1048 &lt;p&gt;With respect to a license from Sorenson pertaining to MPEG-4 Video
1049 Decoders and/or Encoders: Any such product is licensed under the
1050 MPEG-4 visual patent portfolio license for the personal and
1051 non-commercial use of a consumer for (i) encoding video in compliance
1052 with the MPEG-4 visual standard (“MPEG-4 video”) and/or (ii) decoding
1053 MPEG-4 video that was encoded by a consumer engaged in a personal and
1054 non-commercial activity and/or was obtained from a video provider
1055 licensed by MPEG LA to provide MPEG-4 video. No license is granted or
1056 shall be implied for any other use. Additional information including
1057 that relating to promotional, internal and commercial uses and
1058 licensing may be obtained from MPEG LA, LLC. See
1059 http://www.mpegla.com.&lt;/p&gt;
1060
1061 &lt;p&gt;With respect to a license from Sorenson pertaining to MPEG-4
1062 Consumer Recorded Data Encoder, MPEG-4 Systems Internet Data Encoder,
1063 MPEG-4 Mobile Data Encoder, and/or MPEG-4 Unique Use Encoder: Any such
1064 product is licensed under the MPEG-4 systems patent portfolio license
1065 for encoding in compliance with the MPEG-4 systems standard, except
1066 that an additional license and payment of royalties are necessary for
1067 encoding in connection with (i) data stored or replicated in physical
1068 media which is paid for on a title by title basis and/or (ii) data
1069 which is paid for on a title by title basis and is transmitted to an
1070 end user for permanent storage and/or use. Such additional license may
1071 be obtained from MPEG LA, LLC. See http://www.mpegla.com for
1072 additional details.&lt;/p&gt;
1073
1074 &lt;/blockquote&gt;&lt;/p&gt;
1075
1076 &lt;p&gt;Some free software like
1077 &lt;a href=&quot;https://handbrake.fr/&quot;&gt;Handbrake&lt;/A&gt; and
1078 &lt;a href=&quot;http://ffmpeg.org/&quot;&gt;FFMPEG&lt;/a&gt; uses GPL/LGPL licenses and do
1079 not have any such terms included, so for those, there is no
1080 requirement to limit the use to personal and non-commercial.&lt;/p&gt;
1081 </description>
1082 </item>
1083
1084 <item>
1085 <title>Hvordan enkelt laste ned filmer fra NRK med den &quot;nye&quot; løsningen</title>
1086 <link>http://people.skolelinux.org/pere/blog/Hvordan_enkelt_laste_ned_filmer_fra_NRK_med_den__nye__l_sningen.html</link>
1087 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Hvordan_enkelt_laste_ned_filmer_fra_NRK_med_den__nye__l_sningen.html</guid>
1088 <pubDate>Mon, 16 Jun 2014 19:20:00 +0200</pubDate>
1089 <description>&lt;p&gt;Jeg har fortsatt behov for å kunne laste ned innslag fra NRKs
1090 nettsted av og til for å se senere når jeg ikke er på nett, men
1091 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Hvordan_enkelt_laste_ned_filmer_fra_NRK.html&quot;&gt;min
1092 oppskrift fra 2011&lt;/a&gt; sluttet å fungere da NRK byttet
1093 avspillermetode. I dag fikk jeg endelig lett etter oppdatert løsning,
1094 og jeg er veldig glad for å fortelle at den enkleste måten å laste ned
1095 innslag er å bruke siste versjon 2014.06.07 av
1096 &lt;a href=&quot;http://rg3.github.io/youtube-dl/&quot;&gt;youtube-dl&lt;/a&gt;. Støtten i
1097 youtube-dl &lt;a href=&quot;https://github.com/rg3/youtube-dl/issues/2980&quot;&gt;kom
1098 inn for 23 dager siden&lt;/a&gt; og
1099 &lt;a href=&quot;http://packages.qa.debian.org/y/youtube-dl.html&quot;&gt;versjonen i
1100 Debian&lt;/a&gt; fungerer fint også som backport til Debian Wheezy. Det er
1101 et lite problem, det håndterer kun URLer med små bokstaver, men hvis
1102 en har en URL med store bokstaver kan en bare gjøre alle store om til
1103 små bokstaver for å få youtube-dl til å laste ned. Rapporterte
1104 nettopp
1105 &lt;a href=&quot;https://github.com/rg3/youtube-dl/issues/2980&quot;&gt;problemet til
1106 utviklerne&lt;/a&gt;, og antar de får fikset det snart.&lt;/p&gt;
1107
1108 &lt;p&gt;Dermed er alt klart til å laste ned dokumentarene om
1109 &lt;a href=&quot;http://tv.nrk.no/program/KOID23005014/usas-hemmelige-avlytting&quot;&gt;USAs
1110 hemmelige avlytting&lt;/a&gt; og
1111 &lt;a href=&quot;http://tv.nrk.no/program/KOID23005114/selskapene-bak-usas-avlytting&quot;&gt;Selskapene
1112 bak USAs avlytting&lt;/a&gt;, i tillegg til
1113 &lt;a href=&quot;http://tv.nrk.no/program/KOID20005814/et-moete-med-edward-snowden&quot;&gt;intervjuet
1114 med Edward Snowden gjort av den tyske tv-kanalen ARD&lt;/a&gt;. Anbefaler
1115 alle å se disse, sammen med
1116 &lt;a href=&quot;http://media.ccc.de/browse/congress/2013/30C3_-_5713_-_en_-_saal_2_-_201312301130_-_to_protect_and_infect_part_2_-_jacob.html&quot;&gt;foredraget
1117 til Jacob Appelbaum på siste CCC-konferanse&lt;/a&gt;, for å forstå mer om
1118 hvordan overvåkningen av borgerne brer om seg.&lt;/p&gt;
1119
1120 &lt;p&gt;Takk til gode venner på foreningen NUUGs IRC-kanal
1121 &lt;a href=&quot;irc://irc.freenode.net/%23nuug&quot;&gt;#nuug på irc.freenode.net&lt;/a&gt;
1122 for tipsene som fikk meg i mål&lt;/a&gt;.&lt;/p&gt;
1123
1124 &lt;p&gt;&lt;strong&gt;Oppdatering 2014-06-17&lt;/strong&gt;: Etter at jeg publiserte
1125 denne, ble jeg tipset om bloggposten
1126 &quot;&lt;a href=&quot;http://ingvar.blog.redpill-linpro.com/2012/05/31/downloading-hd-content-from-tv-nrk-no/&quot;&gt;Downloading
1127 HD content from tv.nrk.no&lt;/a&gt;&quot; av Ingvar Hagelund, som har alternativ
1128 implementasjon og tips for å lage mkv-fil med undertekstene inkludert.
1129 Kanskje den passer bedre for deg? I tillegg ble feilen i youtube-dl
1130 ble fikset litt senere ut på dagen i går, samt at youtube-dl fikk
1131 støtte for å laste ned undertitler. Takk til Anders Einar Hilden for
1132 god innsats og youtube-dl-utviklerne for rask respons.&lt;/p&gt;
1133 </description>
1134 </item>
1135
1136 <item>
1137 <title>Half the Coverity issues in Gnash fixed in the next release</title>
1138 <link>http://people.skolelinux.org/pere/blog/Half_the_Coverity_issues_in_Gnash_fixed_in_the_next_release.html</link>
1139 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Half_the_Coverity_issues_in_Gnash_fixed_in_the_next_release.html</guid>
1140 <pubDate>Tue, 29 Apr 2014 14:20:00 +0200</pubDate>
1141 <description>&lt;p&gt;I&#39;ve been following &lt;a href=&quot;http://www.getgnash.org/&quot;&gt;the Gnash
1142 project&lt;/a&gt; for quite a while now. It is a free software
1143 implementation of Adobe Flash, both a standalone player and a browser
1144 plugin. Gnash implement support for the AVM1 format (and not the
1145 newer AVM2 format - see
1146 &lt;a href=&quot;http://lightspark.github.io/&quot;&gt;Lightspark&lt;/a&gt; for that one),
1147 allowing several flash based sites to work. Thanks to the friendly
1148 developers at Youtube, it also work with Youtube videos, because the
1149 Javascript code at Youtube detect Gnash and serve a AVM1 player to
1150 those users. :) Would be great if someone found time to implement AVM2
1151 support, but it has not happened yet. If you install both Lightspark
1152 and Gnash, Lightspark will invoke Gnash if it find a AVM1 flash file,
1153 so you can get both handled as free software. Unfortunately,
1154 Lightspark so far only implement a small subset of AVM2, and many
1155 sites do not work yet.&lt;/p&gt;
1156
1157 &lt;p&gt;A few months ago, I started looking at
1158 &lt;a href=&quot;http://scan.coverity.com/&quot;&gt;Coverity&lt;/a&gt;, the static source
1159 checker used to find heaps and heaps of bugs in free software (thanks
1160 to the donation of a scanning service to free software projects by the
1161 company developing this non-free code checker), and Gnash was one of
1162 the projects I decided to check out. Coverity is able to find lock
1163 errors, memory errors, dead code and more. A few days ago they even
1164 extended it to also be able to find the heartbleed bug in OpenSSL.
1165 There are heaps of checks being done on the instrumented code, and the
1166 amount of bogus warnings is quite low compared to the other static
1167 code checkers I have tested over the years.&lt;/p&gt;
1168
1169 &lt;p&gt;Since a few weeks ago, I&#39;ve been working with the other Gnash
1170 developers squashing bugs discovered by Coverity. I was quite happy
1171 today when I checked the current status and saw that of the 777 issues
1172 detected so far, 374 are marked as fixed. This make me confident that
1173 the next Gnash release will be more stable and more dependable than
1174 the previous one. Most of the reported issues were and are in the
1175 test suite, but it also found a few in the rest of the code.&lt;/p&gt;
1176
1177 &lt;p&gt;If you want to help out, you find us on
1178 &lt;a href=&quot;https://lists.gnu.org/mailman/listinfo/gnash-dev&quot;&gt;the
1179 gnash-dev mailing list&lt;/a&gt; and on
1180 &lt;a href=&quot;irc://irc.freenode.net/#gnash&quot;&gt;the #gnash channel on
1181 irc.freenode.net IRC server&lt;/a&gt;.&lt;/p&gt;
1182 </description>
1183 </item>
1184
1185 <item>
1186 <title>FreedomBox milestone - all packages now in Debian Sid</title>
1187 <link>http://people.skolelinux.org/pere/blog/FreedomBox_milestone___all_packages_now_in_Debian_Sid.html</link>
1188 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/FreedomBox_milestone___all_packages_now_in_Debian_Sid.html</guid>
1189 <pubDate>Tue, 15 Apr 2014 22:10:00 +0200</pubDate>
1190 <description>&lt;p&gt;The &lt;a href=&quot;https://wiki.debian.org/FreedomBox&quot;&gt;Freedombox
1191 project&lt;/a&gt; is working on providing the software and hardware to make
1192 it easy for non-technical people to host their data and communication
1193 at home, and being able to communicate with their friends and family
1194 encrypted and away from prying eyes. It is still going strong, and
1195 today a major mile stone was reached.&lt;/p&gt;
1196
1197 &lt;p&gt;Today, the last of the packages currently used by the project to
1198 created the system images were accepted into Debian Unstable. It was
1199 the freedombox-setup package, which is used to configure the images
1200 during build and on the first boot. Now all one need to get going is
1201 the build code from the freedom-maker git repository and packages from
1202 Debian. And once the freedombox-setup package enter testing, we can
1203 build everything directly from Debian. :)&lt;/p&gt;
1204
1205 &lt;p&gt;Some key packages used by Freedombox are
1206 &lt;a href=&quot;http://packages.qa.debian.org/freedombox-setup&quot;&gt;freedombox-setup&lt;/a&gt;,
1207 &lt;a href=&quot;http://packages.qa.debian.org/plinth&quot;&gt;plinth&lt;/a&gt;,
1208 &lt;a href=&quot;http://packages.qa.debian.org/pagekite&quot;&gt;pagekite&lt;/a&gt;,
1209 &lt;a href=&quot;http://packages.qa.debian.org/tor&quot;&gt;tor&lt;/a&gt;,
1210 &lt;a href=&quot;http://packages.qa.debian.org/privoxy&quot;&gt;privoxy&lt;/a&gt;,
1211 &lt;a href=&quot;http://packages.qa.debian.org/owncloud&quot;&gt;owncloud&lt;/a&gt; and
1212 &lt;a href=&quot;http://packages.qa.debian.org/dnsmasq&quot;&gt;dnsmasq&lt;/a&gt;. There
1213 are plans to integrate more packages into the setup. User
1214 documentation is maintained on the Debian wiki. Please
1215 &lt;a href=&quot;https://wiki.debian.org/FreedomBox/Manual/Jessie&quot;&gt;check out
1216 the manual&lt;/a&gt; and help us improve it.&lt;/p&gt;
1217
1218 &lt;p&gt;To test for yourself and create boot images with the FreedomBox
1219 setup, run this on a Debian machine using a user with sudo rights to
1220 become root:&lt;/p&gt;
1221
1222 &lt;p&gt;&lt;pre&gt;
1223 sudo apt-get install git vmdebootstrap mercurial python-docutils \
1224 mktorrent extlinux virtualbox qemu-user-static binfmt-support \
1225 u-boot-tools
1226 git clone http://anonscm.debian.org/git/freedombox/freedom-maker.git \
1227 freedom-maker
1228 make -C freedom-maker dreamplug-image raspberry-image virtualbox-image
1229 &lt;/pre&gt;&lt;/p&gt;
1230
1231 &lt;p&gt;Root access is needed to run debootstrap and mount loopback
1232 devices. See the README in the freedom-maker git repo for more
1233 details on the build. If you do not want all three images, trim the
1234 make line. Note that the virtualbox-image target is not really
1235 virtualbox specific. It create a x86 image usable in kvm, qemu,
1236 vmware and any other x86 virtual machine environment. You might need
1237 the version of vmdebootstrap in Jessie to get the build working, as it
1238 include fixes for a race condition with kpartx.&lt;/p&gt;
1239
1240 &lt;p&gt;If you instead want to install using a Debian CD and the preseed
1241 method, boot a Debian Wheezy ISO and use this boot argument to load
1242 the preseed values:&lt;/p&gt;
1243
1244 &lt;p&gt;&lt;pre&gt;
1245 url=&lt;a href=&quot;http://www.reinholdtsen.name/freedombox/preseed-jessie.dat&quot;&gt;http://www.reinholdtsen.name/freedombox/preseed-jessie.dat&lt;/a&gt;
1246 &lt;/pre&gt;&lt;/p&gt;
1247
1248 &lt;p&gt;I have not tested it myself the last few weeks, so I do not know if
1249 it still work.&lt;/p&gt;
1250
1251 &lt;p&gt;If you wonder how to help, one task you could look at is using
1252 systemd as the boot system. It will become the default for Linux in
1253 Jessie, so we need to make sure it is usable on the Freedombox. I did
1254 a simple test a few weeks ago, and noticed dnsmasq failed to start
1255 during boot when using systemd. I suspect there are other problems
1256 too. :) To detect problems, there is a test suite included, which can
1257 be run from the plinth web interface.&lt;/p&gt;
1258
1259 &lt;p&gt;Give it a go and let us know how it goes on the mailing list, and help
1260 us get the new release published. :) Please join us on
1261 &lt;a href=&quot;irc://irc.debian.org:6667/%23freedombox&quot;&gt;IRC (#freedombox on
1262 irc.debian.org)&lt;/a&gt; and
1263 &lt;a href=&quot;http://lists.alioth.debian.org/mailman/listinfo/freedombox-discuss&quot;&gt;the
1264 mailing list&lt;/a&gt; if you want to help make this vision come true.&lt;/p&gt;
1265 </description>
1266 </item>
1267
1268 <item>
1269 <title>Freedombox on Dreamplug, Raspberry Pi and virtual x86 machine</title>
1270 <link>http://people.skolelinux.org/pere/blog/Freedombox_on_Dreamplug__Raspberry_Pi_and_virtual_x86_machine.html</link>
1271 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Freedombox_on_Dreamplug__Raspberry_Pi_and_virtual_x86_machine.html</guid>
1272 <pubDate>Fri, 14 Mar 2014 11:00:00 +0100</pubDate>
1273 <description>&lt;p&gt;The &lt;a href=&quot;https://wiki.debian.org/FreedomBox&quot;&gt;Freedombox
1274 project&lt;/a&gt; is working on providing the software and hardware for
1275 making it easy for non-technical people to host their data and
1276 communication at home, and being able to communicate with their
1277 friends and family encrypted and away from prying eyes. It has been
1278 going on for a while, and is slowly progressing towards a new test
1279 release (0.2).&lt;/p&gt;
1280
1281 &lt;p&gt;And what day could be better than the Pi day to announce that the
1282 new version will provide &quot;hard drive&quot; / SD card / USB stick images for
1283 Dreamplug, Raspberry Pi and VirtualBox (or any other virtualization
1284 system), and can also be installed using a Debian installer preseed
1285 file. The Debian based Freedombox is now based on Debian Jessie,
1286 where most of the needed packages used are already present. Only one,
1287 the freedombox-setup package, is missing. To try to build your own
1288 boot image to test the current status, fetch the freedom-maker scripts
1289 and build using
1290 &lt;a href=&quot;http://packages.qa.debian.org/vmdebootstrap&quot;&gt;vmdebootstrap&lt;/a&gt;
1291 with a user with sudo access to become root:
1292
1293 &lt;pre&gt;
1294 git clone http://anonscm.debian.org/git/freedombox/freedom-maker.git \
1295 freedom-maker
1296 sudo apt-get install git vmdebootstrap mercurial python-docutils \
1297 mktorrent extlinux virtualbox qemu-user-static binfmt-support \
1298 u-boot-tools
1299 make -C freedom-maker dreamplug-image raspberry-image virtualbox-image
1300 &lt;/pre&gt;
1301
1302 &lt;p&gt;Root access is needed to run debootstrap and mount loopback
1303 devices. See the README for more details on the build. If you do not
1304 want all three images, trim the make line. But note that thanks to &lt;a
1305 href=&quot;https://bugs.debian.org/741407&quot;&gt;a race condition in
1306 vmdebootstrap&lt;/a&gt;, the build might fail without the patch to the
1307 kpartx call.&lt;/p&gt;
1308
1309 &lt;p&gt;If you instead want to install using a Debian CD and the preseed
1310 method, boot a Debian Wheezy ISO and use this boot argument to load
1311 the preseed values:&lt;/p&gt;
1312
1313 &lt;pre&gt;
1314 url=&lt;a href=&quot;http://www.reinholdtsen.name/freedombox/preseed-jessie.dat&quot;&gt;http://www.reinholdtsen.name/freedombox/preseed-jessie.dat&lt;/a&gt;
1315 &lt;/pre&gt;
1316
1317 &lt;p&gt;But note that due to &lt;a href=&quot;https://bugs.debian.org/740673&quot;&gt;a
1318 recently introduced bug in apt in Jessie&lt;/a&gt;, the installer will
1319 currently hang while setting up APT sources. Killing the
1320 &#39;&lt;tt&gt;apt-cdrom ident&lt;/tt&gt;&#39; process when it hang a few times during the
1321 installation will get the installation going. This affect all
1322 installations in Jessie, and I expect it will be fixed soon.&lt;/p&gt;
1323
1324 &lt;p&gt;Give it a go and let us know how it goes on the mailing list, and help
1325 us get the new release published. :) Please join us on
1326 &lt;a href=&quot;irc://irc.debian.org:6667/%23freedombox&quot;&gt;IRC (#freedombox on
1327 irc.debian.org)&lt;/a&gt; and
1328 &lt;a href=&quot;http://lists.alioth.debian.org/mailman/listinfo/freedombox-discuss&quot;&gt;the
1329 mailing list&lt;/a&gt; if you want to help make this vision come true.&lt;/p&gt;
1330 </description>
1331 </item>
1332
1333 <item>
1334 <title>Videos about the Freedombox project - for inspiration and learning</title>
1335 <link>http://people.skolelinux.org/pere/blog/Videos_about_the_Freedombox_project___for_inspiration_and_learning.html</link>
1336 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Videos_about_the_Freedombox_project___for_inspiration_and_learning.html</guid>
1337 <pubDate>Fri, 27 Sep 2013 14:10:00 +0200</pubDate>
1338 <description>&lt;p&gt;The &lt;a href=&quot;http://www.freedomboxfoundation.org/&quot;&gt;Freedombox
1339 project&lt;/a&gt; have been going on for a while, and have presented the
1340 vision, ideas and solution several places. Here is a little
1341 collection of videos of talks and presentation of the project.&lt;/p&gt;
1342
1343 &lt;ul&gt;
1344
1345 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=ukvUz5taxvA&quot;&gt;FreedomBox -
1346 2,5 minute marketing film&lt;/a&gt; (Youtube)&lt;/li&gt;
1347
1348 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=SzW25QTVWsE&quot;&gt;Eben Moglen
1349 discusses the Freedombox on CBS news 2011&lt;/a&gt; (Youtube)&lt;/li&gt;
1350
1351 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=Ae8SZbxfE0g&quot;&gt;Eben Moglen -
1352 Freedom in the Cloud - Software Freedom, Privacy and and Security for
1353 Web 2.0 and Cloud computing at ISOC-NY Public Meeting 2010&lt;/a&gt;
1354 (Youtube)&lt;/li&gt;
1355
1356 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=vNaIji_3xBE&quot;&gt;Fosdem 2011
1357 Keynote by Eben Moglen presenting the Freedombox&lt;/a&gt; (Youtube)&lt;/li&gt;
1358
1359 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=9bDDUyJSQ9s&quot;&gt;Presentation of
1360 the Freedombox by James Vasile at Elevate in Gratz 2011&lt;/a&gt; (Youtube)&lt;/li&gt;
1361
1362 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=zQTmnk27g9s&quot;&gt; Freedombox -
1363 Discovery, Identity, and Trust by Nick Daly at Freedombox Hackfest New
1364 York City in 2012&lt;/a&gt; (Youtube)&lt;/li&gt;
1365
1366 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=tkbSB4Ba7Ck&quot;&gt;Introduction
1367 to the Freedombox at Freedombox Hackfest New York City in 2012&lt;/a&gt;
1368 (Youtube)&lt;/li&gt;
1369
1370 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=z-P2Jaeg0aQ&quot;&gt;Freedom, Out
1371 of the Box! by Bdale Garbee at linux.conf.au Ballarat, 2012&lt;/a&gt; (Youtube) &lt;/li&gt;
1372
1373 &lt;li&gt;&lt;a href=&quot;https://archive.fosdem.org/2013/schedule/event/freedombox/&quot;&gt;Freedombox
1374 1.0 by Eben Moglen and Bdale Garbee at Fosdem 2013&lt;/a&gt; (FOSDEM) &lt;/li&gt;
1375
1376 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=e1LpYX2zVYg&quot;&gt;What is the
1377 FreedomBox today by Bdale Garbee at Debconf13 in Vaumarcus
1378 2013&lt;/a&gt; (Youtube)&lt;/li&gt;
1379
1380 &lt;/ul&gt;
1381
1382 &lt;p&gt;A larger list is available from
1383 &lt;a href=&quot;https://wiki.debian.org/FreedomBox/TalksAndPresentations&quot;&gt;the
1384 Freedombox Wiki&lt;/a&gt;.&lt;/p&gt;
1385
1386 &lt;p&gt;On other news, I am happy to report that Freedombox based on Debian
1387 Jessie is coming along quite well, and soon both Owncloud and using
1388 Tor should be available for testers of the Freedombox solution. :) In
1389 a few weeks I hope everything needed to test it is included in Debian.
1390 The withsqlite package is already in Debian, and the plinth package is
1391 pending in NEW. The third and vital part of that puzzle is the
1392 metapackage/setup framework, which is still pending an upload. Join
1393 us on &lt;a href=&quot;irc://irc.debian.org:6667/%23freedombox&quot;&gt;IRC
1394 (#freedombox on irc.debian.org)&lt;/a&gt; and
1395 &lt;a href=&quot;http://lists.alioth.debian.org/mailman/listinfo/freedombox-discuss&quot;&gt;the
1396 mailing list&lt;/a&gt; if you want to help make this vision come true.&lt;/p&gt;
1397 </description>
1398 </item>
1399
1400 <item>
1401 <title>Recipe to test the Freedombox project on amd64 or Raspberry Pi</title>
1402 <link>http://people.skolelinux.org/pere/blog/Recipe_to_test_the_Freedombox_project_on_amd64_or_Raspberry_Pi.html</link>
1403 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Recipe_to_test_the_Freedombox_project_on_amd64_or_Raspberry_Pi.html</guid>
1404 <pubDate>Tue, 10 Sep 2013 14:20:00 +0200</pubDate>
1405 <description>&lt;p&gt;I was introduced to the
1406 &lt;a href=&quot;http://www.freedomboxfoundation.org/&quot;&gt;Freedombox project&lt;/a&gt;
1407 in 2010, when Eben Moglen presented his vision about serving the need
1408 of non-technical people to keep their personal information private and
1409 within the legal protection of their own homes. The idea is to give
1410 people back the power over their network and machines, and return
1411 Internet back to its intended peer-to-peer architecture. Instead of
1412 depending on a central service, the Freedombox will give everyone
1413 control over their own basic infrastructure.&lt;/p&gt;
1414
1415 &lt;p&gt;I&#39;ve intended to join the effort since then, but other tasks have
1416 taken priority. But this summers nasty news about the misuse of trust
1417 and privilege exercised by the &quot;western&quot; intelligence gathering
1418 communities increased my eagerness to contribute to a point where I
1419 actually started working on the project a while back.&lt;/p&gt;
1420
1421 &lt;p&gt;The &lt;a href=&quot;https://alioth.debian.org/projects/freedombox/&quot;&gt;initial
1422 Debian initiative&lt;/a&gt; based on the vision from Eben Moglen, is to
1423 create a simple and cheap Debian based appliance that anyone can hook
1424 up in their home and get access to secure and private services and
1425 communication. The initial deployment platform have been the
1426 &lt;a href=&quot;http://www.globalscaletechnologies.com/t-dreamplugdetails.aspx&quot;&gt;Dreamplug&lt;/a&gt;,
1427 which is a piece of hardware I do not own. So to be able to test what
1428 the current Freedombox setup look like, I had to come up with a way to install
1429 it on some hardware I do have access to. I have rewritten the
1430 &lt;a href=&quot;https://github.com/NickDaly/freedom-maker&quot;&gt;freedom-maker&lt;/a&gt;
1431 image build framework to use .deb packages instead of only copying
1432 setup into the boot images, and thanks to this rewrite I am able to
1433 set up any machine supported by Debian Wheezy as a Freedombox, using
1434 the previously mentioned deb (and a few support debs for packages
1435 missing in Debian).&lt;/p&gt;
1436
1437 &lt;p&gt;The current Freedombox setup consist of a set of bootstrapping
1438 scripts
1439 (&lt;a href=&quot;https://github.com/petterreinholdtsen/freedombox-setup&quot;&gt;freedombox-setup&lt;/a&gt;),
1440 and a administrative web interface
1441 (&lt;a href=&quot;https://github.com/NickDaly/Plinth&quot;&gt;plinth&lt;/a&gt; + exmachina +
1442 withsqlite), as well as a privacy enhancing proxy based on
1443 &lt;a href=&quot;http://packages.qa.debian.org/privoxy&quot;&gt;privoxy&lt;/a&gt;
1444 (freedombox-privoxy). There is also a web/javascript based XMPP
1445 client (&lt;a href=&quot;http://packages.qa.debian.org/jwchat&quot;&gt;jwchat&lt;/a&gt;)
1446 trying (unsuccessfully so far) to talk to the XMPP server
1447 (&lt;a href=&quot;http://packages.qa.debian.org/ejabberd&quot;&gt;ejabberd&lt;/a&gt;). The
1448 web interface is pluggable, and the goal is to use it to enable OpenID
1449 services, mesh network connectivity, use of TOR, etc, etc. Not much of
1450 this is really working yet, see
1451 &lt;a href=&quot;https://github.com/NickDaly/freedombox-todos/blob/master/TODO&quot;&gt;the
1452 project TODO&lt;/a&gt; for links to GIT repositories. Most of the code is
1453 on github at the moment. The HTTP proxy is operational out of the
1454 box, and the admin web interface can be used to add/remove plinth
1455 users. I&#39;ve not been able to do anything else with it so far, but
1456 know there are several branches spread around github and other places
1457 with lots of half baked features.&lt;/p&gt;
1458
1459 &lt;p&gt;Anyway, if you want to have a look at the current state, the
1460 following recipes should work to give you a test machine to poke
1461 at.&lt;/p&gt;
1462
1463 &lt;p&gt;&lt;strong&gt;Debian Wheezy amd64&lt;/strong&gt;&lt;/p&gt;
1464
1465 &lt;ol&gt;
1466
1467 &lt;li&gt;Fetch normal Debian Wheezy installation ISO.&lt;/li&gt;
1468 &lt;li&gt;Boot from it, either as CD or USB stick.&lt;/li&gt;
1469 &lt;li&gt;&lt;p&gt;Press [tab] on the boot prompt and add this as a boot argument
1470 to the Debian installer:&lt;p&gt;
1471 &lt;pre&gt;url=&lt;a href=&quot;http://www.reinholdtsen.name/freedombox/preseed-wheezy.dat&quot;&gt;http://www.reinholdtsen.name/freedombox/preseed-wheezy.dat&lt;/a&gt;&lt;/pre&gt;&lt;/li&gt;
1472
1473 &lt;li&gt;Answer the few language/region/password questions and pick disk to
1474 install on.&lt;/li&gt;
1475
1476 &lt;li&gt;When the installation is finished and the machine have rebooted a
1477 few times, your Freedombox is ready for testing.&lt;/li&gt;
1478
1479 &lt;/ol&gt;
1480
1481 &lt;p&gt;&lt;strong&gt;Raspberry Pi Raspbian&lt;/strong&gt;&lt;/p&gt;
1482
1483 &lt;ol&gt;
1484
1485 &lt;li&gt;Fetch a Raspbian SD card image, create SD card.&lt;/li&gt;
1486 &lt;li&gt;Boot from SD card, extend file system to fill the card completely.&lt;/li&gt;
1487 &lt;li&gt;&lt;p&gt;Log in and add this to /etc/sources.list:&lt;/p&gt;
1488 &lt;pre&gt;
1489 deb &lt;a href=&quot;http://www.reinholdtsen.name/freedombox/&quot;&gt;http://www.reinholdtsen.name/freedombox&lt;/a&gt; wheezy main
1490 &lt;/pre&gt;&lt;/li&gt;
1491 &lt;li&gt;&lt;p&gt;Run this as root:&lt;/p&gt;
1492 &lt;pre&gt;
1493 wget -O - http://www.reinholdtsen.name/freedombox/BE1A583D.asc | \
1494 apt-key add -
1495 apt-get update
1496 apt-get install freedombox-setup
1497 /usr/lib/freedombox/setup
1498 &lt;/pre&gt;&lt;/li&gt;
1499 &lt;li&gt;Reboot into your freshly created Freedombox.&lt;/li&gt;
1500
1501 &lt;/ol&gt;
1502
1503 &lt;p&gt;You can test it on other architectures too, but because the
1504 freedombox-privoxy package is binary, it will only work as intended on
1505 the architectures where I have had time to build the binary and put it
1506 in my APT repository. But do not let this stop you. It is only a
1507 short &quot;&lt;tt&gt;apt-get source -b freedombox-privoxy&lt;/tt&gt;&quot; away. :)&lt;/p&gt;
1508
1509 &lt;p&gt;Note that by default Freedombox is a DHCP server on the
1510 192.168.1.0/24 subnet, so if this is your subnet be careful and turn
1511 off the DHCP server by running &quot;&lt;tt&gt;update-rc.d isc-dhcp-server
1512 disable&lt;/tt&gt;&quot; as root.&lt;/p&gt;
1513
1514 &lt;p&gt;Please let me know if this works for you, or if you have any
1515 problems. We gather on the IRC channel
1516 &lt;a href=&quot;irc://irc.debian.org:6667/%23freedombox&quot;&gt;#freedombox&lt;/a&gt; on
1517 irc.debian.org and the
1518 &lt;a href=&quot;http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/freedombox-discuss&quot;&gt;project
1519 mailing list&lt;/a&gt;.&lt;/p&gt;
1520
1521 &lt;p&gt;Once you get your freedombox operational, you can visit
1522 &lt;tt&gt;http://your-host-name:8001/&lt;/tt&gt; to see the state of the plint
1523 welcome screen (dead end - do not be surprised if you are unable to
1524 get past it), and next visit &lt;tt&gt;http://your-host-name:8001/help/&lt;/tt&gt;
1525 to look at the rest of plinth. The default user is &#39;admin&#39; and the
1526 default password is &#39;secret&#39;.&lt;/p&gt;
1527 </description>
1528 </item>
1529
1530 <item>
1531 <title>Netflix krever at du frasier deg dine forbrukerrettigheter...</title>
1532 <link>http://people.skolelinux.org/pere/blog/Netflix_krever_at_du_frasier_deg_dine_forbrukerrettigheter___.html</link>
1533 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Netflix_krever_at_du_frasier_deg_dine_forbrukerrettigheter___.html</guid>
1534 <pubDate>Wed, 17 Oct 2012 15:30:00 +0200</pubDate>
1535 <description>&lt;p&gt;Filmtjenesten Netflix lanseres i Norge, med en jublende presse på
1536 sidelinjen. Men har journalistene lest bruksvilkårene? Synes de
1537 avsnitt nummer to i
1538 «&lt;a href=&quot;https://signup.netflix.com/TermsOfUse?locale=nb-NO&quot;&gt;Vilkår
1539 for bruk&lt;/a&gt;» høres greit ut for en forbrukertjeneste i Norge?
1540 Avsnittet lyder slik:
1541
1542 &lt;blockquote&gt;
1543
1544 «Disse vilkårene for bruk innebærer at alle tvister mellom deg og
1545 Netflix vil bli løst ved BINDENDE VOLDGIFT. DU SAMTYKKER I AT DU
1546 FRASIER DEG ENHVER RETT TIL RETTSLIGE SKRITT for å hevde eller
1547 forsvare rettighetene dine under denne kontrakten (med unntak for
1548 mindre saker som kan avgjøres i forliksretten). Rettighetene dine vil
1549 bli bestemt av en NØYTRAL VOLDGIFTSMANN/MEKLER og IKKE en dommer eller
1550 jury, og krav kan ikke framstilles i form av gruppesøksmål. Les
1551 gjennom voldgiftsavtalen nedenfor for å finne alle detaljer vedrørende
1552 avtalen, slik at du kan se hvordan en eventuell konflikt med Netflix
1553 skal håndteres og vil avgjøres.»
1554
1555 &lt;/blockquote&gt;
1556
1557 &lt;p&gt;Ikke nok med det, men må akseptere at det er USAs lov som skal
1558 regulere bruken, og dermed akseptere å miste norsk forbruker- og
1559 personvernlovgiving (hvilket så vidt jeg vet ikke kan gjøres i
1560 Norge).&lt;/p&gt;
1561
1562 &lt;blockquote&gt;
1563 «Gjennom å godta disse vilkår for bruk samtykker du i at tolkingen og
1564 håndhevelsen av denne voldgiftsavtalen er underlagt den føderale
1565 voldgiftsloven i USA, U.S. Federal Arbitration Act, og at både du og
1566 Netflix frasier dere retten til en juryprosess eller deltakelse i
1567 gruppesøksmål. Denne voldgiftsbetingelsen gjelder selv etter at denne
1568 avtalen er oppsagt og Netflix-medlemskapet ditt har opphørt.»
1569 &lt;/blockquote&gt;
1570
1571 &lt;p&gt;En må altså si ja til å frasi seg de vanlige forbrukerrettighetene
1572 i Norge for å bruke Netflix. Vilkårene til Netflix vil neppe stå seg
1573 i norsk rett, men det er usedvanlig frekt å bare foreslå det, da de
1574 aller fleste som leser dem vil anta at vilkårene gjelder med mindre de
1575 er svært godt kjent med norsk forbrukerrett. Skal en frasi seg
1576 muligheten til å hevde sin rett hvis Netflix lekker personopplysninger
1577 (USAs lovgiving er svært mangelfull i forhold til den norske
1578 personvernlovgivingen) eller leverer en tjeneste som ikke holder mål?
1579 Nei takk. Med slike bruksvilkår takker jeg høflig nei til tilbudet,
1580 og de får ikke meg som kunde før de har en helt annen tilnærming mot
1581 sine kunder.&lt;/p&gt;
1582
1583 &lt;p&gt;Oppdatering 2012-10-18: Både
1584 &lt;a href=&quot;http://www.aftenposten.no/digital/Netflix-krever-at-du-sier-fra-deg-norske-forbrukerrettigheter-7021182.html&quot;&gt;Aftenposten&lt;/a&gt;,
1585 &lt;a href=&quot;http://nrk.no/helse-forbruk-og-livsstil/1.8362951&quot;&gt;NRK&lt;/a&gt; og
1586 &lt;a href=&quot;http://www.teknofil.no/artikler/forbrukerradet-slakter-netflix/113679&quot;&gt;Teknofil&lt;/a&gt;
1587 har snappet opp saken (dog nevner ikke NRK kilde, så de kan jo ha
1588 oppdaget det selv). Veldig bra at flere blir oppmerksom på slike
1589 ting. «- Helt hinsides, mener Forbrukerrådet om Netflix&#39;
1590 brukervilkår», siterer Aftenposten. Og
1591 &lt;a href=&quot;http://www.aftenposten.no/nyheter/Forbrukerombudet-vil-granske-TV-markedet-7021465.html&quot;&gt;Aftenposten&lt;/a&gt;
1592 melder videre at Forbrukerrådet vil granske TV-bransjen med bakgrunn i
1593 dette.&lt;/p&gt;
1594 </description>
1595 </item>
1596
1597 <item>
1598 <title>Mer oppfølging fra MPEG-LA om avtale med dem for å kringkaste og publisere H.264-video</title>
1599 <link>http://people.skolelinux.org/pere/blog/Mer_oppf_lging_fra_MPEG_LA_om_avtale_med_dem_for___kringkaste_og_publisere_H_264_video.html</link>
1600 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Mer_oppf_lging_fra_MPEG_LA_om_avtale_med_dem_for___kringkaste_og_publisere_H_264_video.html</guid>
1601 <pubDate>Thu, 5 Jul 2012 23:50:00 +0200</pubDate>
1602 <description>&lt;p&gt;I føljetongen om H.264
1603 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/MPEG_LA_mener_NRK_m__ha_avtale_med_dem_for___kringkaste_og_publisere_H_264_video.html&quot;&gt;forlot
1604 jeg leserne i undring&lt;/a&gt; om hvor pakken fra MPEG-LA tok veien, og om
1605 hvilke selskaper i Norge som har avtale med MPEG-LA. Da Ryan hos
1606 MPEG-LA dro på ferie sendte jeg min melding videre til hans kollega,
1607 og dagen etter fikk jeg følgende svar derfra:&lt;/p&gt;
1608
1609 &lt;p&gt;&lt;blockquote&gt;
1610 &lt;p&gt;Date: Fri, 29 Jun 2012 18:32:34 +0000
1611 &lt;br&gt;From: Sidney Wolf &amp;lt;SWolf (at) mpegla.com&amp;gt;
1612 &lt;br&gt;To: Petter Reinholdtsen &amp;lt;pere (at) hungry.com&amp;gt;
1613 &lt;br&gt;Cc: Ryan Rodriguez &amp;lt;RRodriguez (at) mpegla.com&amp;gt;
1614 &lt;br&gt;Subject: RE: Do NRK have a license agreement with MPEG-LA?&lt;/p&gt;
1615
1616 &lt;p&gt;Dear Mr. Reinholdtsen,&lt;/p&gt;
1617
1618 &lt;p&gt;Thank you for your message. As you know, Ryan is currently our of the
1619 office, so it will be my pleasure to assist you.&lt;/p&gt;
1620
1621 &lt;p&gt;Per your request, attached please find an electronic copy of the
1622 AVC Patent Portfolio License. Please note that the electronic copy of
1623 the License is provided as a convenience and for informational
1624 purposes only. When concluding the Licenses, only the hard copies
1625 provided by MPEG LA may be used.&lt;/p&gt;
1626
1627 &lt;p&gt;To your question, MPEG LA lists our Licensees on our website
1628 according to each program. The lists are in alphabetical order, so it
1629 is very easy to search.&lt;/p&gt;
1630
1631 &lt;p&gt;I hope that this was helpful. If we can be of additional
1632 assistance, please let me know.&lt;/p&gt;
1633
1634 &lt;p&gt;Kind regards,&lt;/p&gt;
1635
1636 &lt;p&gt;Sidney A. Wolf
1637 &lt;br&gt;Manager, Global Licensing
1638 &lt;br&gt;MPEG LA&lt;/p&gt;
1639 &lt;/blockquote&gt;&lt;/p&gt;
1640
1641 &lt;p&gt;Selv om et epostvedlegg er nyttig for mottakeren, så håpet jeg å få
1642 et dokument jeg kunne dele med alle leserne av bloggen min, og ikke et
1643 som må deles på individuell basis. Opphavsretten krever godkjenning
1644 fra rettighetsinnehaver før en kan gjøre slikt, så dermed fulgte jeg
1645 opp med et spørsmål om dette var greit.&lt;/p&gt;
1646
1647 &lt;p&gt;&lt;blockquote&gt;
1648 &lt;p&gt;Date: Wed, 4 Jul 2012 20:25:06 +0200
1649 &lt;br&gt;From: Petter Reinholdtsen &amp;lt;pere (at) hungry.com&amp;gt;
1650 &lt;br&gt;To: Sidney Wolf &amp;lt;SWolf (at) mpegla.com&amp;gt;
1651 &lt;br&gt;Cc: Ryan Rodriguez &amp;lt;RRodriguez (at) mpegla.com&amp;gt;
1652 &lt;br&gt;Subject: Re: Do NRK have a license agreement with MPEG-LA?&lt;/p&gt;
1653
1654 &lt;p&gt;Thank you for your reply.&lt;/p&gt;
1655
1656 &lt;p&gt;[Sidney Wolf]
1657 &lt;br&gt;&amp;gt; Per your request, attached please find an electronic copy of the AVC
1658 &lt;br&gt;&amp;gt; Patent Portfolio License. Please note that the electronic copy of
1659 &lt;br&gt;&amp;gt; the License is provided as a convenience and for informational
1660 &lt;br&gt;&amp;gt; purposes only. When concluding the Licenses, only the hard copies
1661 &lt;br&gt;&amp;gt; provided by MPEG LA may be used.&lt;/p&gt;
1662
1663 &lt;p&gt;This is useful for me to learn, but the reason I asked for the
1664 Internet address of the licensing document was to ensure I could
1665 publish a link to it when I discuss the topic of H.264 licensing here
1666 in Norway, and allow others to verify my observations. I can not do
1667 the same with an email attachment. Thus I would like to ask you if it
1668 is OK with MPEG LA that I publish this document on the Internet for
1669 others to read?&lt;/p&gt;
1670
1671 &lt;p&gt;&amp;gt; To your question, MPEG LA lists our Licensees on our website
1672 &lt;br&gt;&amp;gt; according to each program. The lists are in alphabetical order, so
1673 &lt;br&gt;&amp;gt; it is very easy to search.&lt;/p&gt;
1674
1675 &lt;p&gt;I am afraid this do not help me locate Norwegian companies in the
1676 list of Licensees. I do not know the name of all companies and
1677 organisations in Norway, and thus do not know how to locate the
1678 Norwegian ones on that list.&lt;/p&gt;
1679
1680 &lt;p&gt;&amp;gt; I hope that this was helpful. If we can be of additional assistance,
1681 &lt;br&gt;&amp;gt; please let me know.&lt;/p&gt;
1682
1683 &lt;p&gt;Absoutely helpful to learn more about how MPEG LA handle licensing.&lt;/p&gt;
1684
1685 &lt;p&gt;--
1686 &lt;br&gt;Happy hacking
1687 &lt;br&gt;Petter Reinholdtsen&lt;/p&gt;
1688 &lt;/blockquote&gt;&lt;/p&gt;
1689
1690 &lt;p&gt;Jeg håpet også at det skulle være mulig å få vite hvilke av de
1691 mange hundre som har avtale med MPEG-LA om bruk av H.264 som holdt til
1692 i Norge. Begge mine håp falt i grus med svaret fra MPEG-LA.
1693
1694 &lt;p&gt;&lt;blockquote&gt;
1695 &lt;p&gt;Date: Thu, 5 Jul 2012 17:42:39 +0000
1696 &lt;br&gt;From: Sidney Wolf &amp;lt;SWolf (at) mpegla.com&amp;gt;
1697 &lt;br&gt;To: &#39;Petter Reinholdtsen&#39; &amp;lt;pere (at) hungry.com&amp;gt;
1698 &lt;br&gt;Cc: Ryan Rodriguez &amp;lt;RRodriguez (at) mpegla.com&amp;gt;
1699 &lt;br&gt;Subject: RE: Do NRK have a license agreement with MPEG-LA?&lt;/p&gt;
1700
1701 &lt;p&gt;Dear Mr. Reinholdtsen,&lt;/p&gt;
1702
1703 &lt;p&gt;Thank you for your reply.&lt;/p&gt;
1704
1705 &lt;p&gt;We appreciate the additional explanation you have provided and for
1706 asking our permission to publish the electronic copy of the License in
1707 advance of doing so. Typically, MPEG LA prefers to distribute the
1708 electronic copies of our Licenses to interested parties. Therefore,
1709 please feel free to send interested parties to the AVC portion of our
1710 website, http://www.mpegla.com/main/programs/AVC/Pages/Intro.aspx for
1711 their further reference.&lt;/p&gt;
1712
1713 &lt;p&gt;As previously mentioned, MPEG LA maintains a list of Licensees in good
1714 standing on our website according to each program. Due to the large
1715 volume of Licensees, it would be administratively impractical to
1716 provide this level of detail to interested parties. Therefore, I am
1717 afraid we are not in a position to assist you with your request.&lt;/p&gt;
1718
1719 &lt;p&gt;Kind regards,&lt;/p&gt;
1720
1721 &lt;p&gt;Sidney A. Wolf
1722 &lt;br&gt;Manager, Global Licensing
1723 &lt;br&gt;MPEG LA&lt;/p&gt;
1724 &lt;/blockquote&gt;&lt;/p&gt;
1725
1726 &lt;p&gt;Men takket være epostvedlegget kunne jeg søke på Google etter
1727 setningen &quot;WHEREAS, a video standard commonly referred to as AVC has
1728 been defined and is referred to in this Agreement as the “AVC
1729 Standard” (as more fully defined herein below)&quot; som finnes i avtalen,
1730 og lokalisere en kopi fra 2007 av
1731 &lt;a href=&quot;http://www.sec.gov/Archives/edgar/data/1342960/000119312509050004/dex1024.htm&quot;&gt;lisensavtalen
1732 mellom MPEG-LA og DivX, Inc.&lt;/a&gt;, slik at mine lesere kan se hvordan
1733 avtalen så ut da. Jeg har ikke sammenlignet tekstene for å se om noe
1734 har endret seg siden den tid, men satser på at teksten er representativ.&lt;/p&gt;
1735
1736 &lt;p&gt;Jeg aner fortsatt ikke hvor FedEx tok veien med pakken fra
1737 MPEG-LA.&lt;/p&gt;
1738
1739 &lt;p&gt;Update 2012-07-06: Jeg er visst ikke den første som forsøker å få
1740 klarhet i problemstillinger rundt H.264, og kom nettopp over en veldig
1741 interessant bloggpost fra 2010 hos LibreVideo med tittelen
1742 &quot;&lt;a href=&quot;http://www.librevideo.org/blog/2010/06/14/mpeg-la-answers-some-questions-about-avch-264-licensing/&quot;&gt;MPEG-LA
1743 answers some questions about AVC/H.264 licensing&lt;/a&gt;. Anbefales!&lt;/p&gt;
1744 </description>
1745 </item>
1746
1747 <item>
1748 <title>Departementenes servicesenter har ingen avtale om bruk av H.264 med MPEG-LA</title>
1749 <link>http://people.skolelinux.org/pere/blog/Departementenes_servicesenter_har_ingen_avtale_om_bruk_av_H_264_med_MPEG_LA.html</link>
1750 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Departementenes_servicesenter_har_ingen_avtale_om_bruk_av_H_264_med_MPEG_LA.html</guid>
1751 <pubDate>Fri, 29 Jun 2012 09:40:00 +0200</pubDate>
1752 <description>&lt;p&gt;Da fikk jeg nettopp svar fra
1753 &lt;a href=&quot;http://www.dss.dep.no/&quot;&gt;Departementenes servicesenter&lt;/a&gt;
1754 (DSS) på
1755 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Trenger_en_avtale_med_MPEG_LA_for___publisere_og_kringkaste_H_264_video_.html&quot;&gt;mitt
1756 spørsmål om avtale rundt bruk av H.264&lt;/a&gt;. De har ingen avtale med
1757 MPEG LA eller dets representanter. Her er svaret.
1758
1759 &lt;p&gt;&lt;blockquote&gt;
1760
1761 &lt;p&gt;Date: Fri, 29 Jun 2012 07:04:42 +0000
1762 &lt;br&gt;From: Nielsen Mette Haga &amp;lt;Mette-Haga.Nielsen (at) dss.dep.no&amp;gt;
1763 &lt;br&gt;To: Petter Reinholdtsen &amp;lt;petter.reinholdtsen (at) ...&amp;gt;
1764 &lt;br&gt;CC: Postmottak &amp;lt;Postmottak (at) dss.dep.no&amp;gt;
1765 &lt;br&gt;Subject: SV: Innsynsbegjæring om MPEG/H.264-relaterte avtaler&lt;/p&gt;
1766
1767 &lt;p&gt;DSS har ikke inngått noen egen lisensavtale med MPEG-LA eller noen som
1768 representerer MPEG-LA i Norge. Videoløsningen på regjeringen.no er
1769 levert av Smartcom:tv. Lisensforholdet rundt H.264 er ikke omtalt i
1770 vår avtale med Smartcom.&lt;/p&gt;
1771
1772 &lt;p&gt;Vennlig hilsen&lt;/p&gt;
1773
1774 &lt;p&gt;Mette Haga Nielsen
1775 &lt;br&gt;Fung. seksjonssjef&lt;/p&gt;
1776
1777 &lt;p&gt;Departementenes servicesenter&lt;/p&gt;
1778
1779 &lt;p&gt;Informasjonsforvaltning
1780
1781 &lt;p&gt;Mobil 93 09 83 51
1782 &lt;br&gt;E-post mette-haga.nielsen (at) dss.dep.no&lt;/p&gt;
1783 &lt;/blockquote&gt;&lt;/p&gt;
1784
1785 &lt;p&gt;Hvis den norske regjeringen representert ved DSS ikke har slik
1786 avtale, så kan en kanskje konkludere med at det ikke trengs? Jeg er
1787 ikke trygg på at det er god juridisk grunn å stå på, men det er i det
1788 minste interessant å vite at hverken NRK eller DSS har funnet det
1789 nødvendig å ha avtale om bruk av H.264.&lt;/p&gt;
1790
1791 &lt;p&gt;Det forklarer ikke hvordan de kan ignorere bruksvilkårene knyttet
1792 til bruk av opphavsrettsbeskyttet materiale de bruker til
1793 videoproduksjon, med mindre slike vilkår kan ignoreres av selskaper og
1794 privatpersoner i Norge. Har de lov til å bryte vilkårene, eller har
1795 de brutt dem og så langt sluppet unna med det? Jeg aner ikke.&lt;/p&gt;
1796 </description>
1797 </item>
1798
1799 <item>
1800 <title>MPEG-LA mener NRK må ha avtale med dem for å kringkaste og publisere H.264-video</title>
1801 <link>http://people.skolelinux.org/pere/blog/MPEG_LA_mener_NRK_m__ha_avtale_med_dem_for___kringkaste_og_publisere_H_264_video.html</link>
1802 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/MPEG_LA_mener_NRK_m__ha_avtale_med_dem_for___kringkaste_og_publisere_H_264_video.html</guid>
1803 <pubDate>Thu, 28 Jun 2012 20:00:00 +0200</pubDate>
1804 <description>&lt;p&gt;Etter at NRK
1805 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/NRK_nekter___finne_og_utlevere_eventuell_avtale_med_MPEG_LA.html&quot;&gt;nektet
1806 å spore opp eventuell avtale med MPEG-LA&lt;/a&gt; eller andre om bruk av
1807 MPEG/H.264-video etter at jeg &lt;a
1808 href=&quot;http://people.skolelinux.org/pere/blog/Trenger_en_avtale_med_MPEG_LA_for___publisere_og_kringkaste_H_264_video_.html&quot;&gt;ba
1809 om innsyn i slike avtaler&lt;/a&gt;, tenkte jeg at i stedet for å forsøke å
1810 få NRK til å finne en slik avtale, så burde det være like enkelt å
1811 spørre MPEG-LA om de hadde avtale med NRK. Spørsmålet ble sendt før
1812 jeg fikk tips fra Kieran Kunhya om hvor listen over lisensinnehavere
1813 &quot;in Good Standing&quot; befant seg. MPEG-LA svarte meg i dag, og kan
1814 fortelle at NRK ikke har noen avtale med dem, så da er i det minste det
1815 slått fast. Ikke overraskende mener MPEG-LA at det trengs en avtale
1816 med MPEG-LA for å streame H.264, men deres rammer er jo
1817 rettstilstanden i USA og ikke Norge. Jeg tar dermed den delen av
1818 svaret med en klype salt. Jeg er dermed fortsatt ikke klok på om det
1819 trengs en avtale, og hvis det trengs en avtale her i Norge, heller
1820 ikke sikker på om NRK har en avtale med noen andre enn MPEG-LA som
1821 gjør at de ikke trenger avtale direkte med MPEG-LA. Jeg håper NRKs
1822 jurister har vurdert dette, og at det er mulig å få tilgang til
1823 vurderingen uansett om de trenger en avtale eller ikke.&lt;/p&gt;
1824
1825 &lt;p&gt;Her er epostutvekslingen med MPEG-LA så langt. Håper ikke
1826 utvekslingen fører til NRK plutselig får en litt uventet pakke fra
1827 MPEG-LA.&lt;/p&gt;
1828
1829 &lt;p&gt;&lt;blockquote&gt;
1830 &lt;p&gt;Date: Mon, 25 Jun 2012 15:29:37 +0200
1831 &lt;br&gt;From: Petter Reinholdtsen &amp;lt;pere (at) hungry.com&amp;gt;
1832 &lt;br&gt;To: licensing-web (at) mpegla.com
1833 &lt;br&gt;Subject: Do NRK have a license agreement with MPEG-LA?&lt;/p&gt;
1834
1835 &lt;p&gt;Hi. I have a small question for you, that I hope it is OK that I
1836 ask.&lt;/p&gt;
1837
1838 &lt;p&gt;Is there any license agreements between MPEG-LA and NRK, &amp;lt;URL:
1839 &lt;a href=&quot;http://www.nrk.no/&quot;&gt;http://www.nrk.no/&lt;/a&gt; &amp;gt;, the
1840 Norwegian national broadcasting cooperation? I am not sure if they
1841 need one, and am just curious if such agreeement exist.&lt;/p&gt;
1842
1843 &lt;p&gt;The postal address is&lt;/p&gt;
1844
1845 &lt;p&gt;&lt;blockquote&gt;
1846 NRK
1847 &lt;br&gt;Postbox 8500, Majorstuen
1848 &lt;br&gt;0340 Oslo
1849 &lt;br&gt;Norway
1850 &lt;/blockquote&gt;&lt;/p&gt;
1851
1852 &lt;p&gt;if it make it easier for you to locate such agreement.&lt;/p&gt;
1853
1854 &lt;p&gt;Can you tell me how many entities in Norway have an agreement with
1855 MPEG-LA, and the name of these entities?&lt;/p&gt;
1856
1857 &lt;p&gt;--
1858 &lt;br&gt;Happy hacking
1859 &lt;br&gt;Petter Reinholdtsen
1860 &lt;/blockquote&gt;&lt;/p&gt;
1861
1862 &lt;p&gt;I dag, to dager senere, fikk jeg følgende svar:&lt;/p&gt;
1863
1864 &lt;p&gt;&lt;blockquote&gt;
1865 &lt;p&gt;Date: Thu, 28 Jun 2012 14:11:17 +0000
1866 &lt;br&gt;From: Ryan Rodriguez &amp;lt;RRodriguez (at) mpegla.com&gt;
1867 &lt;br&gt;To: Petter Reinholdtsen &amp;lt;pere (at) hungry.com&gt;
1868 &lt;br&gt;CC: MD Administration &amp;lt;MDAdministration (at) mpegla.com&gt;
1869 &lt;br&gt;Subject: RE: Do NRK have a license agreement with MPEG-LA?&lt;/p&gt;
1870
1871 &lt;p&gt;Dear Mr. Reinholdtsen,&lt;/p&gt;
1872
1873 &lt;p&gt;Thank you for your message and for your interest in MPEG LA. We
1874 appreciate hearing from you and I will be happy to assist you.&lt;/p&gt;
1875
1876 &lt;p&gt;To begin, I will assume that you are referring to AVC/H.264
1877 technology in your message below, as this technology is commonly used
1878 in the transmission of video content. In that case, please allow me
1879 to briefly summarize the coverage provided by our AVC Patent Portfolio
1880 License.&lt;/p&gt;
1881
1882 &lt;P&gt;Our AVC License provides coverage for end products and video
1883 services that make use of AVC/H.264 technology. Accordingly, the
1884 party offering such end products and video to End Users concludes the
1885 AVC License and is responsible for paying the applicable royalties
1886 associated with the end products/video they offer.&lt;/p&gt;
1887
1888 &lt;p&gt;While the Norwegian Broadcast Corporation (NRK) is not currently a
1889 Licensee to MPEG LA&#39;s AVC License (or any other Portfolio License
1890 offered by MPEG LA), if NRK offers AVC Video to End Users for
1891 remuneration (for example, Title-by-Title, Subscription, Free
1892 Television, or Internet Broadcast AVC Video), then NRK will need to
1893 conclude the AVC License and may be responsible for paying applicable
1894 royalties associated with the AVC Video it distributes.&lt;/p&gt;
1895
1896 &lt;p&gt;Today I will send you a FedEx package containing a copy of our AVC
1897 License for your review. You should receive the License document
1898 within the next few days.&lt;/p&gt;
1899
1900 &lt;p&gt;Meanwhile, MPEG LA currently has several Norwegian Licensees that
1901 can be found under the &quot;Licensees&quot; header within the respective
1902 portion of our website. For example, you may find our list of
1903 Licensees in Good Standing to our AVC License in the AVC portion of
1904 our website,
1905 &lt;a href=&quot;http://www.mpegla.com/main/programs/AVC/Pages/Licensees.aspx&quot;&gt;http://www.mpegla.com/main/programs/AVC/Pages/Licensees.aspx&lt;/a&gt;&lt;/p&gt;
1906
1907 &lt;p&gt;I hope the above information is helpful. If you have additional
1908 questions or need further assistance with the AVC License, please feel
1909 free to contact me directly. I look forward to hearing from you again
1910 soon.&lt;/p&gt;
1911
1912 &lt;p&gt;Best regards,&lt;/p&gt;
1913
1914 &lt;p&gt;Ryan&lt;/p&gt;
1915
1916 &lt;p&gt;Ryan M. Rodriguez
1917 &lt;br&gt;Licensing Associate
1918 &lt;br&gt;MPEG LA
1919 &lt;br&gt;5425 Wisconsin Avenue
1920 &lt;br&gt;Suite 801
1921 &lt;br&gt;Chevy Chase, MD 20815
1922 &lt;br&gt;U.S.A.
1923 &lt;br&gt;Phone: +1 (301) 986-6660 x211
1924 &lt;br&gt;Fax: +1 (301) 986-8575
1925 &lt;br&gt;Email: rrodriguez (at) mpegla.com&lt;/p&gt;
1926
1927 &lt;/blockquote&gt;&lt;/p&gt;
1928
1929 &lt;p&gt;Meldingen om utsendt FedEx-pakke var så merkelig at jeg
1930 øyeblikkelig sendte svar tilbake og spurte hva i alle dager han mente,
1931 da han jo ikke hadde fått noen postadresse som nådde meg.&lt;/p&gt;
1932
1933 &lt;p&gt;&lt;blockquote&gt;
1934
1935 &lt;p&gt;Date: Thu, 28 Jun 2012 16:36:15 +0200
1936 &lt;br&gt;From: Petter Reinholdtsen &amp;lt;pere (at) hungry.com&amp;gt;
1937 &lt;br&gt;To: Ryan Rodriguez &amp;lt;RRodriguez (at) mpegla.com&amp;gt;
1938 &lt;br&gt;Cc: MD Administration &amp;lt;MDAdministration (at) mpegla.com&amp;gt;
1939 &lt;br&gt;Subject: Re: Do NRK have a license agreement with MPEG-LA?&lt;/p&gt;
1940
1941 &lt;p&gt;[Ryan Rodriguez]
1942 &lt;br&gt;&amp;gt; Dear Mr. Reinholdtsen,&lt;/p&gt;
1943
1944 &lt;p&gt;Thank you for your quick reply.&lt;/p&gt;
1945
1946 &lt;p&gt;&amp;gt; Today I will send you a FedEx package containing a copy of our AVC
1947 &lt;br&gt;&amp;gt; License for your review. You should receive the License document
1948 &lt;br&gt;&amp;gt; within the next few days.&lt;/p&gt;
1949
1950 &lt;p&gt;The part about sending a FedEx package confused me, though. I did not
1951 &lt;br&gt;give you my address, nor am I associated with NRK in any way, so I hope
1952 &lt;br&gt;you did not try to send me a package using the address of NRK. If you
1953 &lt;br&gt;would send me the Internet address of to the document, it would be more
1954 &lt;br&gt;useful to me to be able to download it as an electronic document.&lt;/p&gt;
1955
1956 &lt;p&gt;&amp;gt; Meanwhile, MPEG LA currently has several Norwegian Licensees that can
1957 &lt;br&gt;&amp;gt; be found under the &quot;Licensees&quot; header within the respective portion
1958 &lt;br&gt;&amp;gt; of our website. For example, you may find our list of Licensees in
1959 &lt;br&gt;&amp;gt; Good Standing to our AVC License in the AVC portion of our website,
1960 &lt;br&gt;&amp;gt; http://www.mpegla.com/main/programs/AVC/Pages/Licensees.aspx&lt;/p&gt;
1961
1962 &lt;p&gt;How can I recognize the Norwegian licensees?&lt;/p&gt;
1963
1964 &lt;p&gt;--
1965 &lt;br&gt;Happy hacking
1966 &lt;br&gt;Petter Reinholdtsen&lt;/p&gt;
1967 &lt;/blockquote&gt;&lt;/p&gt;
1968
1969 &lt;p&gt;Selv om jeg svarte kun noen minutter etter at jeg fikk eposten fra
1970 MPEG-LA, fikk jeg eposten under som automatisk var beskjed på min
1971 siste epost. Får håpe noen likevel følger opp &quot;FedEx-pakken&quot;. For å
1972 øke sjansen for at noen revurderer utsending av pakke uten mottaker,
1973 videresendte jeg min epost til swolf (at) mpegla.com, så får vi se.
1974 Har ikke hørt noe mer 3 timer senere, så jeg mistenker at ingen leste
1975 min epost tidsnok.&lt;/p&gt;
1976
1977 &lt;p&gt;&lt;blockquote&gt;
1978
1979 &lt;p&gt;Date: Thu, 28 Jun 2012 14:36:20 +0000
1980 &lt;br&gt;From: Ryan Rodriguez &amp;lt;RRodriguez (at) mpegla.com&amp;gt;
1981 &lt;br&gt;To: Petter Reinholdtsen &amp;lt;pere (at) hungry.com&amp;gt;
1982 &lt;br&gt;Subject: Automatic reply: Do NRK have a license agreement with MPEG-LA?&lt;/p&gt;
1983
1984 &lt;p&gt;Thank you for your message.&lt;/p&gt;
1985
1986 &lt;p&gt;I will be out of the office until Thursday, July 5 and will respond
1987 to all messages upon my return. If this is a matter that requires
1988 immediate attention, please contact Sidney Wolf (swolf (at)
1989 mpegla.com)&lt;/p&gt;
1990
1991 &lt;p&gt;Best regards,&lt;/p&gt;
1992
1993 &lt;p&gt;Ryan&lt;/p&gt;
1994
1995 &lt;p&gt;Ryan M. Rodriguez
1996 &lt;br&gt;Licensing Associate
1997 &lt;br&gt;MPEG LA&lt;/p&gt;
1998
1999 &lt;/blockquote&gt;&lt;/p&gt;
2000
2001 &lt;p&gt;Litt klokere, men fortsatt ikke klok på mitt opprinnelige spørsmål,
2002 som er om en trenger avtale med MPEG-LA for å publisere eller
2003 kringkaste H.264-video i Norge.&lt;/p&gt;
2004 </description>
2005 </item>
2006
2007 <item>
2008 <title>NRK nekter å finne og utlevere eventuell avtale med MPEG-LA</title>
2009 <link>http://people.skolelinux.org/pere/blog/NRK_nekter___finne_og_utlevere_eventuell_avtale_med_MPEG_LA.html</link>
2010 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/NRK_nekter___finne_og_utlevere_eventuell_avtale_med_MPEG_LA.html</guid>
2011 <pubDate>Mon, 25 Jun 2012 15:10:00 +0200</pubDate>
2012 <description>&lt;p&gt;Jeg fikk nettopp svar fra NRK på
2013 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Trenger_en_avtale_med_MPEG_LA_for___publisere_og_kringkaste_H_264_video_.html&quot;&gt;min
2014 forespørsel om kopi av avtale&lt;/a&gt; med MPEG-LA eller andre om bruk av
2015 MPEG og/eller H.264. Svaret har fått saksreferanse 2011/371 (mon tro
2016 hva slags sak fra 2011 dette er?) hos NRK og lyder som følger:&lt;/p&gt;
2017
2018 &lt;p&gt;&lt;blockquote&gt;
2019
2020 &lt;p&gt;&lt;strong&gt;Svar på innsynsbegjæring i MPEG / H.264-relaterte
2021 avtaler&lt;/strong&gt;&lt;/p&gt;
2022
2023 &lt;p&gt;Viser til innsynsbegjæring av 19. juni 2012. Kravet om innsyn
2024 gjelder avtale som gjør at NRK «ikke er begrenset av de generelle
2025 bruksvilkårene som gjelder for utstyr som bruker MPEG og/eller
2026 H.264».&lt;/p&gt;
2027
2028 &lt;p&gt;I henhold til offentleglova § 28 annet ledd må innsynskravet gjelde
2029 en bestemt sak eller i rimelig utstrekning saker av en bestemt
2030 sak. Det er på det rene at det aktuelle innsynskravet ikke gjelder en
2031 bestemt sak. Spørsmålet som reiser seg er om identifiseringsgraden er
2032 tilstrekkelig. I Justisdepartementets «Rettleiar til offentleglova»
2033 står følgende:&lt;/p&gt;
2034
2035 &lt;p&gt;«Kravet om at innsynskravet må gjelde ei bestemt sak er til hinder
2036 for at eit innsynskrav kan gjelde alle saker av ein bestemt art, utan
2037 at den enkelte saka blir identifisert. Ein kan med andre ord i
2038 utgangspunktet ikkje krevje innsyn i til dømes alle saker om
2039 utsleppsløyve hos Statens forureiningstilsyn frå dei siste tre åra,
2040 med mindre ein identifiserer kvar enkelt sak, til dømes med tilvising
2041 til dato, partar eller liknande.»&lt;/p&gt;
2042
2043 &lt;p&gt;Vedrørende denne begrensningen har Justisdepartementet uttalt
2044 følgende (Lovavdelingens uttalelser JDLOV-2010-3295):&lt;/p&gt;
2045
2046 &lt;p&gt;&lt;em&gt;«Bakgrunnen for avgrensinga av kva innsynskravet kan gjelde,
2047 er fyrst og fremst at meir generelle innsynskrav, utan noka form for
2048 identifikasjon av kva ein eigentleg ynskjer, ville vere svært
2049 vanskelege å handsame for forvaltninga.»&lt;/em&gt;&lt;/p&gt;
2050
2051 &lt;p&gt;I samme sak uttaler Lovavdelingen følgende:&lt;/p&gt;
2052
2053 &lt;p&gt;&lt;em&gt;«Det følgjer vidare av offentleglova § 28 andre ledd at det `i
2054 rimeleg utstrekning&#39; kan krevjast innsyn i `saker av ein bestemt
2055 art&#39;. Vilkåret om at eit innsynskrav berre `i rimeleg utstrekning&#39; kan
2056 gjelde saker av ein bestemt art, er i hovudsak knytt til kor
2057 arbeidskrevjande det vil vere å finne fram til dei aktuelle
2058 dokumenta. I tillegg reknar vi med at vilkåret kan gje grunnlag for å
2059 nekte innsyn i tilfelle der innsynskravet er så omfattande (gjeld så
2060 mange dokument) at arbeidsmengda som ville gått med til å handsame
2061 det, er større enn det ein `i rimeleg utstrekning&#39; kan krevje (sjølv
2062 om det nok skal mykje til).»&lt;/em&gt;&lt;/p&gt;
2063
2064 &lt;p&gt;NRK har ikke noen egen sammenstilling over avtaler innenfor
2065 bestemte områder som omtales i innsynsbegjæringen. De måtte søkes på
2066 vanlig måte. I tillegg finnes ikke noen automatisert måte å finne
2067 avtaler som «ikke er begrenset av de generelle bruksvilkårene som
2068 gjelder for utstyr som bruker MPEG og/eller H.264». En slik
2069 gjennomgang av avtaler måtte gjøres manuelt av en person med
2070 spesialistkunnskap. Dette vil kreve at NRK avsetter omfattende
2071 ressurser for å finne frem relevante avtaler og for deretter å vurdere
2072 om de dekkes av det innsynsbegjæringen omfattes.&lt;/p&gt;
2073
2074 &lt;p&gt;På bakgrunn av dette nekter NRK innsyn, med den begrunnelsen at
2075 innsynskravet er så omfattende at arbeidsmengden for å håndtere kravet
2076 vil være langt større enn det som i rimelig utstrekning kan kreves i
2077 henhold til offentleglova § 28 annet ledd.&lt;/p&gt;
2078
2079 &lt;p&gt;Avslag på deres innsynsbegjæring kan påklages til Kultur- og
2080 kirkedepartementet innen tre uker fra det tidspunkt avslaget kommer
2081 frem til mottakeren, i henhold til reglene i offentleglova § 32,
2082 jf. forvaltningsloven kapittel VI. Klagen skal stiles til Kultur- og
2083 kirkedepartementet, og sendes til NRK.&lt;/p&gt;
2084
2085 &lt;p&gt;NRK er imidlertid etter Offentleglova forpliktet å gi ut journaler,
2086 slik at en eventuell søknad om innsyn kan tydeligere identifisere
2087 hvilke dokumenter som det ønskes innsyn i. NRKs offentlige journaler
2088 for inneværende og forrige måned ligger ute på
2089 NRK.no/innsyn. Journaler som går lengre tilbake i tid, kan sendes ut
2090 på forespørsel til innsyn (at) nrk.no.&lt;/p&gt;
2091
2092 &lt;p&gt;Med hilsen
2093 &lt;br&gt;Dokumentarkivet i NRK
2094 &lt;br&gt;v/ Elin Brandsrud
2095 &lt;br&gt;Tel. direkte: 23 04 29 29
2096 &lt;br&gt;Post: RBM3, Postboks 8500 Majorstuen, 0340 Oslo
2097 &lt;br&gt;innsyn (at) nrk.no&lt;/p&gt;
2098
2099 &lt;/blockquote&gt;&lt;/p&gt;
2100
2101 &lt;p&gt;Svaret kom
2102 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2012-06-25-video-mpegla-nrk.pdf&quot;&gt;i
2103 PDF-form som vedlegg på epost&lt;/a&gt;. Jeg er litt usikker på hvordan jeg
2104 best går videre for å bli klok, men jeg har jo i hvert fall tre uker
2105 på å vurdere om jeg skal klage. Enten må nok forespørselen
2106 reformuleres eller så må jeg vel klage. Synes jo det er merkelig at
2107 NRK ikke har bedre kontroll med hvilke avtaler de har inngått. Det
2108 burde jo være noen i ledelsen som vet om de har signert en avtale med
2109 MPEG-LA eller ikke...&lt;/p&gt;
2110
2111 &lt;p&gt;Oppdatering 2012-06-25 20:20: Et google-søk på &quot;2011/371 nrk&quot;
2112 sendte meg til postjournalen for
2113 &lt;a href=&quot;http://nrk.no/contentfile/file/1.8212365!offentligjournal19062012.pdf&quot;&gt;2012-06-19&lt;/a&gt;
2114 og
2115 &lt;a href=&quot;http://nrk.no/contentfile/file/1.8214156!offentligjournal20062012.pdf&quot;&gt;2012-06-20&lt;/a&gt;
2116 hos NRK som viser mine forespørsler og viser at sakens tittel hos NRK
2117 er &quot;Graphic Systems Regions MA 2378/10E&quot;. Videre søk etter &quot;Graphic
2118 Systems Regions&quot; viser at dette er saken til et anbud om
2119 &quot;&lt;a href=&quot;http://no.mercell.com/m/mts/Tender/27179412.aspx&quot;&gt;a graphics
2120 system for 12 or 13 sites broadcasting regional news&lt;/a&gt;&quot; hos Mercell
2121 Sourcing Service, også omtalt på
2122 &lt;a href=&quot;http://www.publictenders.net/tender/595705&quot;&gt;Public
2123 Tenders&lt;/a&gt; og
2124 &lt;a href=&quot;http://www.doffin.no/search/show/search_view.aspx?ID=JAN155521&quot;&gt;Doffin&lt;/a&gt;.
2125 Jeg er dog usikker på hvordan dette er relatert til min
2126 forespørsel.&lt;/p&gt;
2127
2128 &lt;p&gt;Oppdatering 2012-06-25 22:40: Ble tipset av Kieran Kunhya, fra
2129 miljøet rundt
2130 &lt;a href=&quot;http://code.google.com/p/open-broadcast-encoder/&quot;&gt;Open
2131 Broadcast Encoder&lt;/a&gt;, at listen over de som har lisensavtale med
2132 MPEG-LA er
2133 &lt;a href=&quot;http://www.mpeg-la.com/main/programs/AVC/Pages/Licensees.aspx&quot;&gt;tilgjengelig
2134 på web&lt;/a&gt;. Veldig fint å oppdage hvor den finnes, da jeg må ha lett
2135 etter feil ting da jeg forsøke å finne den. Der står ikke NRK, men
2136 flere andre &quot;Broadcasting Company&quot;-oppføringer. Lurer på om det betyr
2137 at NRK ikke trenger avtale, eller noe helt annet?&lt;/p&gt;
2138 </description>
2139 </item>
2140
2141 <item>
2142 <title>Trenger en avtale med MPEG-LA for å publisere og kringkaste H.264-video?</title>
2143 <link>http://people.skolelinux.org/pere/blog/Trenger_en_avtale_med_MPEG_LA_for___publisere_og_kringkaste_H_264_video_.html</link>
2144 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Trenger_en_avtale_med_MPEG_LA_for___publisere_og_kringkaste_H_264_video_.html</guid>
2145 <pubDate>Thu, 21 Jun 2012 13:40:00 +0200</pubDate>
2146 <description>&lt;p&gt;Trengs det avtale med MPEG-LA for å ha lovlig rett til å
2147 distribuere og kringkaste video i MPEG4 eller med videokodingen H.264?
2148 &lt;a href=&quot;http://webmink.com/essays/h-264/&quot;&gt;H.264 og MPEG4 er jo ikke en
2149 fri og åpen standard&lt;/a&gt; i henhold til
2150 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Fri_og__pen_standard__slik_Digistan_ser_det.html&quot;&gt;definisjonen
2151 til Digistan&lt;/a&gt;, så i enkelte land er det ingen tvil om at du må ha
2152 en slik avtale, men jeg må innrømme at jeg ikke vet om det også
2153 gjelder Norge. Det ser uansett ut til å være en juridisk interessant
2154 problemstilling. Men jeg tenkte her om dagen som så, at hvis det er
2155 nødvendig, så har store aktører som
2156 &lt;a href=&quot;http://www.nrk.no/&quot;&gt;NRK&lt;/a&gt; og
2157 &lt;a href=&quot;http://www.regjeringen.no/&quot;&gt;regjeringen&lt;/a&gt; skaffet seg en
2158 slik avtale. Jeg har derfor sendt forespørsel til begge (for
2159 regjeringen sin del er det Departementenes Servicesenter som gjør
2160 jobben), og bedt om kopi av eventuelle avtaler de har om bruk av MPEG
2161 og/eller H.264 med MPEG-LA eller andre aktører som opererer på vegne
2162 av MPEG-LA. Her er kopi av eposten jeg har sendt til
2163 &lt;a href=&quot;http://www.dss.dep.no/&quot;&gt;Departementenes Servicesenter&lt;/a&gt;.
2164 Forespørselen til NRK er veldig lik.&lt;/p&gt;
2165
2166 &lt;p&gt;&lt;blockquote&gt;
2167
2168 &lt;p&gt;Date: Tue, 19 Jun 2012 15:18:33 +0200
2169 &lt;br&gt;From: Petter Reinholdtsen
2170 &lt;br&gt;To: postmottak@dss.dep.no
2171 &lt;br&gt;Subject: Innsynsbegjæring om MPEG/H.264-relaterte avtaler
2172
2173 &lt;p&gt;Hei. Jeg ber herved om innsyn og kopi av dokumenter i DSS relatert
2174 til avtaler rundt bruk av videoformatene MPEG og H.264. Jeg er
2175 spesielt interessert i å vite om DSS har lisensavtale med MPEG-LA
2176 eller noen som representerer MPEG-LA i Norge.&lt;/p&gt;
2177
2178 &lt;p&gt;MPEG og H.264 er videoformater som brukes både til kringkasting
2179 (f.eks. i bakkenett og kabel-TV) og videopublisering på web, deriblant
2180 via Adobe Flash. MPEG-LA, &amp;lt;URL:
2181 &lt;a href=&quot;http://www.mpeg-la.com/&quot;&gt;http://www.mpeg-la.com/&lt;/a&gt; &amp;gt;, er
2182 en organisasjon som har fått oppgaven, av de kjente rettighetshavere
2183 av immaterielle rettigheter knyttet til MPEG og H.264, å selge
2184 bruksrett for MPEG og H.264.&lt;/p&gt;
2185
2186 &lt;p&gt;Via regjeringen.no kringkastes med MPEG og H.264-baserte
2187 videoformater, og dette ser ut til å være organisert av DSS. Jeg
2188 antar dermed at DSS har avtale med en eller annen aktør om dette.&lt;/p&gt;
2189
2190 &lt;p&gt;F.eks. har Adobe Premiere Pro har følgende klausul i følge &amp;lt;URL:
2191 &lt;a href=&quot;http://news.cnet.com/8301-30685_3-20000101-264.html&quot;&gt;http://news.cnet.com/8301-30685_3-20000101-264.html&lt;/a&gt;
2192 &amp;gt;:&lt;/p&gt;
2193
2194 &lt;p&gt;&lt;blockquote&gt;
2195
2196 &lt;p&gt;6.17. AVC DISTRIBUTION. The following notice applies to software
2197 containing AVC import and export functionality: THIS PRODUCT IS
2198 LICENSED UNDER THE AVC PATENT PORTFOLIO LICENSE FOR THE PERSONAL AND
2199 NON-COMMERCIAL USE OF A CONSUMER TO (a) ENCODE VIDEO IN COMPLIANCE
2200 WITH THE AVC STANDARD (&quot;AVC VIDEO&quot;) AND/OR (b) DECODE AVC VIDEO THAT
2201 WAS ENCODED BY A CONSUMER ENGAGED IN A PERSONAL AND NON-COMMERCIAL
2202 ACTIVITY AND/OR AVC VIDEO THAT WAS OBTAINED FROM A VIDEO PROVIDER
2203 LICENSED TO PROVIDE AVC VIDEO. NO LICENSE IS GRANTED OR SHALL BE
2204 IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE OBTAINED
2205 FROM MPEG LA L.L.C. SEE
2206 &lt;a href=&quot;http://www.mpegla.com&quot;&gt;http://www.mpegla.com&lt;/a&gt;.&lt;/p&gt;
2207
2208 &lt;/blockquote&gt;&lt;/p&gt;
2209
2210 &lt;p&gt;Her er det kun &quot;non-commercial&quot; og &quot;personal and non-commercial&quot;
2211 aktivitet som er tillatt uten ekstra avtale med MPEG-LA.&lt;/p&gt;
2212
2213 &lt;p&gt;Et annet tilsvarende eksempel er Apple Final Cut Pro, som har
2214 følgende klausul i følge &amp;lt;URL:
2215 &lt;a href=&quot;http://images.apple.com/legal/sla/docs/finalcutstudio2.pdf&quot;&gt;http://images.apple.com/legal/sla/docs/finalcutstudio2.pdf&lt;/a&gt;
2216 &amp;gt;:&lt;/p&gt;
2217
2218 &lt;p&gt;&lt;blockquote&gt;
2219
2220 &lt;p&gt;15. Merknad om H.264/AVC. Hvis Apple-programvaren inneholder
2221 funksjonalitet for AVC-koding og/eller AVC-dekoding, krever
2222 kommersiell bruk ekstra lisensiering og følgende gjelder:
2223 AVC-FUNKSJONALITETEN I DETTE PRODUKTET KAN KUN ANVENDES AV
2224 FORBRUKERE OG KUN FOR PERSONLIG OG IKKE- KOMMERSIELL BRUK TIL (i)
2225 KODING AV VIDEO I OVERENSSTEMMELSE MED AVC-STANDARDEN (&quot;AVC-VIDEO&quot;)
2226 OG/ELLER (ii) DEKODING AV AVC-VIDEO SOM ER KODET AV EN FORBRUKER TIL
2227 PERSONLIG OG IKKE-KOMMERSIELL BRUK OG/ELLER DEKODING AV AVC-VIDEO
2228 FRA EN VIDEOLEVERANDØR SOM HAR LISENS TIL Å TILBY
2229 AVC-VIDEO. INFORMASJON OM ANNEN BRUK OG LISENSIERING KAN INNHENTES
2230 FRA MPEG LA L.L.C. SE HTTP://WWW.MPEGLA.COM.&lt;/p&gt;
2231 &lt;/blockquote&gt;&lt;/p&gt;
2232
2233 &lt;p&gt;Tilsvarende gjelder for andre programvarepakker, kamera, etc som
2234 bruker MPEG og H.264, at en må ha en avtale med MPEG-LA for å ha lov
2235 til å bruke programmet/utstyret hvis en skal lage noe annet enn
2236 private filmer og i ikke-kommersiell virksomhet.&lt;/p&gt;
2237
2238 &lt;p&gt;Jeg er altså interessert i kopi av avtaler DSS har som gjør at en
2239 ikke er begrenset av de generelle bruksvilkårene som gjelder for
2240 utstyr som bruker MPEG og/eller H.264.&lt;/p&gt;
2241 &lt;/blockquote&gt;&lt;/p&gt;
2242
2243 &lt;p&gt;Nå venter jeg spent på svaret. Jeg planlegger å blogge om svaret
2244 her.&lt;/p&gt;
2245 </description>
2246 </item>
2247
2248 <item>
2249 <title>Veileder fra DIFI om publisering av offentlige data</title>
2250 <link>http://people.skolelinux.org/pere/blog/Veileder_fra_DIFI_om_publisering_av_offentlige_data.html</link>
2251 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Veileder_fra_DIFI_om_publisering_av_offentlige_data.html</guid>
2252 <pubDate>Fri, 1 Jun 2012 10:40:00 +0200</pubDate>
2253 <description>&lt;p&gt;På onsdag rakk jeg såvidt innom
2254 &lt;a href=&quot;http://www.meetup.com/osloopendata/&quot;&gt;Oslo Open Data Forums&lt;/a&gt;
2255 møte, og fikk lagt hendene mine på DIFIs helt nye veileder
2256 &quot;&lt;a href=&quot;http://veileder.data.norge.no/&quot;&gt;Åpne data. Del og skap
2257 verdier. Veileder i tilgjengeliggjøring av offentlig data&lt;/a&gt;&quot; (også
2258 &lt;a href=&quot;http://www.difi.no/filearchive/veileder-i-tilgjengeliggjoring-av-offentlig-data-web.pdf&quot;&gt;tilgjengelig
2259 som PDF&lt;/a&gt; fra DIFI).&lt;/p&gt;
2260
2261 &lt;p&gt;Veilederen er veldig bra, og nevner viktige problemstillinger og
2262 skisserer f.eks. både verdiskapningspotensialet og formatmulighetene
2263 som en bør ha i bakhodet når en publiserer offentlig informasjon på
2264 maskinlesbart format. Kildekoden til veilederen er
2265 &lt;a href=&quot;https://github.com/difi/veileder-opnedata&quot;&gt;tilgjengelig via
2266 github&lt;/a&gt;, og en kan rapportere tilbakemeldinger og forslag til
2267 forbedringer der (eller via epost og twitter for de som ønsker
2268 det).&lt;/p&gt;
2269
2270 &lt;p&gt;Det eneste jeg virkelig savnet i veilederen var omtale av
2271 &lt;a href=&quot;http://www.w3.org/DesignIssues/LinkedData.html&quot;&gt;w3cs
2272 stjerneklassifisering&lt;/a&gt; av åpne datakilder, som jeg tror ville være
2273 nyttige mentale knagger for de som vurderer å publisere sin
2274 informasjon på som åpne data. Jeg har
2275 &lt;a href=&quot;https://github.com/difi/veileder-opnedata/issues/1&quot;&gt;rapportert
2276 en github-bug&lt;/a&gt; om dette, så får vi se hvordan den blir behandlet.&lt;/p&gt;
2277
2278 &lt;p&gt;Det slo meg at det var veldig lite konkret i veilederen om valg av
2279 bruksvilkår ved publisering (aka lisens), men jeg er ikke sikker på om
2280 det hører hjemme der, da det er et vanskelig tema som kanskje heller
2281 hører hjemme i sin egen veileder. Uansett, anbefaler alle å ta en
2282 titt på veilederen og sikre at alle offentlige etater en har kontakt
2283 med får en kopi.&lt;/p&gt;
2284 </description>
2285 </item>
2286
2287 <item>
2288 <title>HTC One X - Your video? What do you mean?</title>
2289 <link>http://people.skolelinux.org/pere/blog/HTC_One_X___Your_video___What_do_you_mean_.html</link>
2290 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/HTC_One_X___Your_video___What_do_you_mean_.html</guid>
2291 <pubDate>Thu, 26 Apr 2012 13:20:00 +0200</pubDate>
2292 <description>&lt;p&gt;In &lt;a href=&quot;http://www.idg.no/computerworld/article243690.ece&quot;&gt;an
2293 article today&lt;/a&gt; published by Computerworld Norway, the photographer
2294 &lt;a href=&quot;http://www.urke.com/eirik/&quot;&gt;Eirik Helland Urke&lt;/a&gt; reports
2295 that the video editor application included with
2296 &lt;a href=&quot;http://www.htc.com/www/smartphones/htc-one-x/#specs&quot;&gt;HTC One
2297 X&lt;/a&gt; have some quite surprising terms of use. The article is mostly
2298 based on the twitter message from mister Urke, stating:
2299
2300 &lt;p&gt;&lt;blockquote&gt;
2301 &quot;&lt;a href=&quot;http://twitter.com/urke/status/194062269724897280&quot;&gt;Drøy
2302 brukeravtale: HTC kan bruke MINE redigerte videoer kommersielt. Selv
2303 kan jeg KUN bruke dem privat.&lt;/a&gt;&quot;
2304 &lt;/blockquote&gt;&lt;/p&gt;
2305
2306 &lt;p&gt;I quickly translated it to this English message:&lt;/p&gt;
2307
2308 &lt;p&gt;&lt;blockquote&gt;
2309 &quot;Arrogant user agreement: HTC can use MY edited videos
2310 commercially. Although I can ONLY use them privately.&quot;
2311 &lt;/blockquote&gt;&lt;/p&gt;
2312
2313 &lt;p&gt;I&#39;ve been unable to find the text of the license term myself, but
2314 suspect it is a variation of the MPEG-LA terms I
2315 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html&quot;&gt;discovered
2316 with my Canon IXUS 130&lt;/a&gt;. The HTC One X specification specifies that
2317 the recording format of the phone is .amr for audio and .mp3 for
2318 video. AMR is
2319 &lt;a href=&quot;http://en.wikipedia.org/wiki/Adaptive_Multi-Rate_audio_codec#Licensing_and_patent_issues&quot;&gt;Adaptive
2320 Multi-Rate audio codec&lt;/a&gt; with patents which according to the
2321 Wikipedia article require an license agreement with
2322 &lt;a href=&quot;http://www.voiceage.com/&quot;&gt;VoiceAge&lt;/a&gt;. MP4 is
2323 &lt;a href=&quot;http://en.wikipedia.org/wiki/H.264/MPEG-4_AVC#Patent_licensing&quot;&gt;MPEG4 with
2324 H.264&lt;/a&gt;, which according to Wikipedia require a licence agreement
2325 with &lt;a href=&quot;http://www.mpegla.com/&quot;&gt;MPEG-LA&lt;/a&gt;.&lt;/p&gt;
2326
2327 &lt;p&gt;I know why I prefer
2328 &lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;free and open
2329 standards&lt;/a&gt; also for video.&lt;/p&gt;
2330 </description>
2331 </item>
2332
2333 <item>
2334 <title>Changing the default Iceweasel start page in Debian Edu/Squeeze</title>
2335 <link>http://people.skolelinux.org/pere/blog/Changing_the_default_Iceweasel_start_page_in_Debian_Edu_Squeeze.html</link>
2336 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Changing_the_default_Iceweasel_start_page_in_Debian_Edu_Squeeze.html</guid>
2337 <pubDate>Tue, 10 Jan 2012 15:30:00 +0100</pubDate>
2338 <description>&lt;p&gt;In the Squeeze version of
2339 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; soon
2340 to be released, users of the system will get their default browser
2341 start page set from LDAP, allowing the system administrator to point
2342 all users to the school web page by updating one setting in LDAP. In
2343 addition to setting the default start page when a machine boots, users
2344 are shown the same page as a welcome page when they log in for the
2345 first time.&lt;/p&gt;
2346
2347 &lt;p&gt;The LDAP object dc=skole,dc=skolelinux,dc=no have an attribute
2348 labeledURI with &quot;http://www/ LDAP for Debian Edu/Skolelinux&quot; as the
2349 default content. By changing this value to another URL, all users get
2350 to see the page behind this new URL.&lt;/p&gt;
2351
2352 &lt;p&gt;An easy way to update it is by using the ldapvi tool. It can be
2353 called as &quot;&lt;tt&gt;ldapvi -ZD &#39;(cn=admin)&#39;&lt;/tt&gt;&#39; to update LDAP with the
2354 new setting.&lt;/p&gt;
2355
2356 &lt;p&gt;We have written the code to adjust the default start page and show
2357 the welcome page, and I wonder if there is an easier way to do this
2358 from within Iceweasel instead.&lt;/p&gt;
2359 </description>
2360 </item>
2361
2362 <item>
2363 <title>Hvordan enkelt laste ned filmer fra NRK</title>
2364 <link>http://people.skolelinux.org/pere/blog/Hvordan_enkelt_laste_ned_filmer_fra_NRK.html</link>
2365 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Hvordan_enkelt_laste_ned_filmer_fra_NRK.html</guid>
2366 <pubDate>Sat, 5 Nov 2011 15:20:00 +0100</pubDate>
2367 <description>&lt;p&gt;Ofte har jeg lyst til å laste ned et innslag fra NRKs nettsted for
2368 å se det senere når jeg ikke er på nett, eller for å ha det
2369 tilgjengelig når jeg en gang i fremtiden ønsker å referere til
2370 innslaget selv om NRK har fjernet det fra sine nettsider. I dag fant
2371 jeg et lite script som fikser jobben.&lt;/p&gt;
2372
2373 &lt;p&gt;Scriptet er laget av Jan Henning Thorsen og tilgjengelig fra
2374 &lt;a href=&quot;http://jhthorsen.github.com/snippets/nrk-downloader/&quot;&gt;github&lt;/a&gt;,
2375 og gjør det veldig enkelt å laste ned. Kjør &lt;tt&gt;nrk-downloader.sh
2376 http://www1.nrk.no/nett-tv/klipp/582810&lt;/tt&gt; for å hente ned et enkelt
2377 innslag eller &lt;tt&gt;nrk-downloader.sh
2378 http://www1.nrk.no/nett-tv/kategori/3521&lt;/tt&gt; for å laste ned alle
2379 episodene i en serie.&lt;/p&gt;
2380
2381 &lt;p&gt;Det er ikke rakettforskning å laste ned NRK-&quot;strømmer&quot;, og
2382 tidligere gjorde jeg dette manuelt med mplayer. Scriptet til
2383 Hr. Thorsen gjør det raskere og enklere for meg, men jeg vil ikke si
2384 at det er en revolusjonerende løsning. Jeg mener jo fortsatt at
2385 påstanden fra NRKs ansatte om at det er
2386 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Best___ikke_fortelle_noen_at_streaming_er_nedlasting___.html&quot;&gt;vesensforskjellig
2387 å legge tilgjengelig for nedlasting og for streaming&lt;/a&gt; er
2388 meningsløs.&lt;/p&gt;
2389 </description>
2390 </item>
2391
2392 <item>
2393 <title>What is missing in the Debian desktop, or why my parents use Kubuntu</title>
2394 <link>http://people.skolelinux.org/pere/blog/What_is_missing_in_the_Debian_desktop__or_why_my_parents_use_Kubuntu.html</link>
2395 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/What_is_missing_in_the_Debian_desktop__or_why_my_parents_use_Kubuntu.html</guid>
2396 <pubDate>Fri, 29 Jul 2011 08:10:00 +0200</pubDate>
2397 <description>&lt;p&gt;While at Debconf11, I have several times during discussions
2398 mentioned the issues I believe should be improved in Debian for its
2399 desktop to be useful for more people. The use case for this is my
2400 parents, which are currently running Kubuntu which solve the
2401 issues.&lt;/p&gt;
2402
2403 &lt;p&gt;I suspect these four missing features are not very hard to
2404 implement. After all, they are present in Ubuntu, so if we wanted to
2405 do this in Debian we would have a source.&lt;/p&gt;
2406
2407 &lt;ol&gt;
2408
2409 &lt;li&gt;&lt;strong&gt;Simple GUI based upgrade of packages.&lt;/strong&gt; When there
2410 are new packages available for upgrades, a icon in the KDE status bar
2411 indicate this, and clicking on it will activate the simple upgrade
2412 tool to handle it. I have no problem guiding both of my parents
2413 through the process over the phone. If a kernel reboot is required,
2414 this too is indicated by the status bars and the upgrade tool. Last
2415 time I checked, nothing with the same features was working in KDE in
2416 Debian.&lt;/li&gt;
2417
2418 &lt;li&gt;&lt;strong&gt;Simple handling of missing Firefox browser
2419 plugins.&lt;/strong&gt; When the browser encounter a MIME type it do not
2420 currently have a handler for, it will ask the user if the system
2421 should search for a package that would add support for this MIME type,
2422 and if the user say yes, the APT sources will be searched for packages
2423 advertising the MIME type in their control file (visible in the
2424 Packages file in the APT archive). If one or more packages are found,
2425 it is a simple click of the mouse to add support for the missing mime
2426 type. If the package require the user to accept some non-free
2427 license, this is explained to the user. The entire process make it
2428 more clear to the user why something do not work in the browser, and
2429 make the chances higher for the user to blame the web page authors and
2430 not the browser for any missing features.&lt;/li&gt;
2431
2432 &lt;li&gt;&lt;strong&gt;Simple handling of missing multimedia codec/format
2433 handlers.&lt;/strong&gt; When the media players encounter a format or codec
2434 it is not supporting, a dialog pop up asking the user if the system
2435 should search for a package that would add support for it. This
2436 happen with things like MP3, Windows Media or H.264. The selection
2437 and installation procedure is very similar to the Firefox browser
2438 plugin handling. This is as far as I know implemented using a
2439 gstreamer hook. The end result is that the user easily get access to
2440 the codecs that are present from the APT archives available, while
2441 explaining more on why a given format is unsupported by Ubuntu.&lt;/li&gt;
2442
2443 &lt;li&gt;&lt;strong&gt;Better browser handling of some MIME types.&lt;/strong&gt; When
2444 displaying a text/plain file in my Debian browser, it will propose to
2445 start emacs to show it. If I remember correctly, when doing the same
2446 in Kunbutu it show the file as a text file in the browser. At least I
2447 know Opera will show text files within the browser. I much prefer the
2448 latter behaviour.&lt;/li&gt;
2449
2450 &lt;/ol&gt;
2451
2452 &lt;p&gt;There are other nice features as well, like the simplified suite
2453 upgrader, but given that I am the one mostly doing the dist-upgrade,
2454 it do not matter much.&lt;/p&gt;
2455
2456 &lt;p&gt;I really hope we could get these features in place for the next
2457 Debian release. It would require the coordinated effort of several
2458 maintainers, but would make the end user experience a lot better.&lt;/p&gt;
2459 </description>
2460 </item>
2461
2462 <item>
2463 <title>Gnash enteres Google Summer of Code 2011</title>
2464 <link>http://people.skolelinux.org/pere/blog/Gnash_enteres_Google_Summer_of_Code_2011.html</link>
2465 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Gnash_enteres_Google_Summer_of_Code_2011.html</guid>
2466 <pubDate>Wed, 6 Apr 2011 09:00:00 +0200</pubDate>
2467 <description>&lt;p&gt;&lt;a href=&quot;http://www.getgnash.org/&quot;&gt;The Gnash project&lt;/a&gt; is still
2468 the most promising solution for a Free Software Flash implementation.
2469 A few days ago the project
2470 &lt;a href=&quot;http://lists.gnu.org/archive/html/gnash-dev/2011-04/msg00011.html&quot;&gt;announced&lt;/a&gt;
2471 that it will participate in Google Summer of Code. I hope many
2472 students apply, and that some of them succeed in getting AVM2 support
2473 into Gnash.&lt;/p&gt;
2474 </description>
2475 </item>
2476
2477 <item>
2478 <title>Why isn&#39;t Debian Edu using VLC?</title>
2479 <link>http://people.skolelinux.org/pere/blog/Why_isn_t_Debian_Edu_using_VLC_.html</link>
2480 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Why_isn_t_Debian_Edu_using_VLC_.html</guid>
2481 <pubDate>Sat, 27 Nov 2010 11:30:00 +0100</pubDate>
2482 <description>&lt;p&gt;In the latest issue of Linux Journal, the readers choices were
2483 presented, and the winner among the multimedia player were VLC.
2484 Personally, I like VLC, and it is my player of choice when I first try
2485 to play a video file or stream. Only if VLC fail will I drag out
2486 gmplayer to see if it can do better. The reason is mostly the failure
2487 model and trust. When VLC fail, it normally pop up a error message
2488 reporting the problem. When mplayer fail, it normally segfault or
2489 just hangs. The latter failure mode drain my trust in the program.&lt;p&gt;
2490
2491 &lt;p&gt;But even if VLC is my player of choice, we have choosen to use
2492 mplayer in &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian
2493 Edu/Skolelinux&lt;/a&gt;. The reason is simple. We need a good browser
2494 plugin to play web videos seamlessly, and the VLC browser plugin is
2495 not very good. For example, it lack in-line control buttons, so there
2496 is no way for the user to pause the video. Also, when I
2497 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/BrowserMultimedia&quot;&gt;last
2498 tested the browser plugins&lt;/a&gt; available in Debian, the VLC plugin
2499 failed on several video pages where mplayer based plugins worked. If
2500 the browser plugin for VLC was as good as the gecko-mediaplayer
2501 package (which uses mplayer), we would switch.&lt;/P&gt;
2502
2503 &lt;p&gt;While VLC is a good player, its user interface is slightly
2504 annoying. The most annoying feature is its inconsistent use of
2505 keyboard shortcuts. When the player is in full screen mode, its
2506 shortcuts are different from when it is playing the video in a window.
2507 For example, space only work as pause when in full screen mode. I
2508 wish it had consisten shortcuts and that space also would work when in
2509 window mode. Another nice shortcut in gmplayer is [enter] to restart
2510 the current video. It is very nice when playing short videos from the
2511 web and want to restart it when new people arrive to have a look at
2512 what is going on.&lt;/p&gt;
2513 </description>
2514 </item>
2515
2516 <item>
2517 <title>Norgeskartet på mange vis - via OpenStreetmap.org</title>
2518 <link>http://people.skolelinux.org/pere/blog/Norgeskartet_p__mange_vis___via_OpenStreetmap_org.html</link>
2519 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Norgeskartet_p__mange_vis___via_OpenStreetmap_org.html</guid>
2520 <pubDate>Mon, 1 Nov 2010 11:15:00 +0100</pubDate>
2521 <description>&lt;p&gt;Har oppdaget at mange ikke er klar over at OpenStreetmap.org er
2522 tilgjengelig i en rekke forskjellige formater. Her er en liste med
2523 eksporter jeg kjenner til for Norge, for de som trenger et
2524 fribrukskart til sine tjenester:&lt;/p&gt;
2525
2526 &lt;p&gt;&lt;ul&gt;
2527
2528 &lt;li&gt;Cloudmade tilbyr OSM XML, Garmin Map Files, Osmosis country
2529 bounding polygon, Shapefile, Navit maps, GPX POI, TomTom POI og OSM
2530 XML feature extracts via
2531 &lt;a href=&quot;http://downloads.cloudmade.com/europe/norway&quot;&gt;sine
2532 nedlastingssider&lt;/a&gt;.&lt;/li&gt;
2533
2534 &lt;li&gt;Geofabric tilbyr
2535 &lt;a href=&quot;http://download.geofabrik.de/osm/europe/norway.osm.bz2&quot;&gt;OSM
2536 XML&lt;/a&gt;,
2537 &lt;a href=&quot;http://download.geofabrik.de/osm/europe/norway.osm.pbf&quot;&gt;OSM
2538 protobuf binærformat&lt;/a&gt; og
2539 &lt;a href=&quot;http://download.geofabrik.de/osm/europe/norway.shp.zip&quot;&gt;ESRI
2540 Shapefile (EPSG:4326)&lt;/a&gt; fra sine nedlastingssider.&lt;/li&gt;
2541
2542 &lt;li&gt;Frikart.no tilbyr
2543 &lt;a href=&quot;http://www.frikart.no/garmin/&quot;&gt;Garmin-kart&lt;/a&gt; i uike
2544 varianter for veibruk og turbruk sommer og vinter.&lt;/li&gt;
2545
2546 &lt;/ul&gt;&lt;/p&gt;
2547
2548 &lt;p&gt;Kartene oppdateres regelmessig, som oftest hver uke. Det skulle
2549 dermed være noe for enhver smak.&lt;/p&gt;
2550 </description>
2551 </item>
2552
2553 <item>
2554 <title>Best å ikke fortelle noen at streaming er nedlasting...</title>
2555 <link>http://people.skolelinux.org/pere/blog/Best___ikke_fortelle_noen_at_streaming_er_nedlasting___.html</link>
2556 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Best___ikke_fortelle_noen_at_streaming_er_nedlasting___.html</guid>
2557 <pubDate>Sat, 30 Oct 2010 11:20:00 +0200</pubDate>
2558 <description>&lt;p&gt;I dag la jeg inn en kommentar på en sak hos NRKBeta
2559 &lt;a href=&quot;http://nrkbeta.no/2010/10/27/bakom-blindpassasjer-del-1/&quot;&gt;om
2560 hvordan TV-serien Blindpassasjer ble laget&lt;/a&gt; i forbindelse med at
2561 filmene NRK la ut ikke var tilgjengelig i et
2562 &lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;fritt og
2563 åpent format&lt;/a&gt;. Dette var det jeg skrev publiserte der 07:39.&lt;/p&gt;
2564
2565 &lt;p&gt;&lt;blockquote&gt;
2566 &lt;p&gt;&quot;Vi fikk en kommentar rundt måten streamet innhold er beskyttet fra
2567 nedlasting. Mange av oss som kan mer enn gjennomsnittet om systemer
2568 som dette, vet at det stort sett er mulig å lure ut ting med den
2569 nødvendige forkunnskapen.&quot;&lt;/p&gt;
2570
2571 &lt;p&gt;Haha. Å streame innhold er det samme som å laste ned innhold, så å
2572 beskytte en stream mot nedlasting er ikke mulig. Å skrive noe slikt
2573 er å forlede leseren.&lt;/p&gt;
2574
2575 &lt;p&gt;Med den bakgrunn blir forklaringen om at noen rettighetshavere kun
2576 vil tillate streaming men ikke nedlasting meningsløs.&lt;/p&gt;
2577
2578 &lt;p&gt;Anbefaler forresten å lese
2579 &lt;a href=&quot;http://blogs.computerworlduk.com/simon-says/2010/10/drm-is-toxic-to-culture/index.htm&quot;&gt;http://blogs.computerworlduk.com/simon-says/2010/10/drm-is-toxic-to-culture/index.htm&lt;/a&gt;
2580 om hva som ville være konsekvensen hvis digitale avspillingssperrer
2581 (DRM) fungerte. Det gjør de naturligvis ikke teknisk - det er jo
2582 derfor de må ha totalitære juridiske beskyttelsesmekanismer på plass,
2583 men det er skremmende hva samfunnet tillater og NRK er med på å bygge
2584 opp under.&lt;/p&gt;
2585 &lt;/blockquote&gt;&lt;/p&gt;
2586
2587 &lt;p&gt;Ca. 20 minutter senere får jeg følgende epost fra Anders Hofseth i
2588 NRKBeta:&lt;/p&gt;
2589
2590 &lt;p&gt;&lt;blockquote&gt;
2591 &lt;p&gt;From: Anders Hofseth &amp;lt;XXX@gmail.com&gt;
2592 &lt;br&gt;To: &quot;pere@hungry.com&quot; &amp;lt;pere@hungry.com&gt;
2593 &lt;br&gt;Cc: Eirik Solheim &amp;lt;XXX@gmail.com&gt;, Jon Ståle Carlsen &amp;lt;XXX@gmail.com&gt;, Henrik Lied &amp;lt;XXX@gmail.com&gt;
2594 &lt;br&gt;Subject: Re: [NRKbeta] Kommentar: &quot;Bakom Blindpassasjer: del 1&quot;
2595 &lt;br&gt;Date: Sat, 30 Oct 2010 07:58:44 +0200&lt;/p&gt;
2596
2597 &lt;p&gt;Hei Petter.
2598 &lt;br&gt;Det du forsøker dra igang er egentlig en interessant diskusjon,
2599 men om vi skal kjøre den i kommentarfeltet her, vil vi kunne bli bedt
2600 om å fjerne blindpassasjer fra nett- tv og det vil heller ikke bli
2601 særlig lett å klarere ut noe annet arkivmateriale på lang tid.&lt;/p&gt;
2602
2603 &lt;p&gt;Dette er en situasjon NRKbeta ikke ønsker, så kommentaren er
2604 fjernet og den delen av diskusjonen er avsluttet på nrkbeta, vi antar
2605 konsekvensene vi beskriver ikke er noe du ønsker heller...&lt;/p&gt;
2606
2607 &lt;p&gt;Med hilsen,
2608 &lt;br&gt;-anders&lt;/p&gt;
2609
2610 &lt;p&gt;Ring meg om noe er uklart: 95XXXXXXX&lt;/p&gt;
2611 &lt;/blockquote&gt;&lt;/p&gt;
2612
2613 &lt;p&gt;Ble så fascinert over denne holdningen, at jeg forfattet og sendte
2614 over følgende svar. I og med at debatten er fjernet fra NRK Betas
2615 kommentarfelt, så velger jeg å publisere her på bloggen min i stedet.
2616 Har fjernet epostadresser og telefonnummer til de involverte, for å
2617 unngå at de tiltrekker seg uønskede direkte kontaktforsøk.&lt;/p&gt;
2618
2619 &lt;p&gt;&lt;blockquote&gt;
2620 &lt;p&gt;From: Petter Reinholdtsen &amp;lt;pere@hungry.com&gt;
2621 &lt;br&gt;To: Anders Hofseth &amp;lt;XXX@gmail.com&gt;
2622 &lt;br&gt;Cc: Eirik Solheim &amp;lt;XXX@gmail.com&gt;,
2623 &lt;br&gt; Jon Ståle Carlsen &amp;lt;XXX@gmail.com&gt;,
2624 &lt;br&gt; Henrik Lied &amp;lt;XXX@gmail.com&gt;
2625 &lt;br&gt;Subject: Re: [NRKbeta] Kommentar: &quot;Bakom Blindpassasjer: del 1&quot;
2626 &lt;br&gt;Date: Sat, 30 Oct 2010 08:24:34 +0200&lt;/p&gt;
2627
2628 &lt;p&gt;[Anders Hofseth]
2629 &lt;br&gt;&gt; Hei Petter.&lt;/p&gt;
2630
2631 &lt;p&gt;Hei.&lt;/p&gt;
2632
2633 &lt;p&gt;&gt; Det du forsøker dra igang er egentlig en interessant diskusjon, men
2634 &lt;br&gt;&gt; om vi skal kjøre den i kommentarfeltet her, vil vi kunne bli bedt om
2635 &lt;br&gt;&gt; å fjerne blindpassasjer fra nett- tv og det vil heller ikke bli
2636 &lt;br&gt;&gt; særlig lett å klarere ut noe annet arkivmateriale på lang tid.&lt;/p&gt;
2637
2638 &lt;p&gt;Godt å se at du er enig i at dette er en interessant diskusjon. Den
2639 vil nok fortsette en stund til. :)&lt;/p&gt;
2640
2641 &lt;p&gt;Må innrømme at jeg synes det er merkelig å lese at dere i NRK med
2642 vitende og vilje ønsker å forlede rettighetshaverne for å kunne
2643 fortsette å legge ut arkivmateriale.&lt;/p&gt;
2644
2645 &lt;p&gt;Kommentarer og diskusjoner i bloggene til NRK Beta påvirker jo ikke
2646 faktum, som er at streaming er det samme som nedlasting, og at innhold
2647 som er lagt ut på nett kan lagres lokalt for avspilling når en ønsker
2648 det.&lt;/p&gt;
2649
2650 &lt;p&gt;Det du sier er jo at klarering av arkivmateriale for publisering på
2651 web krever at en holder faktum skjult fra debattfeltet på NRKBeta.
2652 Det er ikke et argument som holder vann. :)&lt;/p&gt;
2653
2654 &lt;p&gt;&gt; Dette er en situasjon NRKbeta ikke ønsker, så kommentaren er fjernet
2655 &lt;br&gt;&gt; og den delen av diskusjonen er avsluttet på nrkbeta, vi antar
2656 &lt;br&gt;&gt; konsekvensene vi beskriver ikke er noe du ønsker heller...&lt;/p&gt;
2657
2658 &lt;p&gt;Personlig ønsker jeg at NRK skal slutte å stikke hodet i sanden og
2659 heller være åpne på hvordan virkeligheten fungerer, samt ta opp kampen
2660 mot de som vil låse kulturen inne. Jeg synes det er en skam at NRK
2661 godtar å forlede publikum. Ville heller at NRK krever at innhold som
2662 skal sendes skal være uten bruksbegresninger og kan publiseres i
2663 formater som heller ikke har bruksbegresninger (bruksbegresningene til
2664 H.264 burde få varselbjellene i NRK til å ringe).&lt;/p&gt;
2665
2666 &lt;p&gt;At NRK er med på DRM-tåkeleggingen og at det kommer feilaktive
2667 påstander om at &quot;streaming beskytter mot nedlasting&quot; som bare er egnet
2668 til å bygge opp om en myte som er skadelig for samfunnet som helhet.&lt;/p&gt;
2669
2670 &lt;p&gt;Anbefaler &amp;lt;URL:&lt;a href=&quot;http://webmink.com/2010/09/03/h-264-and-foss/&quot;&gt;http://webmink.com/2010/09/03/h-264-and-foss/&lt;/a&gt;&gt; og en
2671 titt på
2672 &amp;lt;URL: &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html&quot;&gt;http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html&lt;/a&gt; &gt;.
2673 for å se hva slags bruksbegresninger H.264 innebærer.&lt;/p&gt;
2674
2675 &lt;p&gt;Hvis dette innebærer at NRK må være åpne med at arkivmaterialet ikke
2676 kan brukes før rettighetshaverene også innser at de er med på å skade
2677 samfunnets kultur og kollektive hukommelse, så får en i hvert fall
2678 synliggjort konsekvensene og antagelig mer flammer på en debatt som er
2679 langt på overtid.&lt;/p&gt;
2680
2681 &lt;p&gt;&gt; Ring meg om noe er uklart: XXX&lt;/p&gt;
2682
2683 &lt;p&gt;Intet uklart, men ikke imponert over måten dere håndterer debatten på.
2684 Hadde du i stedet kommet med et tilsvar i kommentarfeltet der en
2685 gjorde det klart at blindpassasjer-blogpostingen ikke var riktig sted
2686 for videre diskusjon hadde dere i mine øyne kommet fra det med
2687 ryggraden på plass.&lt;/p&gt;
2688
2689 &lt;p&gt;PS: Interessant å se at NRK-ansatte ikke bruker NRK-epostadresser.&lt;/p&gt;
2690
2691 &lt;p&gt;Som en liten avslutning, her er noen litt morsomme innslag om temaet.
2692 &amp;lt;URL: &lt;a href=&quot;http://www.archive.org/details/CopyingIsNotTheft&quot;&gt;http://www.archive.org/details/CopyingIsNotTheft&lt;/a&gt; &gt; og
2693 &amp;lt;URL: &lt;a href=&quot;http://patentabsurdity.com/&quot;&gt;http://patentabsurdity.com/&lt;/a&gt; &gt; hadde vært noe å kringkaste på
2694 NRK1. :)&lt;/p&gt;
2695
2696 &lt;p&gt;Vennlig hilsen,
2697 &lt;br&gt;--
2698 &lt;br&gt;Petter Reinholdtsen&lt;/p&gt;
2699 </description>
2700 </item>
2701
2702 <item>
2703 <title>Pledge for funding to the Gnash project to get AVM2 support</title>
2704 <link>http://people.skolelinux.org/pere/blog/Pledge_for_funding_to_the_Gnash_project_to_get_AVM2_support.html</link>
2705 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Pledge_for_funding_to_the_Gnash_project_to_get_AVM2_support.html</guid>
2706 <pubDate>Tue, 19 Oct 2010 14:45:00 +0200</pubDate>
2707 <description>&lt;p&gt;&lt;a href=&quot;http://www.getgnash.org/&quot;&gt;The Gnash project&lt;/a&gt; is the
2708 most promising solution for a Free Software Flash implementation. It
2709 has done great so far, but there is still far to go, and recently its
2710 funding has dried up. I believe AVM2 support in Gnash is vital to the
2711 continued progress of the project, as more and more sites show up with
2712 AVM2 flash files.&lt;/p&gt;
2713
2714 &lt;p&gt;To try to get funding for developing such support, I have started
2715 &lt;a href=&quot;http://www.pledgebank.com/gnash-avm2&quot;&gt;a pledge&lt;/a&gt; with the
2716 following text:&lt;/P&gt;
2717
2718 &lt;p&gt;&lt;blockquote&gt;
2719
2720 &lt;p&gt;&quot;I will pay 100$ to the Gnash project to develop AVM2 support but
2721 only if 10 other people will do the same.&quot;&lt;/p&gt;
2722
2723 &lt;p&gt;- Petter Reinholdtsen, free software developer&lt;/p&gt;
2724
2725 &lt;p&gt;Deadline to sign up by: 24th December 2010&lt;/p&gt;
2726
2727 &lt;p&gt;The Gnash project need to get support for the new Flash file
2728 format AVM2 to work with a lot of sites using Flash on the
2729 web. Gnash already work with a lot of Flash sites using the old AVM1
2730 format, but more and more sites are using the AVM2 format these
2731 days. The project web page is available from
2732 http://www.getgnash.org/ . Gnash is a free software implementation
2733 of Adobe Flash, allowing those of us that do not accept the terms of
2734 the Adobe Flash license to get access to Flash sites.&lt;/p&gt;
2735
2736 &lt;p&gt;The project need funding to get developers to put aside enough
2737 time to develop the AVM2 support, and this pledge is my way to try
2738 to get this to happen.&lt;/p&gt;
2739
2740 &lt;p&gt;The project accept donations via the OpenMediaNow foundation,
2741 &lt;a href=&quot;http://www.openmedianow.org/?q=node/32&quot;&gt;http://www.openmedianow.org/?q=node/32&lt;/a&gt; .&lt;/p&gt;
2742
2743 &lt;/blockquote&gt;&lt;/p&gt;
2744
2745 &lt;p&gt;I hope you will support this effort too. I hope more than 10
2746 people will participate to make this happen. The more money the
2747 project gets, the more features it can develop using these funds.
2748 :)&lt;/p&gt;
2749 </description>
2750 </item>
2751
2752 <item>
2753 <title>Standardkrav inn i anbudstekster?</title>
2754 <link>http://people.skolelinux.org/pere/blog/Standardkrav_inn_i_anbudstekster_.html</link>
2755 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Standardkrav_inn_i_anbudstekster_.html</guid>
2756 <pubDate>Sun, 17 Oct 2010 19:30:00 +0200</pubDate>
2757 <description>&lt;p&gt;Hvis det å følge standarder skal ha noen effekt overfor
2758 leverandører, så må slike krav og ønsker komme inn i anbudstekster når
2759 systemer kjøpes inn. Har ikke sett noen slike formuleringer i anbud
2760 så langt, men har tenkt litt på hva som bør inn. Her er noen ideer og
2761 forslag. Min drøm er at en kan sette krav til slik støtte i
2762 anbudstekster, men så langt er det nok mer sannsynlig at en må nøye
2763 seg med å skrive at det er en fordel om slik støtte er tilstede i
2764 leveranser.&lt;/p&gt;
2765
2766 &lt;p&gt;Som systemadministrator på Universitetet er det typisk to områder
2767 som er problematiske for meg. Det ene er admin-grensesnittene på
2768 tjenermaskiner, som vi ønsker å bruke via ssh. Det andre er nettsider
2769 som vi ønsker å bruke via en nettleser. For begge deler er det viktig
2770 at protokollene og formatene som brukes følger standarder våre verktøy
2771 støtter.&lt;/p&gt;
2772
2773 &lt;p&gt;De fleste har nå støtte for SSH som overføringsprotkoll for
2774 admin-grensesnittet, men det er ikke tilstrekkelig for å kunne stille
2775 inn f.eks BIOS og RAID-kontroller via ssh-forbindelsen. Det er flere
2776 aktuelle protokoller for fremvisning av BIOS-oppsett og
2777 oppstartmeldinger, og min anbefaling ville være å kreve
2778 VT100-kompatibel protokoll, for å sikre at flest mulig
2779 terminalemulatorer kan forstå hva som kommer fra admin-grensesnittet
2780 via ssh. Andre aktuelle alternativer er ANSI-terminalemulering og
2781 VT220. Kanskje en formulering ala dette i anbudsutlysninger vil
2782 fungere:&lt;/p&gt;
2783
2784 &lt;p&gt;&lt;blockquote&gt;
2785 BIOS og oppstartmeldinger i administrasjonsgrensesnittet til maskinen
2786 bør/skal være tilgjengelig via SSH-protokollen som definert av IETF
2787 (RFC 4251 mfl.) og følge terminalfremvisningprotokollen VT100 (ref?)
2788 når en kobler seg til oppstart via ssh.
2789 &lt;/blockquote&gt;&lt;/p&gt;
2790
2791 &lt;p&gt;Har ikke lykkes med å finne en god referanse for
2792 VT100-spesifikasjonen.&lt;/p&gt;
2793
2794 &lt;p&gt;Når det gjelder nettsider, så er det det HTML, CSS og
2795 JavaScript-spesifikasjonen til W3C som gjelder.&lt;/p&gt;
2796
2797 &lt;p&gt;&lt;blockquote&gt;
2798 Alle systemets nettsider bør/skal være i henhold til statens
2799 standardkatalogs krav om nettsider og følge HTML-standarden som
2800 definert av W3C, og validere uten feil hos W3Cs HTML-validator
2801 (http://validator.w3.org). Hvis det brukes CSS så bør/skal denne
2802 validere uten feil hos W3Cs CSS-validator
2803 (http://jigsaw.w3.org/css-validator/). Eventuelle JavaScript skal
2804 være i henhold til EcmaScript-standarden. I tillegg til å følge de
2805 overnevnte standardene skal websidene fungere i nettleserne (fyll inn
2806 relevant liste for organisasjonen) Firefox 3.5, Internet Explorer 8,
2807 Opera 9, etc.
2808 &lt;/blockquote&gt;&lt;/p&gt;
2809
2810 &lt;p&gt;Vil et slikt avsnitt være konkret nok til å få leverandørene til å
2811 lage nettsider som følger standardene og fungerer i flere
2812 nettlesere?&lt;/p&gt;
2813
2814 &lt;p&gt;Tar svært gjerne imot innspill på dette temaet til aktive (at)
2815 nuug.no, og er spesielt interessert i hva andre skriver i sine anbud
2816 for å oppmuntre leverandører til å følge standardene. Kanskje NUUG
2817 burde lage et dokument med forslag til standardformuleringer å ta med
2818 i anbudsutlysninger?&lt;/p&gt;
2819
2820 &lt;p&gt;Oppdatering 2010-12-03: I følge Wikipedias oppføring om
2821 &lt;a href=&quot;http://en.wikipedia.org/wiki/ANSI_escape_code&quot;&gt;ANSI escape
2822 code&lt;/a&gt;, så bruker VT100-terminaler ECMA-48-spesifikasjonen som
2823 basis for sin oppførsel. Det kan dermed være et alternativ når en
2824 skal spesifisere hvordan seriell-konsoll skal fungere.&lt;/p&gt;
2825 </description>
2826 </item>
2827
2828 <item>
2829 <title>Terms of use for video produced by a Canon IXUS 130 digital camera</title>
2830 <link>http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html</link>
2831 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html</guid>
2832 <pubDate>Thu, 9 Sep 2010 23:55:00 +0200</pubDate>
2833 <description>&lt;p&gt;A few days ago I had the mixed pleasure of bying a new digital
2834 camera, a Canon IXUS 130. It was instructive and very disturbing to
2835 be able to verify that also this camera producer have the nerve to
2836 specify how I can or can not use the videos produced with the camera.
2837 Even thought I was aware of the issue, the options with new cameras
2838 are limited and I ended up bying the camera anyway. What is the
2839 problem, you might ask? It is software patents, MPEG-4, H.264 and the
2840 MPEG-LA that is the problem, and our right to record our experiences
2841 without asking for permissions that is at risk.
2842
2843 &lt;p&gt;On page 27 of the Danish instruction manual, this section is
2844 written:&lt;/p&gt;
2845
2846 &lt;blockquote&gt;
2847 &lt;p&gt;This product is licensed under AT&amp;T patents for the MPEG-4 standard
2848 and may be used for encoding MPEG-4 compliant video and/or decoding
2849 MPEG-4 compliant video that was encoded only (1) for a personal and
2850 non-commercial purpose or (2) by a video provider licensed under the
2851 AT&amp;T patents to provide MPEG-4 compliant video.&lt;/p&gt;
2852
2853 &lt;p&gt;No license is granted or implied for any other use for MPEG-4
2854 standard.&lt;/p&gt;
2855 &lt;/blockquote&gt;
2856
2857 &lt;p&gt;In short, the camera producer have chosen to use technology
2858 (MPEG-4/H.264) that is only provided if I used it for personal and
2859 non-commercial purposes, or ask for permission from the organisations
2860 holding the knowledge monopoly (patent) for technology used.&lt;/p&gt;
2861
2862 &lt;p&gt;This issue has been brewing for a while, and I recommend you to
2863 read
2864 &quot;&lt;a href=&quot;http://www.osnews.com/story/23236/Why_Our_Civilization_s_Video_Art_and_Culture_is_Threatened_by_the_MPEG-LA&quot;&gt;Why
2865 Our Civilization&#39;s Video Art and Culture is Threatened by the
2866 MPEG-LA&lt;/a&gt;&quot; by Eugenia Loli-Queru and
2867 &quot;&lt;a href=&quot;http://webmink.com/2010/09/03/h-264-and-foss/&quot;&gt;H.264 Is Not
2868 The Sort Of Free That Matters&lt;/a&gt;&quot; by Simon Phipps to learn more about
2869 the issue. The solution is to support the
2870 &lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;free and
2871 open standards&lt;/a&gt; for video, like &lt;a href=&quot;http://www.theora.org/&quot;&gt;Ogg
2872 Theora&lt;/a&gt;, and avoid MPEG-4 and H.264 if you can.&lt;/p&gt;
2873 </description>
2874 </item>
2875
2876 <item>
2877 <title>Some notes on Flash in Debian and Debian Edu</title>
2878 <link>http://people.skolelinux.org/pere/blog/Some_notes_on_Flash_in_Debian_and_Debian_Edu.html</link>
2879 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Some_notes_on_Flash_in_Debian_and_Debian_Edu.html</guid>
2880 <pubDate>Sat, 4 Sep 2010 10:10:00 +0200</pubDate>
2881 <description>&lt;p&gt;In the &lt;a href=&quot;http://popcon.debian.org/unknown/by_vote&quot;&gt;Debian
2882 popularity-contest numbers&lt;/a&gt;, the adobe-flashplugin package the
2883 second most popular used package that is missing in Debian. The sixth
2884 most popular is flashplayer-mozilla. This is a clear indication that
2885 working flash is important for Debian users. Around 10 percent of the
2886 users submitting data to popcon.debian.org have this package
2887 installed.&lt;/p&gt;
2888
2889 &lt;p&gt;In the report written by Lars Risan in August 2008
2890&lt;a href=&quot;http://wiki.skolelinux.no/Dokumentasjon/Rapporter?action=AttachFile&amp;do=view&amp;target=Skolelinux_i_bruk_rapport_1.0.pdf&quot;&gt;Skolelinux
2891 i bruk – Rapport for Hurum kommune, Universitetet i Agder og
2892 stiftelsen SLX Debian Labs&lt;/a&gt;»), one of the most important problems
2893 schools experienced with &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian
2894 Edu/Skolelinux&lt;/a&gt; was the lack of working Flash. A lot of educational
2895 web sites require Flash to work, and lacking working Flash support in
2896 the web browser and the problems with installing it was perceived as a
2897 good reason to stay with Windows.&lt;/p&gt;
2898
2899 &lt;p&gt;I once saw a funny and sad comment in a web forum, where Linux was
2900 said to be the retarded cousin that did not really understand
2901 everything you told him but could work fairly well. This was a
2902 comment regarding the problems Linux have with proprietary formats and
2903 non-standard web pages, and is sad because it exposes a fairly common
2904 understanding of whose fault it is if web pages that only work in for
2905 example Internet Explorer 6 fail to work on Firefox, and funny because
2906 it explain very well how annoying it is for users when Linux
2907 distributions do not work with the documents they receive or the web
2908 pages they want to visit.&lt;/p&gt;
2909
2910 &lt;p&gt;This is part of the reason why I believe it is important for Debian
2911 and Debian Edu to have a well working Flash implementation in the
2912 distribution, to get at least popular sites as Youtube and Google
2913 Video to working out of the box. For Squeeze, Debian have the chance
2914 to include the latest version of Gnash that will make this happen, as
2915 the new release 0.8.8 was published a few weeks ago and is resting in
2916 unstable. The new version work with more sites that version 0.8.7.
2917 The Gnash maintainers have asked for a freeze exception, but the
2918 release team have not had time to reply to it yet. I hope they agree
2919 with me that Flash is important for the Debian desktop users, and thus
2920 accept the new package into Squeeze.&lt;/p&gt;
2921 </description>
2922 </item>
2923
2924 <item>
2925 <title>OpenStreetmap one step closer to having routing on its front page</title>
2926 <link>http://people.skolelinux.org/pere/blog/OpenStreetmap_one_step_closer_to_having_routing_on_its_front_page.html</link>
2927 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/OpenStreetmap_one_step_closer_to_having_routing_on_its_front_page.html</guid>
2928 <pubDate>Sun, 18 Jul 2010 16:45:00 +0200</pubDate>
2929 <description>&lt;p&gt;Thanks to
2930 &lt;a href=&quot;http://feedproxy.google.com/~r/Opengeodata/~3/wUTCzDZk3lc/project-of-the-week-which-way-home&quot;&gt;todays
2931 opengeodata blog entry&lt;/a&gt;, I just discovered that the
2932 OpenStreetmap.org site have gotten
2933 &lt;a href=&quot;http://nroets.dev.openstreetmap.org/demo/index.html?layers=B000FTFTT&quot;&gt;support
2934 for calculating routes&lt;/a&gt;. The support is still experimental and
2935 only available from the development server, until more experience is
2936 gathered on the user interface and any scalability issues.&lt;/p&gt;
2937
2938 &lt;p&gt;Earlier, the routing I knew about using the OpenStreetmap.org data
2939 was provided by &lt;a href=&quot;http://maps.cloudmade.com/&quot;&gt;Cloudmade&lt;/a&gt;,
2940 but having it on the main page is required to make everyone aware of
2941 the issue. I&#39;ve had people reject Openstreetmap.org as a viable
2942 alternative for them because the front page lacked routing support,
2943 and I hope their needs will be catered for when routing show up on the
2944 www.openstreetmap.org front page.&lt;/p&gt;
2945 </description>
2946 </item>
2947
2948 <item>
2949 <title>Great book: &quot;Content: Selected Essays on Technology, Creativity, Copyright, and the Future of the Future&quot;</title>
2950 <link>http://people.skolelinux.org/pere/blog/Great_book___Content__Selected_Essays_on_Technology__Creativity__Copyright__and_the_Future_of_the_Future_.html</link>
2951 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Great_book___Content__Selected_Essays_on_Technology__Creativity__Copyright__and_the_Future_of_the_Future_.html</guid>
2952 <pubDate>Mon, 19 Apr 2010 17:10:00 +0200</pubDate>
2953 <description>&lt;p&gt;The last few weeks i have had the pleasure of reading a
2954 thought-provoking collection of essays by Cory Doctorow, on topics
2955 touching copyright, virtual worlds, the future of man when the
2956 conscience mind can be duplicated into a computer and many more. The
2957 book titled &quot;Content: Selected Essays on Technology, Creativity,
2958 Copyright, and the Future of the Future&quot; is available with few
2959 restrictions on the web, for example from
2960 &lt;a href=&quot;http://craphound.com/content/&quot;&gt;his own site&lt;/a&gt;. I read the
2961 epub-version from
2962 &lt;a href=&quot;http://www.feedbooks.com/book/2883&quot;&gt;feedbooks&lt;/a&gt; using
2963 &lt;a href=&quot;http://www.fbreader.org/&quot;&gt;fbreader&lt;/a&gt; and my N810. I
2964 strongly recommend this book.&lt;/p&gt;
2965 </description>
2966 </item>
2967
2968 <item>
2969 <title>Relative popularity of document formats (MS Office vs. ODF)</title>
2970 <link>http://people.skolelinux.org/pere/blog/Relative_popularity_of_document_formats__MS_Office_vs__ODF_.html</link>
2971 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Relative_popularity_of_document_formats__MS_Office_vs__ODF_.html</guid>
2972 <pubDate>Wed, 12 Aug 2009 15:50:00 +0200</pubDate>
2973 <description>&lt;p&gt;Just for fun, I did a search right now on Google for a few file ODF
2974 and MS Office based formats (not to be mistaken for ISO or ECMA
2975 OOXML), to get an idea of their relative usage. I searched using
2976 &#39;filetype:odt&#39; and equvalent terms, and got these results:&lt;/P&gt;
2977
2978 &lt;table&gt;
2979 &lt;tr&gt;&lt;th&gt;Type&lt;/th&gt;&lt;th&gt;ODF&lt;/th&gt;&lt;th&gt;MS Office&lt;/th&gt;&lt;/tr&gt;
2980 &lt;tr&gt;&lt;td&gt;Tekst&lt;/td&gt; &lt;td&gt;odt:282000&lt;/td&gt; &lt;td&gt;docx:308000&lt;/td&gt;&lt;/tr&gt;
2981 &lt;tr&gt;&lt;td&gt;Presentasjon&lt;/td&gt; &lt;td&gt;odp:75600&lt;/td&gt; &lt;td&gt;pptx:183000&lt;/td&gt;&lt;/tr&gt;
2982 &lt;tr&gt;&lt;td&gt;Regneark&lt;/td&gt; &lt;td&gt;ods:26500 &lt;/td&gt; &lt;td&gt;xlsx:145000&lt;/td&gt;&lt;/tr&gt;
2983 &lt;/table&gt;
2984
2985 &lt;p&gt;Next, I added a &#39;site:no&#39; limit to get the numbers for Norway, and
2986 got these numbers:&lt;/p&gt;
2987
2988 &lt;table&gt;
2989 &lt;tr&gt;&lt;th&gt;Type&lt;/th&gt;&lt;th&gt;ODF&lt;/th&gt;&lt;th&gt;MS Office&lt;/th&gt;&lt;/tr&gt;
2990 &lt;tr&gt;&lt;td&gt;Tekst&lt;/td&gt; &lt;td&gt;odt:2480 &lt;/td&gt; &lt;td&gt;docx:4460&lt;/td&gt;&lt;/tr&gt;
2991 &lt;tr&gt;&lt;td&gt;Presentasjon&lt;/td&gt; &lt;td&gt;odp:299 &lt;/td&gt; &lt;td&gt;pptx:741&lt;/td&gt;&lt;/tr&gt;
2992 &lt;tr&gt;&lt;td&gt;Regneark&lt;/td&gt; &lt;td&gt;ods:187 &lt;/td&gt; &lt;td&gt;xlsx:372&lt;/td&gt;&lt;/tr&gt;
2993 &lt;/table&gt;
2994
2995 &lt;p&gt;I wonder how these numbers change over time.&lt;/p&gt;
2996
2997 &lt;p&gt;I am aware of Google returning different results and numbers based
2998 on where the search is done, so I guess these numbers will differ if
2999 they are conduced in another country. Because of this, I did the same
3000 search from a machine in California, USA, a few minutes after the
3001 search done from a machine here in Norway.&lt;/p&gt;
3002
3003
3004 &lt;table&gt;
3005 &lt;tr&gt;&lt;th&gt;Type&lt;/th&gt;&lt;th&gt;ODF&lt;/th&gt;&lt;th&gt;MS Office&lt;/th&gt;&lt;/tr&gt;
3006 &lt;tr&gt;&lt;td&gt;Tekst&lt;/td&gt; &lt;td&gt;odt:129000&lt;/td&gt; &lt;td&gt;docx:308000&lt;/td&gt;&lt;/tr&gt;
3007 &lt;tr&gt;&lt;td&gt;Presentasjon&lt;/td&gt; &lt;td&gt;odp:44200&lt;/td&gt; &lt;td&gt;pptx:93900&lt;/td&gt;&lt;/tr&gt;
3008 &lt;tr&gt;&lt;td&gt;Regneark&lt;/td&gt; &lt;td&gt;ods:26500 &lt;/td&gt; &lt;td&gt;xlsx:82400&lt;/td&gt;&lt;/tr&gt;
3009 &lt;/table&gt;
3010
3011 &lt;p&gt;And with &#39;site:no&#39;:
3012
3013 &lt;table&gt;
3014 &lt;tr&gt;&lt;th&gt;Type&lt;/th&gt;&lt;th&gt;ODF&lt;/th&gt;&lt;th&gt;MS Office&lt;/th&gt;&lt;/tr&gt;
3015 &lt;tr&gt;&lt;td&gt;Tekst&lt;/td&gt; &lt;td&gt;odt:2480&lt;/td&gt; &lt;td&gt;docx:3410&lt;/td&gt;&lt;/tr&gt;
3016 &lt;tr&gt;&lt;td&gt;Presentasjon&lt;/td&gt; &lt;td&gt;odp:175&lt;/td&gt; &lt;td&gt;pptx:604&lt;/td&gt;&lt;/tr&gt;
3017 &lt;tr&gt;&lt;td&gt;Regneark&lt;/td&gt; &lt;td&gt;ods:186 &lt;/td&gt; &lt;td&gt;xlsx:296&lt;/td&gt;&lt;/tr&gt;
3018 &lt;/table&gt;
3019
3020 &lt;p&gt;Interesting difference, not sure what to conclude from these
3021 numbers.&lt;/p&gt;
3022 </description>
3023 </item>
3024
3025 <item>
3026 <title>Nasjonalbiblioteket legger ut bøker på web</title>
3027 <link>http://people.skolelinux.org/pere/blog/Nasjonalbiblioteket_legger_ut_b_ker_p__web.html</link>
3028 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Nasjonalbiblioteket_legger_ut_b_ker_p__web.html</guid>
3029 <pubDate>Thu, 23 Apr 2009 19:40:00 +0200</pubDate>
3030 <description>&lt;p&gt;&lt;a href=&quot;http://www.aftenposten.no/kul_und/litteratur/article3042382.ece&quot;&gt;Aftenposten
3031 melder&lt;/a&gt; at
3032 &lt;a href=&quot;http://www.nb.no/aktuelt/50_000_norske_boeker_gratis_tilgjengelig_paa_nett_helt_lovlig&quot;&gt;nasjonalbiblioteket
3033 og Kopinor har gjort en avtale&lt;/a&gt; som gjør at eldre bøker kan gjøres
3034 digitalt tilgjengelig fra nasjonalbiblioteket mot at Kopinor får 56
3035 øre for hver side som legges ut. Utvalget er litt merkelig: 1790-,
3036 1890- og 1990-tallet. Jeg synes det er absurd hvis det er slik at
3037 Kopinor skal ha betalt for utlegging av bøker som ikke lenger er
3038 beskyttet av opphavsretten. Jeg antar her at det er mer enn 90 år
3039 siden forfatterne av bøker som ble publisert 1790-1799 døde, slik at
3040 disse bøkene er falt i det fri og enhver kan kopiere så mye de vil fra
3041 dem uten å bryte opphavsrettsloven. Bruk av slike verk har ikke
3042 Kopinor noe med å gjøre. Jeg håper jeg har misforstått.
3043 &lt;a href=&quot;http://www.nb.no/aktuelt/no_er_vi_i_gang_med_aa_digitalisere_samlingane_vaare_og_formidle_digitalt&quot;&gt;En
3044 melding fra nasjonalbiblioteket i 2007&lt;/a&gt; tyder på at tekster i det
3045 fri ikke trenger avtale med Kopinor.&lt;/p&gt;
3046
3047 &lt;p&gt;Et annet problem er at bøkene kun legges ut som bildefiler, noe som
3048 vil gjøre at søketjenester ikke vil finne disse bøkene når en søker
3049 etter fragmenter i teksten. En risikerer dermed at de blir liggende
3050 på en slik måte at folk som bruker Google ikke finner dem.&lt;/p&gt;
3051
3052 &lt;p&gt;Da skulle jeg heller sett at nasjonalbiblioteket gjorde alvor av
3053 sin aprilspøk, og la ut bøkene som faller i det fri
3054 fortløpende.&lt;/p&gt;
3055
3056 </description>
3057 </item>
3058
3059 <item>
3060 <title>Fildeling er lovlig - ulovlig fildeling er ulovlig</title>
3061 <link>http://people.skolelinux.org/pere/blog/Fildeling_er_lovlig___ulovlig_fildeling_er_ulovlig.html</link>
3062 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Fildeling_er_lovlig___ulovlig_fildeling_er_ulovlig.html</guid>
3063 <pubDate>Fri, 17 Apr 2009 20:00:00 +0200</pubDate>
3064 <description>&lt;p&gt;Jeg hadde glede av å overvære FADs lansering av
3065 &lt;a href=&quot;http://www.deltemeninger.no/&quot;&gt;Debattsentralen
3066 deltemeninger.no&lt;/a&gt; under Go Open 2009, og må si jeg ble skuffet over
3067 en kommentar fra podiet om ulovlig fildeling. Fikk ikke med meg hvem
3068 som holdt innlegget, men det startet med å snakke om ulovlig fildeling
3069 og gikk så over til å snakke om fildeling som om fildeling i seg er
3070 ulovlig. Intet er lengre fra sannheten. Fildeling er en nyttig
3071 teknologi som benyttes av NRK, Debian, Ubuntu, NUUG og andre for
3072 distribusjon av filer. Det er ingenting med denne fildelingen som
3073 gjør den ulovlig. Fildeling er i seg selv en fullt ut lovlig
3074 teknologisk anvendelse. Noe fildeling er ulovlig, og noe er lovlig.
3075 De som tror at fildeling er ulovlig har misforstått grovt. Hvorvidt
3076 den er ulovlig kommer jo an på hvem som har opphavsretten til filene
3077 som deles og hvilke bruksbegrensninger som gjelder for filene. En
3078 rekke filer er lagt ut av rettighetsinnehaver for deling på Internet,
3079 og fildeling av slike filer er fullt ut lovlig.&lt;/p&gt;
3080 </description>
3081 </item>
3082
3083 <item>
3084 <title>When web browser developers make a video player...</title>
3085 <link>http://people.skolelinux.org/pere/blog/When_web_browser_developers_make_a_video_player___.html</link>
3086 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/When_web_browser_developers_make_a_video_player___.html</guid>
3087 <pubDate>Sat, 17 Jan 2009 18:50:00 +0100</pubDate>
3088 <description>&lt;p&gt;As part of the work we do in &lt;a href=&quot;http://www.nuug.no&quot;&gt;NUUG&lt;/a&gt;
3089 to publish video recordings of our monthly presentations, we provide a
3090 page with embedded video for easy access to the recording. Putting a
3091 good set of HTML tags together to get working embedded video in all
3092 browsers and across all operating systems is not easy. I hope this
3093 will become easier when the &amp;lt;video&amp;gt; tag is implemented in all
3094 browsers, but I am not sure. We provide the recordings in several
3095 formats, MPEG1, Ogg Theora, H.264 and Quicktime, and want the
3096 browser/media plugin to pick one it support and use it to play the
3097 recording, using whatever embed mechanism the browser understand.
3098 There is at least four different tags to use for this, the new HTML5
3099 &amp;lt;video&amp;gt; tag, the &amp;lt;object&amp;gt; tag, the &amp;lt;embed&amp;gt; tag and
3100 the &amp;lt;applet&amp;gt; tag. All of these take a lot of options, and
3101 finding the best options is a major challenge.&lt;/p&gt;
3102
3103 &lt;p&gt;I just tested the experimental Opera browser available from &lt;a
3104 href=&quot;http://labs.opera.com&quot;&gt;labs.opera.com&lt;/a&gt;, to see how it handled
3105 a &amp;lt;video&amp;gt; tag with a few video sources and no extra attributes.
3106 I was not very impressed. The browser start by fetching a picture
3107 from the video stream. Not sure if it is the first frame, but it is
3108 definitely very early in the recording. So far, so good. Next,
3109 instead of streaming the 76 MiB video file, it start to download all
3110 of it, but do not start to play the video. This mean I have to wait
3111 for several minutes for the downloading to finish. When the download
3112 is done, the playing of the video do not start! Waiting for the
3113 download, but I do not get to see the video? Some testing later, I
3114 discover that I have to add the controls=&quot;true&quot; attribute to be able
3115 to get a play button to pres to start the video. Adding
3116 autoplay=&quot;true&quot; did not help. I sure hope this is a misfeature of the
3117 test version of Opera, and that future implementations of the
3118 &amp;lt;video&amp;gt; tag will stream recordings by default, or at least start
3119 playing when the download is done.&lt;/p&gt;
3120
3121 &lt;p&gt;The test page I used (since changed to add more attributes) is
3122 &lt;a href=&quot;http://www.nuug.no/aktiviteter/20090113-foredrag-om-foredrag/&quot;&gt;available
3123 from the nuug site&lt;/a&gt;. Will have to test it with the new Firefox
3124 too.&lt;/p&gt;
3125
3126 &lt;p&gt;In the test process, I discovered a missing feature. I was unable
3127 to find a way to get the URL of the playing video out of Opera, so I
3128 am not quite sure it picked the Ogg Theora version of the video. I
3129 sure hope it was using the announced Ogg Theora support. :)&lt;/p&gt;
3130 </description>
3131 </item>
3132
3133 <item>
3134 <title>The sorry state of multimedia browser plugins in Debian</title>
3135 <link>http://people.skolelinux.org/pere/blog/The_sorry_state_of_multimedia_browser_plugins_in_Debian.html</link>
3136 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_sorry_state_of_multimedia_browser_plugins_in_Debian.html</guid>
3137 <pubDate>Tue, 25 Nov 2008 00:10:00 +0100</pubDate>
3138 <description>&lt;p&gt;Recently I have spent some time evaluating the multimedia browser
3139 plugins available in Debian Lenny, to see which one we should use by
3140 default in Debian Edu. We need an embedded video playing plugin with
3141 control buttons to pause or stop the video, and capable of streaming
3142 all the multimedia content available on the web. The test results and
3143 notes are available on
3144 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/BrowserMultimedia&quot;&gt;the
3145 Debian wiki&lt;/a&gt;. I was surprised how few of the plugins are able to
3146 fill this need. My personal video player favorite, VLC, has a really
3147 bad plugin which fail on a lot of the test pages. A lot of the MIME
3148 types I would expect to work with any free software player (like
3149 video/ogg), just do not work. And simple formats like the
3150 audio/x-mplegurl format (m3u playlists), just isn&#39;t supported by the
3151 totem and vlc plugins. I hope the situation will improve soon. No
3152 wonder sites use the proprietary Adobe flash to play video.&lt;/p&gt;
3153
3154 &lt;p&gt;For Lenny, we seem to end up with the mplayer plugin. It seem to
3155 be the only one fitting our needs. :/&lt;/p&gt;
3156 </description>
3157 </item>
3158
3159 </channel>
3160 </rss>