1 <?xml version=
"1.0" encoding=
"utf-8"?>
2 <rss version='
2.0' xmlns:lj='http://www.livejournal.org/rss/lj/
1.0/'
>
4 <title>Petter Reinholdtsen - Entries tagged video
</title>
5 <description>Entries tagged video
</description>
6 <link>http://people.skolelinux.org/pere/blog/
</link>
10 <title>Using the Kodi API to play Youtube videos
</title>
11 <link>http://people.skolelinux.org/pere/blog/Using_the_Kodi_API_to_play_Youtube_videos.html
</link>
12 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Using_the_Kodi_API_to_play_Youtube_videos.html
</guid>
13 <pubDate>Sun,
2 Sep
2018 23:
40:
00 +
0200</pubDate>
14 <description><p
>I continue to explore my Kodi installation, and today I wanted to
15 tell it to play a youtube URL I received in a chat, without having to
16 insert search terms using the on-screen keyboard. After searching the
17 web for API access to the Youtube plugin and testing a bit, I managed
18 to find a recipe that worked. If you got a kodi instance with its API
19 available from http://kodihost/jsonrpc, you can try the following to
20 have check out a nice cover band.
</p
>
22 <p
><blockquote
><pre
>curl --silent --header
'Content-Type: application/json
' \
23 --data-binary
'{
"id
":
1,
"jsonrpc
":
"2.0",
"method
":
"Player.Open
",
24 "params
": {
"item
": {
"file
":
25 "plugin://plugin.video.youtube/play/?video_id=LuRGVM9O0qg
" } } }
' \
26 http://projector.local/jsonrpc
</pre
></blockquote
></p
>
28 <p
>I
've extended kodi-stream program to take a video source as its
29 first argument. It can now handle direct video links, youtube links
30 and
'desktop
' to stream my desktop to Kodi. It is almost like a
31 Chromecast. :)
</p
>
33 <p
>As usual, if you use Bitcoin and want to show your support of my
34 activities, please send Bitcoin donations to my address
35 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
40 <title>Simple streaming the Linux desktop to Kodi using GStreamer and RTP
</title>
41 <link>http://people.skolelinux.org/pere/blog/Simple_streaming_the_Linux_desktop_to_Kodi_using_GStreamer_and_RTP.html
</link>
42 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Simple_streaming_the_Linux_desktop_to_Kodi_using_GStreamer_and_RTP.html
</guid>
43 <pubDate>Thu,
12 Jul
2018 17:
55:
00 +
0200</pubDate>
44 <description><p
>Last night, I wrote
45 <a href=
"http://people.skolelinux.org/pere/blog/Streaming_the_Linux_desktop_to_Kodi_using_VLC_and_RTSP.html
">a
46 recipe to stream a Linux desktop using VLC to a instance of Kodi
</a
>.
47 During the day I received valuable feedback, and thanks to the
48 suggestions I have been able to rewrite the recipe into a much simpler
49 approach requiring no setup at all. It is a single script that take
50 care of it all.
</p
>
52 <p
>This new script uses GStreamer instead of VLC to capture the
53 desktop and stream it to Kodi. This fixed the video quality issue I
54 saw initially. It further removes the need to add a m3u file on the
55 Kodi machine, as it instead connects to
56 <a href=
"https://kodi.wiki/view/JSON-RPC_API/v8
">the JSON-RPC API in
57 Kodi
</a
> and simply ask Kodi to play from the stream created using
58 GStreamer. Streaming the desktop to Kodi now become trivial. Copy
59 the script below, run it with the DNS name or IP address of the kodi
60 server to stream to as the only argument, and watch your screen show
61 up on the Kodi screen. Note, it depend on multicast on the local
62 network, so if you need to stream outside the local network, the
63 script must be modified. Also note, I have no idea if audio work, as
64 I only care about the picture part.
</p
>
66 <blockquote
><pre
>
69 # Stream the Linux desktop view to Kodi. See
70 # http://people.skolelinux.org/pere/blog/Streaming_the_Linux_desktop_to_Kodi_using_VLC_and_RTSP.html
71 # for backgorund information.
73 # Make sure the stream is stopped in Kodi and the gstreamer process is
74 # killed if something go wrong (for example if curl is unable to find the
75 # kodi server). Do the same when interrupting this script.
80 curl --silent --header
'Content-Type: application/json
' \
81 --data-binary
"{ \
"id\
":
1, \
"jsonrpc\
": \
"2.0\
", \
"method\
": \
"$cmd\
", \
"params\
": $params }
" \
82 "http://$host/jsonrpc
"
85 if [ -n
"$kodihost
" ] ; then
86 # Stop the playing when we end
87 playerid=$(kodicmd
"$kodihost
" Player.GetActivePlayers
"{}
" |
88 jq .result[].playerid)
89 kodicmd
"$kodihost
" Player.Stop
"{ \
"playerid\
" : $playerid }
" > /dev/null
91 if [
"$gstpid
" ]
&& kill -
0 "$gstpid
" >/dev/null
2>&1; then
92 kill
"$gstpid
"
97 if [ -n
"$
1" ]; then
108 pasrc=$(pactl list | grep -A2
'Source #
' | grep
'Name: .*\.monitor$
' | \
109 cut -d
" " -f2|head -
1)
110 gst-launch-
1.0 ximagesrc use-damage=
0 ! video/x-raw,framerate=
30/
1 ! \
111 videoconvert ! queue2 ! \
112 x264enc bitrate=
8000 speed-preset=superfast tune=zerolatency qp-min=
30 \
113 key-int-max=
15 bframes=
2 ! video/x-h264,profile=high ! queue2 ! \
114 mpegtsmux alignment=
7 name=mux ! rndbuffersize max=
1316 min=
1316 ! \
115 udpsink host=$mcast port=$mcastport ttl-mc=$mcastttl auto-multicast=
1 sync=
0 \
116 pulsesrc device=$pasrc ! audioconvert ! queue2 ! avenc_aac ! queue2 ! mux. \
117 > /dev/null
2>&1 &
120 # Give stream a second to get going
123 # Ask kodi to start streaming using its JSON-RPC API
124 kodicmd
"$kodihost
" Player.Open \
125 "{\
"item\
": { \
"file\
": \
"udp://@$mcast:$mcastport\
" } }
" > /dev/null
127 # wait for gst to end
128 wait
"$gstpid
"
129 </pre
></blockquote
>
131 <p
>I hope you find the approach useful. I know I do.
</p
>
133 <p
>As usual, if you use Bitcoin and want to show your support of my
134 activities, please send Bitcoin donations to my address
135 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
140 <title>Streaming the Linux desktop to Kodi using VLC and RTSP
</title>
141 <link>http://people.skolelinux.org/pere/blog/Streaming_the_Linux_desktop_to_Kodi_using_VLC_and_RTSP.html
</link>
142 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Streaming_the_Linux_desktop_to_Kodi_using_VLC_and_RTSP.html
</guid>
143 <pubDate>Thu,
12 Jul
2018 02:
00:
00 +
0200</pubDate>
144 <description><p
>PS: See
145 <ahref=
"http://people.skolelinux.org/pere/blog/Simple_streaming_the_Linux_desktop_to_Kodi_using_GStreamer_and_RTP.html
">the
146 followup post
</a
> for a even better approach.
</p
>
148 <p
>A while back, I was asked by a friend how to stream the desktop to
149 my projector connected to Kodi. I sadly had to admit that I had no
150 idea, as it was a task I never had tried. Since then, I have been
151 looking for a way to do so, preferable without much extra software to
152 install on either side. Today I found a way that seem to kind of
153 work. Not great, but it is a start.
</p
>
155 <p
>I had a look at several approaches, for example
156 <a href=
"https://github.com/mfoetsch/dlna_live_streaming
">using uPnP
157 DLNA as described in
2011</a
>, but it required a uPnP server, fuse and
158 local storage enough to store the stream locally. This is not going
159 to work well for me, lacking enough free space, and it would
160 impossible for my friend to get working.
</p
>
162 <p
>Next, it occurred to me that perhaps I could use VLC to create a
163 video stream that Kodi could play. Preferably using
164 broadcast/multicast, to avoid having to change any setup on the Kodi
165 side when starting such stream. Unfortunately, the only recipe I
166 could find using multicast used the rtp protocol, and this protocol
167 seem to not be supported by Kodi.
</p
>
169 <p
>On the other hand, the rtsp protocol is working! Unfortunately I
170 have to specify the IP address of the streaming machine in both the
171 sending command and the file on the Kodi server. But it is showing my
172 desktop, and thus allow us to have a shared look on the big screen at
173 the programs I work on.
</p
>
175 <p
>I did not spend much time investigating codeces. I combined the
176 rtp and rtsp recipes from
177 <a href=
"https://wiki.videolan.org/Documentation:Streaming_HowTo/Command_Line_Examples/
">the
178 VLC Streaming HowTo/Command Line Examples
</a
>, and was able to get
179 this working on the desktop/streaming end.
</p
>
181 <blockquote
><pre
>
182 vlc screen:// --sout \
183 '#transcode{vcodec=mp4v,acodec=mpga,vb=
800,ab=
128}:rtp{dst=projector.local,port=
1234,sdp=rtsp://
192.168.11.4:
8080/test.sdp}
'
184 </pre
></blockquote
>
186 <p
>I ssh-ed into my Kodi box and created a file like this with the
187 same IP address:
</p
>
189 <blockquote
><pre
>
190 echo rtsp://
192.168.11.4:
8080/test.sdp \
191 > /storage/videos/screenstream.m3u
192 </pre
></blockquote
>
194 <p
>Note the
192.168.11.4 IP address is my desktops IP address. As far
195 as I can tell the IP must be hardcoded for this to work. In other
196 words, if someone elses machine is going to do the steaming, you have
197 to update screenstream.m3u on the Kodi machine and adjust the vlc
198 recipe. To get started, locate the file in Kodi and select the m3u
199 file while the VLC stream is running. The desktop then show up in my
200 big screen. :)
</p
>
202 <p
>When using the same technique to stream a video file with audio,
203 the audio quality is really bad. No idea if the problem is package
204 loss or bad parameters for the transcode. I do not know VLC nor Kodi
205 enough to tell.
</p
>
207 <p
><strong
>Update
2018-
07-
12</strong
>: Johannes Schauer send me a few
208 succestions and reminded me about an important step. The
"screen:
"
209 input source is only available once the vlc-plugin-access-extra
210 package is installed on Debian. Without it, you will see this error
211 message:
"VLC is unable to open the MRL
'screen://
'. Check the log
212 for details.
" He further found that it is possible to drop some parts
213 of the VLC command line to reduce the amount of hardcoded information.
214 It is also useful to consider using cvlc to avoid having the VLC
215 window in the desktop view. In sum, this give us this command line on
218 <blockquote
><pre
>
219 cvlc screen:// --sout \
220 '#transcode{vcodec=mp4v,acodec=mpga,vb=
800,ab=
128}:rtp{sdp=rtsp://:
8080/}
'
221 </pre
></blockquote
>
223 <p
>and this on the Kodi end
<p
>
225 <blockquote
><pre
>
226 echo rtsp://
192.168.11.4:
8080/ \
227 > /storage/videos/screenstream.m3u
228 </pre
></blockquote
>
230 <p
>Still bad image quality, though. But I did discover that streaming
231 a DVD using dvdsimple:///dev/dvd as the source had excellent video and
232 audio quality, so I guess the issue is in the input or transcoding
233 parts, not the rtsp part. I
've tried to change the vb and ab
234 parameters to use more bandwidth, but it did not make a
235 difference.
</p
>
237 <p
>I further received a suggestion from Einar Haraldseid to try using
238 gstreamer instead of VLC, and this proved to work great! He also
239 provided me with the trick to get Kodi to use a multicast stream as
240 its source. By using this monstrous oneliner, I can stream my desktop
241 with good video quality in reasonable framerate to the
239.255.0.1
242 multicast address on port
1234:
244 <blockquote
><pre
>
245 gst-launch-
1.0 ximagesrc use-damage=
0 ! video/x-raw,framerate=
30/
1 ! \
246 videoconvert ! queue2 ! \
247 x264enc bitrate=
8000 speed-preset=superfast tune=zerolatency qp-min=
30 \
248 key-int-max=
15 bframes=
2 ! video/x-h264,profile=high ! queue2 ! \
249 mpegtsmux alignment=
7 name=mux ! rndbuffersize max=
1316 min=
1316 ! \
250 udpsink host=
239.255.0.1 port=
1234 ttl-mc=
1 auto-multicast=
1 sync=
0 \
251 pulsesrc device=$(pactl list | grep -A2
'Source #
' | \
252 grep
'Name: .*\.monitor$
' | cut -d
" " -f2|head -
1) ! \
253 audioconvert ! queue2 ! avenc_aac ! queue2 ! mux.
254 </pre
></blockquote
>
256 <p
>and this on the Kodi end
<p
>
258 <blockquote
><pre
>
259 echo udp://@
239.255.0.1:
1234 \
260 > /storage/videos/screenstream.m3u
261 </pre
></blockquote
>
263 <p
>Note the trick to pick a valid pulseaudio source. It might not
264 pick the one you need. This approach will of course lead to trouble
265 if more than one source uses the same multicast port and address.
266 Note the ttl-mc=
1 setting, which limit the multicast packages to the
267 local network. If the value is increased, your screen will be
268 broadcasted further, one network
"hop
" for each increase (read up on
269 multicast to learn more. :)!
</p
>
271 <p
>Having cracked how to get Kodi to receive multicast streams, I
272 could use this VLC command to stream to the same multicast address.
273 The image quality is way better than the rtsp approach, but gstreamer
274 seem to be doing a better job.
</p
>
276 <blockquote
><pre
>
277 cvlc screen:// --sout
'#transcode{vcodec=mp4v,acodec=mpga,vb=
800,ab=
128}:rtp{mux=ts,dst=
239.255.0.1,port=
1234,sdp=sap}
'
278 </pre
></blockquote
>
280 <p
>As usual, if you use Bitcoin and want to show your support of my
281 activities, please send Bitcoin donations to my address
282 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
287 <title>Add-on to control the projector from within Kodi
</title>
288 <link>http://people.skolelinux.org/pere/blog/Add_on_to_control_the_projector_from_within_Kodi.html
</link>
289 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Add_on_to_control_the_projector_from_within_Kodi.html
</guid>
290 <pubDate>Tue,
26 Jun
2018 23:
55:
00 +
0200</pubDate>
291 <description><p
>My movie playing setup involve
<a href=
"https://kodi.tv/
">Kodi
</a
>,
292 <a href=
"https://openelec.tv
">OpenELEC
</a
> (probably soon to be
293 replaced with
<a href=
"https://libreelec.tv/
">LibreELEC
</a
>) and an
294 Infocus IN76 video projector. My projector can be controlled via both
295 a infrared remote controller, and a RS-
232 serial line. The vendor of
296 my projector,
<a href=
"https://www.infocus.com/
">InFocus
</a
>, had been
297 sensible enough to document the serial protocol in its user manual, so
298 it is easily available, and I used it some years ago to write
299 <a href=
"https://github.com/petterreinholdtsen/infocus-projector-control
">a
300 small script to control the projector
</a
>. For a while now, I longed
301 for a setup where the projector was controlled by Kodi, for example in
302 such a way that when the screen saver went on, the projector was
303 turned off, and when the screen saver exited, the projector was turned
306 <p
>A few days ago, with very good help from parts of my family, I
307 managed to find a Kodi Add-on for controlling a Epson projector, and
308 got in touch with its author to see if we could join forces and make a
309 Add-on with support for several projectors. To my pleasure, he was
310 positive to the idea, and we set out to add InFocus support to his
311 add-on, and make the add-on suitable for the official Kodi add-on
312 repository.
</p
>
314 <p
>The Add-on is now working (for me, at least), with a few minor
315 adjustments. The most important change I do relative to the master
316 branch in the github repository is embedding the
317 <a href=
"https://github.com/pyserial/pyserial
">pyserial module
</a
> in
318 the add-on. The long term solution is to make a
"script
" type
319 pyserial module for Kodi, that can be pulled in as a dependency in
320 Kodi. But until that in place, I embed it.
</p
>
322 <p
>The add-on can be configured to turn on the projector when Kodi
323 starts, off when Kodi stops as well as turn the projector off when the
324 screensaver start and on when the screesaver stops. It can also be
325 told to set the projector source when turning on the projector.
327 <p
>If this sound interesting to you, check out
328 <a href=
"https://github.com/fredrik-eriksson/kodi_projcontrol
">the
329 project github repository
</a
>. Perhaps you can send patches to
330 support your projector too? As soon as we find time to wrap up the
331 latest changes, it should be available for easy installation using any
332 Kodi instance.
</p
>
334 <p
>For future improvements, I would like to add projector model
335 detection and the ability to adjust the brightness level of the
336 projector from within Kodi. We also need to figure out how to handle
337 the cooling period of the projector. My projector refuses to turn on
338 for
60 seconds after it was turned off. This is not handled well by
339 the add-on at the moment.
</p
>
341 <p
>As usual, if you use Bitcoin and want to show your support of my
342 activities, please send Bitcoin donations to my address
343 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
348 <title>youtube-dl for nedlasting fra NRK med undertekster - nice free software
</title>
349 <link>http://people.skolelinux.org/pere/blog/youtube_dl_for_nedlasting_fra_NRK_med_undertekster___nice_free_software.html
</link>
350 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/youtube_dl_for_nedlasting_fra_NRK_med_undertekster___nice_free_software.html
</guid>
351 <pubDate>Sat,
28 Apr
2018 10:
30:
00 +
0200</pubDate>
352 <description><p
>I
<a href=
"https://no.wikipedia.org/wiki/VHS
">VHS-kassettenes
</a
>
353 tid var det rett frem å ta vare på et TV-program en ønsket å kunne se
354 senere, uten å være avhengig av at programmet ble sendt på nytt.
355 Kanskje ønsket en å se programmet på hytten der det ikke var
356 TV-signal, eller av andre grunner ha det tilgjengelig for fremtidig
357 fornøyelse. Dette er blitt vanskeligere med introduksjon av
358 digital-TV og webstreaming, der opptak til harddisk er utenfor de
359 flestes kontroll hvis de bruker ufri programvare og bokser kontrollert
360 av andre. Men for NRK her i Norge, finnes det heldigvis flere fri
361 programvare-alternativer, som jeg har
362 <a href=
"http://people.skolelinux.org/pere/blog/Hvordan_enkelt_laste_ned_filmer_fra_NRK.html
">skrevet
</a
>
363 <a href=
"http://people.skolelinux.org/pere/blog/Hvordan_enkelt_laste_ned_filmer_fra_NRK_med_den__nye__l_sningen.html
">om
</a
>
364 <a href=
"http://people.skolelinux.org/pere/blog/Nedlasting_fra_NRK__som_Matroska_med_undertekster.html
">før
</a
>.
365 Så lenge kilden for nedlastingen er lovlig lagt ut på nett (hvilket
366 jeg antar NRK gjør), så er slik lagring til privat bruk også lovlig i
369 <p
>Sist jeg så på saken, i
2016, nevnte jeg at
370 <a href=
"https://rg3.github.com/youtube-dl/
">youtube-dl
</a
> ikke kunne
371 bake undertekster fra NRK inn i videofilene, og at jeg derfor
372 foretrakk andre alternativer. Nylig oppdaget jeg at dette har endret
373 seg. Fordelen med youtube-dl er at den er tilgjengelig direkte fra
374 Linux-distribusjoner som
<a href=
"https://www.debian.org/
">Debian
</a
>
375 og
<a href=
"https://www.ubuntu.com/
">Ubuntu
</a
>, slik at en slipper å
376 finne ut selv hvordan en skal få dem til å virke.
</p
>
378 <p
>For å laste ned et NRK-innslag med undertekster, og få den norske
379 underteksten pakket inn i videofilen, så kan følgende kommando
383 youtube-dl --write-sub --sub-format ttml \
384 --convert-subtitles srt --embed-subs \
385 https://tv.nrk.no/serie/ramm-ferdig-gaa/MUHU11000316/
27-
04-
2018
386 </pre
></p
>
388 <p
>URL-eksemplet er dagens toppsak på tv.nrk.no. Resultatet er en
389 MP4-fil med filmen og undertekster som kan spilles av med VLC. Merk
390 at VLC ikke viser frem undertekster før du aktiverer dem. For å gjøre
391 det, høyreklikk med musa i fremviservinduet, velg menyvalget for
392 undertekst og så norsk språk. Jeg testet også
'--write-auto-sub
',
393 men det kommandolinjeargumentet ser ikke ut til å fungere, så jeg
394 endte opp med settet med argumentlisten over, som jeg fant i en
395 feilrapport i youtube-dl-prosjektets samling over feilrapporter.
</p
>
397 <p
>Denne støtten i youtube-dl gjør det svært enkelt å lagre
398 NRK-innslag, det være seg nyheter, filmer, serier eller dokumentater,
399 for å ha dem tilgjengelig for fremtidig referanse og bruk, uavhengig
400 av hvor lenge innslagene ligger tilgjengelig hos NRK. Så får det ikke
401 hjelpe at NRKs jurister mener at det er
402 <a href=
"http://people.skolelinux.org/pere/blog/Best___ikke_fortelle_noen_at_streaming_er_nedlasting___.html
">vesensforskjellig
403 å legge tilgjengelig for nedlasting og for streaming
</a
>, når det rent
404 teknisk er samme sak.
</p
>
406 <p
>Programmet youtube-dl støtter også en rekke andre nettsteder, se
407 prosjektoversikten for
408 <a href=
"http://rg3.github.io/youtube-dl/supportedsites.html
">en
409 komplett liste
</a
>.
</p
>
414 <title>Using VLC to stream bittorrent sources
</title>
415 <link>http://people.skolelinux.org/pere/blog/Using_VLC_to_stream_bittorrent_sources.html
</link>
416 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Using_VLC_to_stream_bittorrent_sources.html
</guid>
417 <pubDate>Wed,
14 Feb
2018 08:
00:
00 +
0100</pubDate>
418 <description><p
>A few days ago, a new major version of
419 <a href=
"https://www.videolan.org/
">VLC
</a
> was announced, and I
420 decided to check out if it now supported streaming over
421 <a href=
"http://bittorrent.org/
">bittorrent
</a
> and
422 <a href=
"https://webtorrent.io
">webtorrent
</a
>. Bittorrent is one of
423 the most efficient ways to distribute large files on the Internet, and
424 Webtorrent is a variant of Bittorrent using
425 <a href=
"https://webrtc.org
">WebRTC
</a
> as its transport channel,
426 allowing web pages to stream and share files using the same technique.
427 The network protocols are similar but not identical, so a client
428 supporting one of them can not talk to a client supporting the other.
429 I was a bit surprised with what I discovered when I started to look.
431 <a href=
"https://www.videolan.org/vlc/releases/
3.0.0.html
">the release
432 notes
</a
> did not help answering this question, so I started searching
433 the web. I found several news articles from
2013, most of them
434 tracing the news from Torrentfreak
435 (
"<a href=https://torrentfreak.com/open-source-giant-vlc-mulls-bittorrent-support-
130211/
">Open
436 Source Giant VLC Mulls BitTorrent Streaming Support
</a
>"), about a
437 initiative to pay someone to create a VLC patch for bittorrent
438 support. To figure out what happend with this initiative, I headed
439 over to the #videolan IRC channel and asked if there were some bug or
440 feature request tickets tracking such feature. I got an answer from
441 lead developer Jean-Babtiste Kempf, telling me that there was a patch
442 but neither he nor anyone else knew where it was. So I searched a bit
443 more, and came across an independent
444 <a href=
"https://github.com/johang/vlc-bittorrent
">VLC plugin to add
445 bittorrent support
</a
>, created by Johan Gunnarsson in
2016/
2017.
446 Again according to Jean-Babtiste, this is not the patch he was talking
449 <p
>Anyway, to test the plugin, I made a working Debian package from
450 the git repository, with some modifications. After installing this
451 package, I could stream videos from
452 <a href=
"https://www.archive.org/
">The Internet Archive
</a
> using VLC
453 commands like this:
</p
>
455 <p
><blockquote
><pre
>
456 vlc https://archive.org/download/LoveNest/LoveNest_archive.torrent
457 </pre
></blockquote
></p
>
459 <p
>The plugin is supposed to handle magnet links too, but since The
460 Internet Archive do not have magnet links and I did not want to spend
461 time tracking down another source, I have not tested it. It can take
462 quite a while before the video start playing without any indication of
463 what is going on from VLC. It took
10-
20 seconds when I measured it.
464 Some times the plugin seem unable to find the correct video file to
465 play, and show the metadata XML file name in the VLC status line. I
466 have no idea why.
</p
>
468 <p
>I have created a
<a href=
"https://bugs.debian.org/
890360">request for
469 a new package in Debian (RFP)
</a
> and
470 <a href=
"https://github.com/johang/vlc-bittorrent/issues/
1">asked if
471 the upstream author is willing to help make this happen
</a
>. Now we
472 wait to see what come out of this. I do not want to maintain a
473 package that is not maintained upstream, nor do I really have time to
474 maintain more packages myself, so I might leave it at this. But I
475 really hope someone step up to do the packaging, and hope upstream is
476 still maintaining the source. If you want to help, please update the
477 RFP request or the upstream issue.
</p
>
479 <p
>I have not found any traces of webtorrent support for VLC.
</p
>
481 <p
>As usual, if you use Bitcoin and want to show your support of my
482 activities, please send Bitcoin donations to my address
483 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
488 <title>Kommentarer til «Evaluation of (il)legality» for Popcorn Time
</title>
489 <link>http://people.skolelinux.org/pere/blog/Kommentarer_til__Evaluation_of__il_legality__for_Popcorn_Time.html
</link>
490 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Kommentarer_til__Evaluation_of__il_legality__for_Popcorn_Time.html
</guid>
491 <pubDate>Wed,
20 Dec
2017 11:
40:
00 +
0100</pubDate>
492 <description><p
>I går var jeg i Follo tingrett som sakkyndig vitne og presenterte
493 mine undersøkelser rundt
494 <a href=
"https://github.com/petterreinholdtsen/public-domain-free-imdb
">telling
495 av filmverk i det fri
</a
>, relatert til
496 <a href=
"https://www.nuug.no/
">foreningen NUUG
</a
>s involvering i
497 <a href=
"https://www.nuug.no/news/tags/dns-domenebeslag/
">saken om
498 Økokrims beslag og senere inndragning av DNS-domenet
499 popcorn-time.no
</a
>. Jeg snakket om flere ting, men mest om min
500 vurdering av hvordan filmbransjen har målt hvor ulovlig Popcorn Time
501 er. Filmbransjens måling er så vidt jeg kan se videreformidlet uten
502 endringer av norsk politi, og domstolene har lagt målingen til grunn
503 når de har vurdert Popcorn Time både i Norge og i utlandet (tallet
504 99% er referert også i utenlandske domsavgjørelser).
</p
>
506 <p
>I forkant av mitt vitnemål skrev jeg et notat, mest til meg selv,
507 med de punktene jeg ønsket å få frem. Her er en kopi av notatet jeg
508 skrev og ga til aktoratet. Merkelig nok ville ikke dommerene ha
509 notatet, så hvis jeg forsto rettsprosessen riktig ble kun
510 histogram-grafen lagt inn i dokumentasjonen i saken. Dommerne var
511 visst bare interessert i å forholde seg til det jeg sa i retten,
512 ikke det jeg hadde skrevet i forkant. Uansett så antar jeg at flere
513 enn meg kan ha glede av teksten, og publiserer den derfor her.
514 Legger ved avskrift av dokument
09,
13, som er det sentrale
515 dokumentet jeg kommenterer.
</p
>
517 <p
><strong
>Kommentarer til «Evaluation of (il)legality» for Popcorn
518 Time
</strong
></p
>
520 <p
><strong
>Oppsummering
</strong
></p
>
522 <p
>Målemetoden som Økokrim har lagt til grunn når de påstår at
99% av
523 filmene tilgjengelig fra Popcorn Time deles ulovlig har
526 <p
>De eller den som har vurdert hvorvidt filmer kan lovlig deles har
527 ikke lyktes med å identifisere filmer som kan deles lovlig og har
528 tilsynelatende antatt at kun veldig gamle filmer kan deles lovlig.
529 Økokrim legger til grunn at det bare finnes èn film, Charlie
530 Chaplin-filmen «The Circus» fra
1928, som kan deles fritt blant de
531 som ble observert tilgjengelig via ulike Popcorn Time-varianter.
532 Jeg finner tre flere blant de observerte filmene: «The Brain That
533 Wouldn
't Die» fra
1962, «God’s Little Acre» fra
1958 og «She Wore a
534 Yellow Ribbon» fra
1949. Det er godt mulig det finnes flere. Det
535 finnes dermed minst fire ganger så mange filmer som lovlig kan deles
536 på Internett i datasettet Økokrim har lagt til grunn når det påstås
537 at mindre enn
1 % kan deles lovlig.
</p
>
539 <p
>Dernest, utplukket som gjøres ved søk på tilfeldige ord hentet fra
540 ordlisten til Dale-Chall avviker fra årsfordelingen til de brukte
541 filmkatalogene som helhet, hvilket påvirker fordelingen mellom
542 filmer som kan lovlig deles og filmer som ikke kan lovlig deles. I
543 tillegg gir valg av øvre del (de fem første) av søkeresultatene et
544 avvik fra riktig årsfordeling, hvilket påvirker fordelingen av verk
545 i det fri i søkeresultatet.
</p
>
547 <p
>Det som måles er ikke (u)lovligheten knyttet til bruken av Popcorn
548 Time, men (u)lovligheten til innholdet i bittorrent-filmkataloger
549 som vedlikeholdes uavhengig av Popcorn Time.
</p
>
551 <p
>Omtalte dokumenter:
09,
12,
<a href=
"#dok-
09-
13">09,
13</a
>,
09,
14,
552 09,
18,
09,
19,
09,
20.
</p
>
554 <p
><strong
>Utfyllende kommentarer
</strong
></p
>
556 <p
>Økokrim har forklart domstolene at minst
99% av alt som er
557 tilgjengelig fra ulike Popcorn Time-varianter deles ulovlig på
558 Internet. Jeg ble nysgjerrig på hvordan de er kommet frem til dette
559 tallet, og dette notatet er en samling kommentarer rundt målingen
560 Økokrim henviser til. Litt av bakgrunnen for at jeg valgte å se på
561 saken er at jeg er interessert i å identifisere og telle hvor mange
562 kunstneriske verk som er falt i det fri eller av andre grunner kan
563 lovlig deles på Internett, og dermed var interessert i hvordan en
564 hadde funnet den ene prosenten som kanskje deles lovlig.
</p
>
566 <p
>Andelen på
99% kommer fra et ukreditert og udatert notatet som tar
567 mål av seg å dokumentere en metode for å måle hvor (u)lovlig ulike
568 Popcorn Time-varianter er.
</p
>
570 <p
>Raskt oppsummert, så forteller metodedokumentet at på grunn av at
571 det ikke er mulig å få tak i komplett liste over alle filmtitler
572 tilgjengelig via Popcorn Time, så lages noe som skal være et
573 representativt utvalg ved å velge
50 søkeord større enn tre tegn fra
574 ordlisten kjent som Dale-Chall. For hvert søkeord gjøres et søk og
575 de første fem filmene i søkeresultatet samles inn inntil
100 unike
576 filmtitler er funnet. Hvis
50 søkeord ikke var tilstrekkelig for å
577 nå
100 unike filmtitler ble flere filmer fra hvert søkeresultat lagt
578 til. Hvis dette heller ikke var tilstrekkelig, så ble det hentet ut
579 og søkt på flere tilfeldig valgte søkeord inntil
100 unike
580 filmtitler var identifisert.
</p
>
582 <p
>Deretter ble for hver av filmtitlene «vurdert hvorvidt det var
583 rimelig å forvente om at verket var vernet av copyright, ved å se på
584 om filmen var tilgjengelig i IMDB, samt se på regissør,
585 utgivelsesår, når det var utgitt for bestemte markedsområder samt
586 hvilke produksjons- og distribusjonsselskap som var registrert» (min
587 oversettelse).
</p
>
589 <p
>Metoden er gjengitt både i de ukrediterte dokumentene
09,
13 og
590 09,
19, samt beskrevet fra side
47 i dokument
09,
20, lysark datert
591 2017-
02-
01. Sistnevnte er kreditert Geerart Bourlon fra Motion
592 Picture Association EMEA. Metoden virker å ha flere svakheter som
593 gir resultatene en slagside. Den starter med å slå fast at det ikke
594 er mulig å hente ut en komplett liste over alle filmtitler som er
595 tilgjengelig, og at dette er bakgrunnen for metodevalget. Denne
596 forutsetningen er ikke i tråd med det som står i dokument
09,
12, som
597 ikke heller har oppgitt forfatter og dato. Dokument
09,
12 forteller
598 hvordan hele kataloginnholdet ble lasted ned og talt opp. Dokument
599 09,
12 er muligens samme rapport som ble referert til i dom fra Oslo
601 (
<a href=
"https://www.domstol.no/no/Enkelt-domstol/Oslo--tingrett/Nyheter/ma-sperre-for-popcorn-time/
">sak
602 17-
093347TVI-OTIR/
05</a
>) som rapport av
1. juni
2017 av Alexander
603 Kind Petersen, men jeg har ikke sammenlignet dokumentene ord for ord
604 for å kontrollere dette.
</p
>
606 <p
>IMDB er en forkortelse for The Internet Movie Database, en
607 anerkjent kommersiell nettjeneste som brukes aktivt av både
608 filmbransjen og andre til å holde rede på hvilke spillefilmer (og
609 endel andre filmer) som finnes eller er under produksjon, og
610 informasjon om disse filmene. Datakvaliteten er høy, med få feil og
611 få filmer som mangler. IMDB viser ikke informasjon om
612 opphavsrettslig status for filmene på infosiden for hver film. Som
613 del av IMDB-tjenesten finnes det lister med filmer laget av
614 frivillige som lister opp det som antas å være verk i det fri.
</p
>
616 <p
>Det finnes flere kilder som kan brukes til å finne filmer som er
617 allemannseie (public domain) eller har bruksvilkår som gjør det
618 lovlig for alleå dele dem på Internett. Jeg har de siste ukene
619 forsøkt å samle og krysskoble disse listene for å forsøke å telle
620 antall filmer i det fri. Ved å ta utgangspunkt i slike lister (og
621 publiserte filmer for Internett-arkivets del), har jeg så langt
622 klart å identifisere over
11 000 filmer, hovedsaklig spillefilmer.
624 <p
>De aller fleste oppføringene er hentet fra IMDB selv, basert på det
625 faktum at alle filmer laget i USA før
1923 er falt i det fri.
626 Tilsvarende tidsgrense for Storbritannia er
1912-
07-
01, men dette
627 utgjør bare veldig liten del av spillefilmene i IMDB (
19 totalt).
628 En annen stor andel kommer fra Internett-arkivet, der jeg har
629 identifisert filmer med referanse til IMDB. Internett-arkivet, som
630 holder til i USA, har som
631 <a href=
"https://archive.org/about/terms.php
">policy å kun publisere
632 filmer som det er lovlig å distribuere
</a
>. Jeg har under arbeidet
633 kommet over flere filmer som har blitt fjernet fra
634 Internett-arkivet, hvilket gjør at jeg konkluderer med at folkene
635 som kontrollerer Internett-arkivet har et aktivt forhold til å kun
636 ha lovlig innhold der, selv om det i stor grad er drevet av
637 frivillige. En annen stor liste med filmer kommer fra det
638 kommersielle selskapet Retro Film Vault, som selger allemannseide
639 filmer til TV- og filmbransjen, Jeg har også benyttet meg av lister
640 over filmer som hevdes å være allemannseie, det være seg Public
641 Domain Review, Public Domain Torrents og Public Domain Movies (.net
642 og .info), samt lister over filmer med Creative Commons-lisensiering
643 fra Wikipedia, VODO og The Hill Productions. Jeg har gjort endel
644 stikkontroll ved å vurdere filmer som kun omtales på en liste. Der
645 jeg har funnet feil som har gjort meg i tvil om vurderingen til de
646 som har laget listen har jeg forkastet listen fullstendig (gjelder
647 en liste fra IMDB).
</p
>
649 <p
>Ved å ta utgangspunkt i verk som kan antas å være lovlig delt på
650 Internett (fra blant annet Internett-arkivet, Public Domain
651 Torrents, Public Domain Reivew og Public Domain Movies), og knytte
652 dem til oppføringer i IMDB, så har jeg så langt klart å identifisere
653 over
11 000 filmer (hovedsaklig spillefilmer) det er grunn til å tro
654 kan lovlig distribueres av alle på Internett. Som ekstra kilder er
655 det brukt lister over filmer som antas/påstås å være allemannseie.
656 Disse kildene kommer fra miljøer som jobber for å gjøre tilgjengelig
657 for almennheten alle verk som er falt i det fri eller har
658 bruksvilkår som tillater deling.
660 <p
>I tillegg til de over
11 000 filmene der tittel-ID i IMDB er
661 identifisert, har jeg funnet mer enn
20 000 oppføringer der jeg ennå
662 ikke har hatt kapasitet til å spore opp tittel-ID i IMDB. Noen av
663 disse er nok duplikater av de IMDB-oppføringene som er identifisert
664 så langt, men neppe alle. Retro Film Vault hevder å ha
44 000
665 filmverk i det fri i sin katalog, så det er mulig at det reelle
666 tallet er betydelig høyere enn de jeg har klart å identifisere så
667 langt. Konklusjonen er at tallet
11 000 er nedre grense for hvor
668 mange filmer i IMDB som kan lovlig deles på Internett. I følge
<a
669 href=
"http://www.imdb.com/stats
">statistikk fra IMDB
</a
> er det
4.6
670 millioner titler registrert, hvorav
3 millioner er TV-serieepisoder.
671 Jeg har ikke funnet ut hvordan de fordeler seg per år.
</p
>
673 <p
>Hvis en fordeler på år alle tittel-IDene i IMDB som hevdes å lovlig
674 kunne deles på Internett, får en følgende histogram:
</p
>
676 <p align=
"center
"><img width=
"80%
" src=
"http://people.skolelinux.org/pere/blog/images/
2017-
12-
20-histogram-year.png
"></p
>
678 <p
>En kan i histogrammet se at effekten av manglende registrering
679 eller fornying av registrering er at mange filmer gitt ut i USA før
680 1978 er allemannseie i dag. I tillegg kan en se at det finnes flere
681 filmer gitt ut de siste årene med bruksvilkår som tillater deling,
682 muligens på grunn av fremveksten av
683 <a href=
"https://creativecommons.org/
">Creative
684 Commons
</a
>-bevegelsen..
</p
>
686 <p
>For maskinell analyse av katalogene har jeg laget et lite program
687 som kobler seg til bittorrent-katalogene som brukes av ulike Popcorn
688 Time-varianter og laster ned komplett liste over filmer i
689 katalogene, noe som bekrefter at det er mulig å hente ned komplett
690 liste med alle filmtitler som er tilgjengelig. Jeg har sett på fire
691 bittorrent-kataloger. Den ene brukes av klienten tilgjengelig fra
692 www.popcorntime.sh og er navngitt
'sh
' i dette dokumentet. Den
693 andre brukes i følge dokument
09,
12 av klienten tilgjengelig fra
694 popcorntime.ag og popcorntime.sh og er navngitt
'yts
' i dette
695 dokumentet. Den tredje brukes av websidene tilgjengelig fra
696 popcorntime-online.tv og er navngitt
'apidomain
' i dette dokumentet.
697 Den fjerde brukes av klienten tilgjenglig fra popcorn-time.to i
698 følge dokument
09,
12, og er navngitt
'ukrfnlge
' i dette
699 dokumentet.
</p
>
701 <p
>Metoden Økokrim legger til grunn skriver i sitt punkt fire at
702 skjønn er en egnet metode for å finne ut om en film kan lovlig deles
703 på Internett eller ikke, og sier at det ble «vurdert hvorvidt det
704 var rimelig å forvente om at verket var vernet av copyright». For
705 det første er det ikke nok å slå fast om en film er «vernet av
706 copyright» for å vite om det er lovlig å dele den på Internett eller
707 ikke, da det finnes flere filmer med opphavsrettslige bruksvilkår
708 som tillater deling på Internett. Eksempler på dette er Creative
709 Commons-lisensierte filmer som Citizenfour fra
2014 og Sintel fra
710 2010. I tillegg til slike finnes det flere filmer som nå er
711 allemannseie (public domain) på grunn av manglende registrering
712 eller fornying av registrering selv om både regisør,
713 produksjonsselskap og distributør ønsker seg vern. Eksempler på
714 dette er Plan
9 from Outer Space fra
1959 og Night of the Living
715 Dead fra
1968. Alle filmer fra USA som var allemannseie før
716 1989-
03-
01 forble i det fri da Bern-konvensjonen, som tok effekt i
717 USA på det tidspunktet, ikke ble gitt tilbakevirkende kraft. Hvis
719 <a href=
"http://www.latimes.com/local/lanow/la-me-ln-happy-birthday-song-lawsuit-decision-
20150922-story.html
">historien
720 om sangen «Happy birthday»
</a
> forteller oss, der betaling for bruk
721 har vært krevd inn i flere tiår selv om sangen ikke egentlig var
722 vernet av åndsverksloven, så er det at hvert enkelt verk må vurderes
723 nøye og i detalj før en kan slå fast om verket er allemannseie eller
724 ikke, det holder ikke å tro på selverklærte rettighetshavere. Flere
725 eksempel på verk i det fri som feilklassifiseres som vernet er fra
726 dokument
09,
18, som lister opp søkeresultater for klienten omtalt
727 som popcorntime.sh og i følge notatet kun inneholder en film (The
728 Circus fra
1928) som under tvil kan antas å være allemannseie.
</p
>
730 <p
>Ved rask gjennomlesning av dokument
09,
18, som inneholder
731 skjermbilder fra bruk av en Popcorn Time-variant, fant jeg omtalt
732 både filmen «The Brain That Wouldn
't Die» fra
1962 som er
733 <a href=
"https://archive.org/details/brain_that_wouldnt_die
">tilgjengelig
734 fra Internett-arkivet
</a
> og som
735 <a href=
"https://en.wikipedia.org/wiki/List_of_films_in_the_public_domain_in_the_United_States
">i
736 følge Wikipedia er allemannseie i USA
</a
> da den ble gitt ut i
737 1962 uten
'copyright
'-merking, og filmen «God’s Little Acre» fra
738 1958 <a href=
"https://en.wikipedia.org/wiki/God%
27s_Little_Acre_%
28film%
29">som
739 er lagt ut på Wikipedia
</a
>, der det fortelles at
740 sort/hvit-utgaven er allemannseie. Det fremgår ikke fra dokument
741 09,
18 om filmen omtalt der er sort/hvit-utgaven. Av
742 kapasitetsårsaker og på grunn av at filmoversikten i dokument
09,
18
743 ikke er maskinlesbart har jeg ikke forsøkt å sjekke alle filmene som
744 listes opp der om mot liste med filmer som er antatt lovlig kan
745 distribueres på Internet.
</p
>
747 <p
>Ved maskinell gjennomgang av listen med IMDB-referanser under
748 regnearkfanen
'Unique titles
' i dokument
09.14, fant jeg i tillegg
749 filmen «She Wore a Yellow Ribbon» fra
1949) som nok også er
750 feilklassifisert. Filmen «She Wore a Yellow Ribbon» er tilgjengelig
751 fra Internett-arkivet og markert som allemannseie der. Det virker
752 dermed å være minst fire ganger så mange filmer som kan lovlig deles
753 på Internett enn det som er lagt til grunn når en påstår at minst
754 99% av innholdet er ulovlig. Jeg ser ikke bort fra at nærmere
755 undersøkelser kan avdekke flere. Poenget er uansett at metodens
756 punkt om «rimelig å forvente om at verket var vernet av copyright»
757 gjør metoden upålitelig.
</p
>
759 <p
>Den omtalte målemetoden velger ut tilfeldige søketermer fra
760 ordlisten Dale-Chall. Den ordlisten inneholder
3000 enkle engelske
761 som fjerdeklassinger i USA er forventet å forstå. Det fremgår ikke
762 hvorfor akkurat denne ordlisten er valgt, og det er uklart for meg
763 om den er egnet til å få et representativt utvalg av filmer. Mange
764 av ordene gir tomt søkeresultat. Ved å simulerte tilsvarende søk
765 ser jeg store avvik fra fordelingen i katalogen for enkeltmålinger.
766 Dette antyder at enkeltmålinger av
100 filmer slik målemetoden
767 beskriver er gjort, ikke er velegnet til å finne andel ulovlig
768 innhold i bittorrent-katalogene.
</p
>
770 <p
>En kan motvirke dette store avviket for enkeltmålinger ved å gjøre
771 mange søk og slå sammen resultatet. Jeg har testet ved å
772 gjennomføre
100 enkeltmålinger (dvs. måling av (
100x100=)
10 000
773 tilfeldig valgte filmer) som gir mindre, men fortsatt betydelig
774 avvik, i forhold til telling av filmer pr år i hele katalogen.
</p
>
776 <p
>Målemetoden henter ut de fem øverste i søkeresultatet.
777 Søkeresultatene er sortert på antall bittorrent-klienter registrert
778 som delere i katalogene, hvilket kan gi en slagside mot hvilke
779 filmer som er populære blant de som bruker bittorrent-katalogene,
780 uten at det forteller noe om hvilket innhold som er tilgjengelig
781 eller hvilket innhold som deles med Popcorn Time-klienter. Jeg har
782 forsøkt å måle hvor stor en slik slagside eventuelt er ved å
783 sammenligne fordelingen hvis en tar de
5 nederste i søkeresultatet i
784 stedet. Avviket for disse to metodene for endel kataloger er godt
785 synlig på histogramet. Her er histogram over filmer funnet i den
786 komplette katalogen (grønn strek), og filmer funnet ved søk etter
787 ord i Dale-Chall. Grafer merket
'top
' henter fra de
5 første i
788 søkeresultatet, mens de merket
'bottom
' henter fra de
5 siste. En
789 kan her se at resultatene påvirkes betydelig av hvorvidt en ser på
790 de første eller de siste filmene i et søketreff.
</p
>
792 <p align=
"center
">
793 <img width=
"40%
" src=
"http://people.skolelinux.org/pere/blog/images/
2017-
12-
20-histogram-year-sh-top.png
"/
>
794 <img width=
"40%
" src=
"http://people.skolelinux.org/pere/blog/images/
2017-
12-
20-histogram-year-sh-bottom.png
"/
>
796 <img width=
"40%
" src=
"http://people.skolelinux.org/pere/blog/images/
2017-
12-
20-histogram-year-yts-top.png
"/
>
797 <img width=
"40%
" src=
"http://people.skolelinux.org/pere/blog/images/
2017-
12-
20-histogram-year-yts-bottom.png
"/
>
799 <img width=
"40%
" src=
"http://people.skolelinux.org/pere/blog/images/
2017-
12-
20-histogram-year-ukrfnlge-top.png
"/
>
800 <img width=
"40%
" src=
"http://people.skolelinux.org/pere/blog/images/
2017-
12-
20-histogram-year-ukrfnlge-bottom.png
"/
>
802 <img width=
"40%
" src=
"http://people.skolelinux.org/pere/blog/images/
2017-
12-
20-histogram-year-apidomain-top.png
"/
>
803 <img width=
"40%
" src=
"http://people.skolelinux.org/pere/blog/images/
2017-
12-
20-histogram-year-apidomain-bottom.png
"/
>
806 <p
>Det er verdt å bemerke at de omtalte bittorrent-katalogene ikke er
807 laget for bruk med Popcorn Time. Eksempelvis tilhører katalogen
808 YTS, som brukes av klientet som ble lastes ned fra popcorntime.sh,
809 et selvstendig fildelings-relatert nettsted YTS.AG med et separat
810 brukermiljø. Målemetoden foreslått av Økokrim måler dermed ikke
811 (u)lovligheten rundt bruken av Popcorn Time, men (u)lovligheten til
812 innholdet i disse katalogene.
</p
>
816 <p id=
"dok-
09-
13">Metoden fra Økokrims dokument
09,
13 i straffesaken
817 om DNS-beslag.
</p
>
819 <p
><strong
>1. Evaluation of (il)legality
</strong
></p
>
821 <p
><strong
>1.1. Methodology
</strong
>
823 <p
>Due to its technical configuration, Popcorn Time applications don
't
824 allow to make a full list of all titles made available. In order to
825 evaluate the level of illegal operation of PCT, the following
826 methodology was applied:
</p
>
830 <li
>A random selection of
50 keywords, greater than
3 letters, was
831 made from the Dale-Chall list that contains
3000 simple English
832 words1. The selection was made by using a Random Number
833 Generator2.
</li
>
835 <li
>For each keyword, starting with the first randomly selected
836 keyword, a search query was conducted in the movie section of the
837 respective Popcorn Time application. For each keyword, the first
838 five results were added to the title list until the number of
100
839 unique titles was reached (duplicates were removed).
</li
>
841 <li
>For one fork, .CH, insufficient titles were generated via this
842 approach to reach
100 titles. This was solved by adding any
843 additional query results above five for each of the
50 keywords.
844 Since this still was not enough, another
42 random keywords were
845 selected to finally reach
100 titles.
</li
>
847 <li
>It was verified whether or not there is a reasonable expectation
848 that the work is copyrighted by checking if they are available on
849 IMDb, also verifying the director, the year when the title was
850 released, the release date for a certain market, the production
851 company/ies of the title and the distribution company/ies.
</li
>
855 <p
><strong
>1.2. Results
</strong
></p
>
857 <p
>Between
6 and
9 June
2016, four forks of Popcorn Time were
858 investigated: popcorn-time.to, popcorntime.ag, popcorntime.sh and
859 popcorntime.ch. An excel sheet with the results is included in
860 Appendix
1. Screenshots were secured in separate Appendixes for each
861 respective fork, see Appendix
2-
5.
</p
>
863 <p
>For each fork, out of
100, de-duplicated titles it was possible to
864 retrieve data according to the parameters set out above that indicate
865 that the title is commercially available. Per fork, there was
1 title
866 that presumably falls within the public domain, i.e. the
1928 movie
867 "The Circus
" by and with Charles Chaplin.
</p
>
869 <p
>Based on the above it is reasonable to assume that
99% of the movie
870 content of each fork is copyright protected and is made available
873 <p
>This exercise was not repeated for TV series, but considering that
874 besides production companies and distribution companies also
875 broadcasters may have relevant rights, it is reasonable to assume that
876 at least a similar level of infringement will be established.
</p
>
878 <p
>Based on the above it is reasonable to assume that
99% of all the
879 content of each fork is copyright protected and are made available
885 <title>Is the short movie «Empty Socks» from
1927 in the public domain or not?
</title>
886 <link>http://people.skolelinux.org/pere/blog/Is_the_short_movie__Empty_Socks__from_1927_in_the_public_domain_or_not_.html
</link>
887 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Is_the_short_movie__Empty_Socks__from_1927_in_the_public_domain_or_not_.html
</guid>
888 <pubDate>Tue,
5 Dec
2017 12:
30:
00 +
0100</pubDate>
889 <description><p
>Three years ago, a presumed lost animation film,
890 <a href=
"https://en.wikipedia.org/wiki/Empty_Socks
">Empty Socks from
891 1927</a
>, was discovered in the Norwegian National Library. At the
892 time it was discovered, it was generally assumed to be copyrighted by
893 The Walt Disney Company, and I blogged about
894 <a href=
"http://people.skolelinux.org/pere/blog/Opphavsretts_status_for__Empty_Socks__fra_1927_.html
">my
895 reasoning to conclude
</a
> that it would would enter the Norwegian
896 equivalent of the public domain in
2053, based on my understanding of
897 Norwegian Copyright Law. But a few days ago, I came across
898 <a href=
"http://www.toonzone.net/forums/threads/exposed-disneys-repurchase-of-oswald-the-rabbit-a-sham
.4792291/
">a
899 blog post claiming the movie was already in the public domain
</a
>, at
900 least in USA. The reasoning is as follows: The film was released in
901 November or Desember
1927 (sources disagree), and presumably
902 registered its copyright that year. At that time, right holders of
903 movies registered by the copyright office received government
904 protection for there work for
28 years. After
28 years, the copyright
905 had to be renewed if the wanted the government to protect it further.
906 The blog post I found claim such renewal did not happen for this
907 movie, and thus it entered the public domain in
1956. Yet someone
908 claim the copyright was renewed and the movie is still copyright
909 protected. Can anyone help me to figure out which claim is correct?
910 I have not been able to find Empty Socks in Catalog of copyright
911 entries. Ser
.3 pt
.12-
13 v
.9-
12 1955-
1958 Motion Pictures
912 <a href=
"http://onlinebooks.library.upenn.edu/cce/
1955r.html#film
">available
913 from the University of Pennsylvania
</a
>, neither in
914 <a href=
"https://babel.hathitrust.org/cgi/pt?id=mdp
.39015084451130;page=root;view=image;size=
100;seq=
83;num=
45">page
915 45 for the first half of
1955</a
>, nor in
916 <a href=
"https://babel.hathitrust.org/cgi/pt?id=mdp
.39015084451130;page=root;view=image;size=
100;seq=
175;num=
119">page
917 119 for the second half of
1955</a
>. It is of course possible that
918 the renewal entry was left out of the printed catalog by mistake. Is
919 there some way to rule out this possibility? Please help, and update
920 the wikipedia page with your findings.
922 <p
>As usual, if you use Bitcoin and want to show your support of my
923 activities, please send Bitcoin donations to my address
924 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
929 <title>Techno TV broadcasting live across Norway and the Internet (#debconf16, #nuug) on @frikanalen
</title>
930 <link>http://people.skolelinux.org/pere/blog/Techno_TV_broadcasting_live_across_Norway_and_the_Internet___debconf16___nuug__on__frikanalen.html
</link>
931 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Techno_TV_broadcasting_live_across_Norway_and_the_Internet___debconf16___nuug__on__frikanalen.html
</guid>
932 <pubDate>Mon,
1 Aug
2016 10:
30:
00 +
0200</pubDate>
933 <description><p
>Did you know there is a TV channel broadcasting talks from DebConf
934 16 across an entire country? Or that there is a TV channel
935 broadcasting talks by or about
936 <a href=
"http://beta.frikanalen.no/video/
625529/
">Linus Torvalds
</a
>,
937 <a href=
"http://beta.frikanalen.no/video/
625599/
">Tor
</a
>,
938 <a href=
"http://beta.frikanalen.no/video/
624019/
">OpenID
</A
>,
939 <a href=
"http://beta.frikanalen.no/video/
625624/
">Common Lisp
</a
>,
940 <a href=
"http://beta.frikanalen.no/video/
625446/
">Civic Tech
</a
>,
941 <a href=
"http://beta.frikanalen.no/video/
625090/
">EFF founder John Barlow
</a
>,
942 <a href=
"http://beta.frikanalen.no/video/
625432/
">how to make
3D
943 printer electronics
</a
> and many more fascinating topics? It works
944 using only free software (all of it
945 <a href=
"http://github.com/Frikanalen
">available from Github
</a
>), and
946 is administrated using a web browser and a web API.
</p
>
948 <p
>The TV channel is the Norwegian open channel
949 <a href=
"http://www.frikanalen.no/
">Frikanalen
</a
>, and I am involved
950 via
<a href=
"https://www.nuug.no/
">the NUUG member association
</a
> in
951 running and developing the software for the channel. The channel is
952 organised as a member organisation where its members can upload and
953 broadcast what they want (think of it as Youtube for national
954 broadcasting television). Individuals can broadcast too. The time
955 slots are handled on a first come, first serve basis. Because the
956 channel have almost no viewers and very few active members, we can
957 experiment with TV technology without too much flack when we make
958 mistakes. And thanks to the few active members, most of the slots on
959 the schedule are free. I see this as an opportunity to spread
960 knowledge about technology and free software, and have a script I run
961 regularly to fill up all the open slots the next few days with
962 technology related video. The end result is a channel I like to
963 describe as Techno TV - filled with interesting talks and
964 presentations.
</p
>
966 <p
>It is available on channel
50 on the Norwegian national digital TV
967 network (RiksTV). It is also available as a multicast stream on
968 Uninett. And finally, it is available as
969 <a href=
"http://beta.frikanalen.no/
">a WebM unicast stream
</a
> from
970 Frikanalen and NUUG. Check it out. :)
</p
>
975 <title>The new
"best
" multimedia player in Debian?
</title>
976 <link>http://people.skolelinux.org/pere/blog/The_new__best__multimedia_player_in_Debian_.html
</link>
977 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/The_new__best__multimedia_player_in_Debian_.html
</guid>
978 <pubDate>Mon,
6 Jun
2016 12:
50:
00 +
0200</pubDate>
979 <description><p
>When I set out a few weeks ago to figure out
980 <a href=
"http://people.skolelinux.org/pere/blog/What_is_the_best_multimedia_player_in_Debian_.html
">which
981 multimedia player in Debian claimed to support most file formats /
982 MIME types
</a
>, I was a bit surprised how varied the sets of MIME types
983 the various players claimed support for. The range was from
55 to
130
984 MIME types. I suspect most media formats are supported by all
985 players, but this is not really reflected in the MimeTypes values in
986 their desktop files. There are probably also some bogus MIME types
987 listed, but it is hard to identify which one this is.
</p
>
989 <p
>Anyway, in the mean time I got in touch with upstream for some of
990 the players suggesting to add more MIME types to their desktop files,
991 and decided to spend some time myself improving the situation for my
992 favorite media player VLC. The fixes for VLC entered Debian unstable
993 yesterday. The complete list of MIME types can be seen on the
994 <a href=
"https://wiki.debian.org/DebianMultimedia/PlayerSupport
">Multimedia
995 player MIME type support status
</a
> Debian wiki page.
</p
>
997 <p
>The new
"best
" multimedia player in Debian? It is VLC, followed by
998 totem, parole, kplayer, gnome-mpv, mpv, smplayer, mplayer-gui and
999 kmplayer. I am sure some of the other players desktop files support
1000 several of the formats currently listed as working only with vlc,
1001 toten and parole.
</p
>
1003 <p
>A sad observation is that only
14 MIME types are listed as
1004 supported by all the tested multimedia players in Debian in their
1005 desktop files: audio/mpeg, audio/vnd.rn-realaudio, audio/x-mpegurl,
1006 audio/x-ms-wma, audio/x-scpls, audio/x-wav, video/mp4, video/mpeg,
1007 video/quicktime, video/vnd.rn-realvideo, video/x-matroska,
1008 video/x-ms-asf, video/x-ms-wmv and video/x-msvideo. Personally I find
1009 it sad that video/ogg and video/webm is not supported by all the media
1010 players in Debian. As far as I can tell, all of them can handle both
1016 <title>Tor - from its creators mouth
11 years ago
</title>
1017 <link>http://people.skolelinux.org/pere/blog/Tor___from_its_creators_mouth_11_years_ago.html
</link>
1018 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Tor___from_its_creators_mouth_11_years_ago.html
</guid>
1019 <pubDate>Sat,
28 May
2016 14:
20:
00 +
0200</pubDate>
1020 <description><p
>A little more than
11 years ago, one of the creators of Tor, and
1021 the current President of
<a href=
"https://www.torproject.org/
">the Tor
1022 project
</a
>, Roger Dingledine, gave a talk for the members of the
1023 <a href=
"http://www.nuug.no/
">Norwegian Unix User group
</a
> (NUUG). A
1024 video of the talk was recorded, and today, thanks to the great help
1025 from David Noble, I finally was able to publish the video of the talk
1026 on Frikanalen, the Norwegian open channel TV station where NUUG
1027 currently publishes its talks. You can
1028 <a href=
"http://frikanalen.no/se
">watch the live stream using a web
1029 browser
</a
> with WebM support, or check out the recording on the video
1030 on demand page for the talk
1031 "<a href=
"http://beta.frikanalen.no/video/
625599">Tor: Anonymous
1032 communication for the US Department of Defence...and you.
</a
>".
</p
>
1034 <p
>Here is the video included for those of you using browsers with
1035 HTML video and Ogg Theora support:
</p
>
1037 <p
><video width=
"70%
" poster=
"http://simula.gunkies.org/media/
625599/large_thumb/
20050421-tor-frikanalen.jpg
" controls
>
1038 <source src=
"http://simula.gunkies.org/media/
625599/theora/
20050421-tor-frikanalen.ogv
" type=
"video/ogg
"/
>
1039 </video
></p
>
1041 <p
>I guess the gist of the talk can be summarised quite simply: If you
1042 want to help the military in USA (and everyone else), use Tor. :)
</p
>
1047 <title>What is the best multimedia player in Debian?
</title>
1048 <link>http://people.skolelinux.org/pere/blog/What_is_the_best_multimedia_player_in_Debian_.html
</link>
1049 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/What_is_the_best_multimedia_player_in_Debian_.html
</guid>
1050 <pubDate>Sun,
8 May
2016 09:
40:
00 +
0200</pubDate>
1051 <description><p
><strong
>Where I set out to figure out which multimedia player in
1052 Debian claim support for most file formats.
</strong
></p
>
1054 <p
>A few years ago, I had a look at the media support for Browser
1055 plugins in Debian, to get an idea which plugins to include in Debian
1056 Edu. I created a script to extract the set of supported MIME types
1057 for each plugin, and used this to find out which multimedia browser
1058 plugin supported most file formats / media types.
1059 <a href=
"https://wiki.debian.org/DebianEdu/BrowserMultimedia
">The
1060 result
</a
> can still be seen on the Debian wiki, even though it have
1061 not been updated for a while. But browser plugins are less relevant
1062 these days, so I thought it was time to look at standalone
1065 <p
>A few days ago I was tired of VLC not being listed as a viable
1066 player when I wanted to play videos from the Norwegian National
1067 Broadcasting Company, and decided to investigate why. The cause is a
1068 <a href=
"https://bugs.debian.org/
822245">missing MIME type in the VLC
1069 desktop file
</a
>. In the process I wrote a script to compare the set
1070 of MIME types announced in the desktop file and the browser plugin,
1071 only to discover that there is quite a large difference between the
1072 two for VLC. This discovery made me dig up the script I used to
1073 compare browser plugins, and adjust it to compare desktop files
1074 instead, to try to figure out which multimedia player in Debian
1075 support most file formats.
</p
>
1077 <p
>The result can be seen on the Debian Wiki, as
1078 <a href=
"https://wiki.debian.org/DebianMultimedia/PlayerSupport
">a
1079 table listing all MIME types supported by one of the packages included
1080 in the table
</a
>, with the package supporting most MIME types being
1081 listed first in the table.
</p
>
1083 </p
>The best multimedia player in Debian? It is totem, followed by
1084 parole, kplayer, mpv, vlc, smplayer mplayer-gui gnome-mpv and
1085 kmplayer. Time for the other players to update their announced MIME
1091 <title>Nedlasting fra NRK, som Matroska med undertekster
</title>
1092 <link>http://people.skolelinux.org/pere/blog/Nedlasting_fra_NRK__som_Matroska_med_undertekster.html
</link>
1093 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Nedlasting_fra_NRK__som_Matroska_med_undertekster.html
</guid>
1094 <pubDate>Sat,
2 Jan
2016 13:
50:
00 +
0100</pubDate>
1095 <description><p
>Det kommer stadig nye løsninger for å ta lagre unna innslag fra NRK
1096 for å se på det senere. For en stund tilbake kom jeg over et script
1097 nrkopptak laget av Ingvar Hagelund. Han fjernet riktignok sitt script
1098 etter forespørsel fra Erik Bolstad i NRK, men noen tok heldigvis og
1099 gjorde det
<a href=
"https://github.com/liangqi/nrkopptak
">tilgjengelig
1100 via github
</a
>.
</p
>
1102 <p
>Scriptet kan lagre som MPEG4 eller Matroska, og bake inn
1103 undertekster i fila på et vis som blant annet VLC forstår. For å
1104 bruke scriptet, kopier ned git-arkivet og kjør
</p
>
1106 <p
><pre
>
1107 nrkopptak/bin/nrk-opptak k
<ahref=
"https://tv.nrk.no/serie/bmi-turne/MUHH45000115/sesong-
1/episode-
1">https://tv.nrk.no/serie/bmi-turne/MUHH45000115/sesong-
1/episode-
1</a
>
1108 </pre
></p
>
1110 <p
>URL-eksemplet er dagens toppsak på tv.nrk.no. Argument
'k
' ber
1111 scriptet laste ned og lagre som Matroska. Det finnes en rekke andre
1112 muligheter for valg av kvalitet og format.
</p
>
1114 <p
>Jeg foretrekker dette scriptet fremfor youtube-dl, som
1115 <a href=
"http://people.skolelinux.org/pere/blog/Hvordan_enkelt_laste_ned_filmer_fra_NRK_med_den__nye__l_sningen.html
">
1116 nevnt i
2014 støtter NRK
</a
> og en rekke andre videokilder, på grunn
1117 av at nrkopptak samler undertekster og video i en enkelt fil, hvilket
1118 gjør håndtering enklere på disk.
</p
>
1123 <title>MPEG LA on
"Internet Broadcast AVC Video
" licensing and non-private use
</title>
1124 <link>http://people.skolelinux.org/pere/blog/MPEG_LA_on__Internet_Broadcast_AVC_Video__licensing_and_non_private_use.html
</link>
1125 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/MPEG_LA_on__Internet_Broadcast_AVC_Video__licensing_and_non_private_use.html
</guid>
1126 <pubDate>Tue,
7 Jul
2015 09:
50:
00 +
0200</pubDate>
1127 <description><p
>After asking the Norwegian Broadcasting Company (NRK)
1128 <a href=
"http://people.skolelinux.org/pere/blog/Hva_gj_r_at_NRK_kan_distribuere_H_264_video_uten_patentavtale_med_MPEG_LA_.html
">why
1129 they can broadcast and stream H
.264 video without an agreement with
1130 the MPEG LA
</a
>, I was wiser, but still confused. So I asked MPEG LA
1131 if their understanding matched that of NRK. As far as I can tell, it
1134 <p
>I started by asking for more information about the various
1135 licensing classes and what exactly is covered by the
"Internet
1136 Broadcast AVC Video
" class that NRK pointed me at to explain why NRK
1137 did not need a license for streaming H
.264 video:
1139 <p
><blockquote
>
1141 <p
>According to
1142 <a href=
"http://www.mpegla.com/Lists/MPEG%
20LA%
20News%
20List/Attachments/
226/n-
10-
02-
02.pdf
">a
1143 MPEG LA press release dated
2010-
02-
02</a
>, there is no charge when
1144 using MPEG AVC/H
.264 according to the terms of
"Internet Broadcast AVC
1145 Video
". I am trying to understand exactly what the terms of
"Internet
1146 Broadcast AVC Video
" is, and wondered if you could help me. What
1147 exactly is covered by these terms, and what is not?
</p
>
1149 <p
>The only source of more information I have been able to find is a
1151 <a href=
"http://www.mpegla.com/main/programs/avc/Documents/avcweb.pdf
">AVC
1152 Patent Portfolio License Briefing
</a
>, which states this about the
1156 <li
>Where End User pays for AVC Video
1158 <li
>Subscription (not limited by title) –
100,
000 or fewer
1159 subscribers/yr = no royalty;
&gt;
100,
000 to
250,
000 subscribers/yr =
1160 $
25,
000;
&gt;
250,
000 to
500,
000 subscribers/yr = $
50,
000;
&gt;
500,
000 to
1161 1M subscribers/yr = $
75,
000;
&gt;
1M subscribers/yr = $
100,
000</li
>
1163 <li
>Title-by-Title -
12 minutes or less = no royalty;
&gt;
12 minutes in
1164 length = lower of (a)
2% or (b) $
0.02 per title
</li
>
1165 </ul
></li
>
1167 <li
>Where remuneration is from other sources
1169 <li
>Free Television - (a) one-time $
2,
500 per transmission encoder or
1170 (b) annual fee starting at $
2,
500 for
&gt;
100,
000 HH rising to
1171 maximum $
10,
000 for
&gt;
1,
000,
000 HH
</li
>
1173 <li
>Internet Broadcast AVC Video (not title-by-title, not subscription)
1174 – no royalty for life of the AVC Patent Portfolio License
</li
>
1175 </ul
></li
>
1178 <p
>Am I correct in assuming that the four categories listed is the
1179 categories used when selecting licensing terms, and that
"Internet
1180 Broadcast AVC Video
" is the category for things that do not fall into
1181 one of the other three categories? Can you point me to a good source
1182 explaining what is ment by
"title-by-title
" and
"Free Television
" in
1183 the license terms for AVC/H
.264?
</p
>
1185 <p
>Will a web service providing H
.264 encoded video content in a
1186 "video on demand
" fashing similar to Youtube and Vimeo, where no
1187 subscription is required and no payment is required from end users to
1188 get access to the videos, fall under the terms of the
"Internet
1189 Broadcast AVC Video
", ie no royalty for life of the AVC Patent
1190 Portfolio license? Does it matter if some users are subscribed to get
1191 access to personalized services?
</p
>
1193 <p
>Note, this request and all answers will be published on the
1195 </blockquote
></p
>
1197 <p
>The answer came quickly from Benjamin J. Myers, Licensing Associate
1198 with the MPEG LA:
</p
>
1200 <p
><blockquote
>
1201 <p
>Thank you for your message and for your interest in MPEG LA. We
1202 appreciate hearing from you and I will be happy to assist you.
</p
>
1204 <p
>As you are aware, MPEG LA offers our AVC Patent Portfolio License
1205 which provides coverage under patents that are essential for use of
1206 the AVC/H
.264 Standard (MPEG-
4 Part
10). Specifically, coverage is
1207 provided for end products and video content that make use of AVC/H
.264
1208 technology. Accordingly, the party offering such end products and
1209 video to End Users concludes the AVC License and is responsible for
1210 paying the applicable royalties.
</p
>
1212 <p
>Regarding Internet Broadcast AVC Video, the AVC License generally
1213 defines such content to be video that is distributed to End Users over
1214 the Internet free-of-charge. Therefore, if a party offers a service
1215 which allows users to upload AVC/H
.264 video to its website, and such
1216 AVC Video is delivered to End Users for free, then such video would
1217 receive coverage under the sublicense for Internet Broadcast AVC
1218 Video, which is not subject to any royalties for the life of the AVC
1219 License. This would also apply in the scenario where a user creates a
1220 free online account in order to receive a customized offering of free
1221 AVC Video content. In other words, as long as the End User is given
1222 access to or views AVC Video content at no cost to the End User, then
1223 no royalties would be payable under our AVC License.
</p
>
1225 <p
>On the other hand, if End Users pay for access to AVC Video for a
1226 specific period of time (e.g., one month, one year, etc.), then such
1227 video would constitute Subscription AVC Video. In cases where AVC
1228 Video is delivered to End Users on a pay-per-view basis, then such
1229 content would constitute Title-by-Title AVC Video. If a party offers
1230 Subscription or Title-by-Title AVC Video to End Users, then they would
1231 be responsible for paying the applicable royalties you noted below.
</p
>
1233 <p
>Finally, in the case where AVC Video is distributed for free
1234 through an
"over-the-air, satellite and/or cable transmission
", then
1235 such content would constitute Free Television AVC Video and would be
1236 subject to the applicable royalties.
</p
>
1238 <p
>For your reference, I have attached
1239 <a href=
"http://people.skolelinux.org/pere/blog/images/
2015-
07-
07-mpegla.pdf
">a
1240 .pdf copy of the AVC License
</a
>. You will find the relevant
1241 sublicense information regarding AVC Video in Sections
2.2 through
1242 2.5, and the corresponding royalties in Section
3.1.2 through
3.1.4.
1243 You will also find the definitions of Title-by-Title AVC Video,
1244 Subscription AVC Video, Free Television AVC Video, and Internet
1245 Broadcast AVC Video in Section
1 of the License. Please note that the
1246 electronic copy is provided for informational purposes only and cannot
1247 be used for execution.
</p
>
1249 <p
>I hope the above information is helpful. If you have additional
1250 questions or need further assistance with the AVC License, please feel
1251 free to contact me directly.
</p
>
1252 </blockquote
></p
>
1254 <p
>Having a fresh copy of the license text was useful, and knowing
1255 that the definition of Title-by-Title required payment per title made
1256 me aware that my earlier understanding of that phrase had been wrong.
1257 But I still had a few questions:
</p
>
1259 <p
><blockquote
>
1260 <p
>I have a small followup question. Would it be possible for me to get
1261 a license with MPEG LA even if there are no royalties to be paid? The
1262 reason I ask, is that some video related products have a copyright
1263 clause limiting their use without a license with MPEG LA. The clauses
1264 typically look similar to this:
1266 <p
><blockquote
>
1267 This product is licensed under the AVC patent portfolio license for
1268 the personal and non-commercial use of a consumer to (a) encode
1269 video in compliance with the AVC standard (
"AVC video
") and/or (b)
1270 decode AVC video that was encoded by a consumer engaged in a
1271 personal and non-commercial activity and/or AVC video that was
1272 obtained from a video provider licensed to provide AVC video. No
1273 license is granted or shall be implied for any other use. additional
1274 information may be obtained from MPEG LA L.L.C.
1275 </blockquote
></p
>
1277 <p
>It is unclear to me if this clause mean that I need to enter into
1278 an agreement with MPEG LA to use the product in question, even if
1279 there are no royalties to be paid to MPEG LA. I suspect it will
1280 differ depending on the jurisdiction, and mine is Norway. What is
1281 MPEG LAs view on this?
</p
>
1282 </blockquote
></p
>
1284 <p
>According to the answer, MPEG LA believe those using such tools for
1285 non-personal or commercial use need a license with them:
</p
>
1287 <p
><blockquote
>
1289 <p
>With regard to the Notice to Customers, I would like to begin by
1290 clarifying that the Notice from Section
7.1 of the AVC License
1293 <p
>THIS PRODUCT IS LICENSED UNDER THE AVC PATENT PORTFOLIO LICENSE FOR
1294 THE PERSONAL USE OF A CONSUMER OR OTHER USES IN WHICH IT DOES NOT
1295 RECEIVE REMUNERATION TO (i) ENCODE VIDEO IN COMPLIANCE WITH THE AVC
1296 STANDARD (
"AVC VIDEO
") AND/OR (ii) DECODE AVC VIDEO THAT WAS ENCODED
1297 BY A CONSUMER ENGAGED IN A PERSONAL ACTIVITY AND/OR WAS OBTAINED FROM
1298 A VIDEO PROVIDER LICENSED TO PROVIDE AVC VIDEO. NO LICENSE IS GRANTED
1299 OR SHALL BE IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE
1300 OBTAINED FROM MPEG LA, L.L.C. SEE HTTP://WWW.MPEGLA.COM
</p
>
1302 <p
>The Notice to Customers is intended to inform End Users of the
1303 personal usage rights (for example, to watch video content) included
1304 with the product they purchased, and to encourage any party using the
1305 product for commercial purposes to contact MPEG LA in order to become
1306 licensed for such use (for example, when they use an AVC Product to
1307 deliver Title-by-Title, Subscription, Free Television or Internet
1308 Broadcast AVC Video to End Users, or to re-Sell a third party
's AVC
1309 Product as their own branded AVC Product).
</p
>
1311 <p
>Therefore, if a party is to be licensed for its use of an AVC
1312 Product to Sell AVC Video on a Title-by-Title, Subscription, Free
1313 Television or Internet Broadcast basis, that party would need to
1314 conclude the AVC License, even in the case where no royalties were
1315 payable under the License. On the other hand, if that party (either a
1316 Consumer or business customer) simply uses an AVC Product for their
1317 own internal purposes and not for the commercial purposes referenced
1318 above, then such use would be included in the royalty paid for the AVC
1319 Products by the licensed supplier.
</p
>
1321 <p
>Finally, I note that our AVC License provides worldwide coverage in
1322 countries that have AVC Patent Portfolio Patents, including
1325 <p
>I hope this clarification is helpful. If I may be of any further
1326 assistance, just let me know.
</p
>
1327 </blockquote
></p
>
1329 <p
>The mentioning of Norwegian patents made me a bit confused, so I
1330 asked for more information:
</p
>
1332 <p
><blockquote
>
1334 <p
>But one minor question at the end. If I understand you correctly,
1335 you state in the quote above that there are patents in the AVC Patent
1336 Portfolio that are valid in Norway. This make me believe I read the
1337 list available from
&lt;URL:
1338 <a href=
"http://www.mpegla.com/main/programs/AVC/Pages/PatentList.aspx
">http://www.mpegla.com/main/programs/AVC/Pages/PatentList.aspx
</a
>
1339 &gt; incorrectly, as I believed the
"NO
" prefix in front of patents
1340 were Norwegian patents, and the only one I could find under Mitsubishi
1341 Electric Corporation expired in
2012. Which patents are you referring
1342 to that are relevant for Norway?
</p
>
1344 </blockquote
></p
>
1346 <p
>Again, the quick answer explained how to read the list of patents
1347 in that list:
</p
>
1349 <p
><blockquote
>
1351 <p
>Your understanding is correct that the last AVC Patent Portfolio
1352 Patent in Norway expired on
21 October
2012. Therefore, where AVC
1353 Video is both made and Sold in Norway after that date, then no
1354 royalties would be payable for such AVC Video under the AVC License.
1355 With that said, our AVC License provides historic coverage for AVC
1356 Products and AVC Video that may have been manufactured or Sold before
1357 the last Norwegian AVC patent expired. I would also like to clarify
1358 that coverage is provided for the country of manufacture and the
1359 country of Sale that has active AVC Patent Portfolio Patents.
</p
>
1361 <p
>Therefore, if a party offers AVC Products or AVC Video for Sale in
1362 a country with active AVC Patent Portfolio Patents (for example,
1363 Sweden, Denmark, Finland, etc.), then that party would still need
1364 coverage under the AVC License even if such products or video are
1365 initially made in a country without active AVC Patent Portfolio
1366 Patents (for example, Norway). Similarly, a party would need to
1367 conclude the AVC License if they make AVC Products or AVC Video in a
1368 country with active AVC Patent Portfolio Patents, but eventually Sell
1369 such AVC Products or AVC Video in a country without active AVC Patent
1370 Portfolio Patents.
</p
>
1371 </blockquote
></p
>
1373 <p
>As far as I understand it, MPEG LA believe anyone using Adobe
1374 Premiere and other video related software with a H
.264 distribution
1375 license need a license agreement with MPEG LA to use such tools for
1376 anything non-private or commercial, while it is OK to set up a
1377 Youtube-like service as long as no-one pays to get access to the
1378 content. I still have no clear idea how this applies to Norway, where
1379 none of the patents MPEG LA is licensing are valid. Will the
1380 copyright terms take precedence or can those terms be ignored because
1381 the patents are not valid in Norway?
</p
>
1386 <title>MakerCon Nordic videos now available on Frikanalen
</title>
1387 <link>http://people.skolelinux.org/pere/blog/MakerCon_Nordic_videos_now_available_on_Frikanalen.html
</link>
1388 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/MakerCon_Nordic_videos_now_available_on_Frikanalen.html
</guid>
1389 <pubDate>Thu,
2 Jul
2015 14:
10:
00 +
0200</pubDate>
1390 <description><p
>Last oktober I was involved on behalf of
1391 <a href=
"http://www.nuug.no/
">NUUG
</a
> with recording the talks at
1392 <a href=
"http://www.makercon.no/
">MakerCon Nordic
</a
>, a conference for
1393 the Maker movement. Since then it has been the plan to publish the
1394 recordings on
<a href=
"http://www.frikanalen.no/
">Frikanalen
</a
>, which
1395 finally happened the last few days. A few talks are missing because
1396 the speakers asked the organizers to not publish them, but most of the
1397 talks are available. The talks are being broadcasted on RiksTV
1398 channel
50 and using multicast on Uninett, as well as being available
1399 from the Frikanalen web site. The unedited recordings are
1400 <a href=
"https://www.youtube.com/user/MakerConNordic/
">available on
1401 Youtube too
</a
>.
</p
>
1403 <p
>This is the list of talks available at the moment. Visit the
1404 <a href=
"http://beta.frikanalen.no/video/?q=makercon
">Frikanalen video
1405 pages
</a
> to view them.
</p
>
1409 <li
>Evolutionary algorithms as a design tool - from art
1410 to robotics (Kyrre Glette)
</li
>
1412 <li
>Make and break (Hans Gerhard Meier)
</li
>
1414 <li
>Making a one year school course for young makers
1415 (Olav Helland)
</li
>
1417 <li
>Innovation Inspiration - IPR Databases as a Source of
1418 Inspiration (Hege Langlo)
</li
>
1420 <li
>Making a toy for makers (Erik Torstensson)
</li
>
1422 <li
>How to make
3D printer electronics (Elias Bakken)
</li
>
1424 <li
>Hovering Clouds: Looking at online tool offerings for Product
1425 Design and
3D Printing (William Kempton)
</li
>
1427 <li
>Travelling maker stories (Øyvind Nydal Dahl)
</li
>
1429 <li
>Making the first Maker Faire in Sweden (Nils Olander)
</li
>
1431 <li
>Breaking the mold: Printing
1000’s of parts (Espen Sivertsen)
</li
>
1433 <li
>Ultimaker — and open source
3D printing (Erik de Bruijn)
</li
>
1435 <li
>Autodesk’s
3D Printing Platform: Sparking innovation (Hilde
1438 <li
>How Making is Changing the World – and How You Can Too!
1439 (Jennifer Turliuk)
</li
>
1441 <li
>Open-Source Adventuring: OpenROV, OpenExplorer and the Future of
1442 Connected Exploration (David Lang)
</li
>
1444 <li
>Making in Norway (Haakon Karlsen Jr., Graham Hayward and Jens
1447 <li
>The Impact of the Maker Movement (Mike Senese)
</li
>
1451 <p
>Part of the reason this took so long was that the scripts NUUG had
1452 to prepare a recording for publication were five years old and no
1453 longer worked with the current video processing tools (command line
1454 argument changes). In addition, we needed better audio normalization,
1455 which sent me on a detour to
1456 <a href=
"http://people.skolelinux.org/pere/blog/Measuring_and_adjusting_the_loudness_of_a_TV_channel_using_bs1770gain.html
">package
1457 bs1770gain for Debian
</a
>. Now this is in place and it became a lot
1458 easier to publish NUUG videos on Frikanalen.
</p
>
1463 <title>Measuring and adjusting the loudness of a TV channel using bs1770gain
</title>
1464 <link>http://people.skolelinux.org/pere/blog/Measuring_and_adjusting_the_loudness_of_a_TV_channel_using_bs1770gain.html
</link>
1465 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Measuring_and_adjusting_the_loudness_of_a_TV_channel_using_bs1770gain.html
</guid>
1466 <pubDate>Thu,
11 Jun
2015 13:
40:
00 +
0200</pubDate>
1467 <description><p
>Television loudness is the source of frustration for viewers
1468 everywhere. Some channels are very load, others are less loud, and
1469 ads tend to shout very high to get the attention of the viewers, and
1470 the viewers do not like this. This fact is well known to the TV
1471 channels. See for example the BBC white paper
1472 "<a href=
"http://downloads.bbc.co.uk/rd/pubs/whp/whp-pdf-files/WHP202.pdf
">Terminology
1473 for loudness and level dBTP, LU, and all that
</a
>" from
2011 for a
1474 summary of the problem domain. To better address the need for even
1475 loadness, the TV channels got together several years ago to agree on a
1476 new way to measure loudness in digital files as one step in
1477 standardizing loudness. From this came the ITU-R standard BS
.1770,
1478 "<a href=
"http://www.itu.int/rec/R-REC-BS
.1770/en
">Algorithms to
1479 measure audio programme loudness and true-peak audio level
</a
>".
</p
>
1481 <p
>The ITU-R BS
.1770 specification describe an algorithm to measure
1482 loadness in LUFS (Loudness Units, referenced to Full Scale). But
1483 having a way to measure is not enough. To get the same loudness
1484 across TV channels, one also need to decide which value to standardize
1485 on. For European TV channels, this was done in the EBU Recommondaton
1486 R128,
"<a href=
"https://tech.ebu.ch/docs/r/r128.pdf
">Loudness
1487 normalisation and permitted maximum level of audio signals
</a
>", which
1488 specifies a recommended level of -
23 LUFS. In Norway, I have been
1489 told that NRK, TV2, MTG and SBS have decided among themselves to
1490 follow the R128 recommondation for playout from
2016-
03-
01.
</p
>
1492 <p
>There are free software available to measure and adjust the loudness
1493 level using the LUFS. In Debian, I am aware of a library named
1494 <a href=
"https://tracker.debian.org/pkg/libebur128
">libebur128
</a
>
1495 able to measure the loudness and since yesterday morning a new binary
1496 named
<a href=
"http://bs1770gain.sourceforge.net
">bs1770gain
</a
>
1497 capable of both measuring and adjusting was uploaded and is waiting
1498 for NEW processing. I plan to maintain the latter in Debian under the
1499 <a href=
"https://qa.debian.org/developer.php?email=pkg-multimedia-maintainers%
40lists.alioth.debian.org
">Debian
1500 multimedia
</a
> umbrella.
</p
>
1502 <p
>The free software based TV channel I am involved in,
1503 <a href=
"http://www.frikanalen.no/
">Frikanalen
</a
>, plan to follow the
1504 R128 recommondation ourself as soon as we can adjust the software to
1505 do so, and the bs1770gain tool seem like a good fit for that part of
1506 the puzzle to measure loudness on new video uploaded to Frikanalen.
1507 Personally, I plan to use bs1770gain to adjust the loudness of videos
1508 I upload to Frikanalen on behalf of
<a href=
"http://www.nuug.no/
">the
1509 NUUG member organisation
</a
>. The program seem to be able to measure
1510 the LUFS value of any media file handled by ffmpeg, but I
've only
1511 successfully adjusted the LUFS value of WAV files. I suspect it
1512 should be able to adjust it for all the formats handled by ffmpeg.
</p
>
1517 <title>Hva gjør at NRK kan distribuere H
.264-video uten patentavtale med MPEG LA?
</title>
1518 <link>http://people.skolelinux.org/pere/blog/Hva_gj_r_at_NRK_kan_distribuere_H_264_video_uten_patentavtale_med_MPEG_LA_.html
</link>
1519 <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>
1520 <pubDate>Wed,
10 Jun
2015 15:
20:
00 +
0200</pubDate>
1521 <description><p
>Helt siden jeg i
2012 fikk beskjed fra MPEG LA om at
1522 <a href=
"http://people.skolelinux.org/pere/blog/MPEG_LA_mener_NRK_m__ha_avtale_med_dem_for___kringkaste_og_publisere_H_264_video.html
">NRK
1523 trengte patentavtale med dem
</a
> hvis de distribuerte H
.264-video til
1524 sluttbrukere, har jeg lurt på hva som gjør at NRK ikke har slik
1525 avtale. For noen dager siden fikk jeg endelig gjort noe med min
1526 undring, og sendte
2015-
05-
28 følgende epost til info (at) nrk.no med
1527 tittel
"Hva gjør at NRK kan distribuere H
.264-video uten patentavtale
1528 med MPEG LA?
":
</p
>
1530 <p
><blockquote
>
1531 <p
>Jeg lurer på en ting rundt NRKs bruk av H
.264-video på sine
1532 websider samt distribusjon via RiksTV og kabel-TV. Har NRK vurdert om
1533 det er behov for en patentavtale med
1534 <a href=
"http://www.mpegla.com/
">MPEG LA
</a
> slik det står i
1535 programvarelisensene til blant annet Apple Final Cut Studio, Adobe
1536 Premiere Pro, Avid og Apples Final Cut Pro X?
</p
>
1538 <p
>Hvis dere har vurdert dette, hva var utfallet av en slik vurdering?
</p
>
1540 <p
>Hvis dere ikke har vurdert dette, har NRK planer om å vurdere behovet
1541 for patentavtale?
</p
>
1543 <p
>I følge en artikkel på
1544 <a href=
"https://nrkbeta.no/
2012/
02/
01/siste-kutt-for-final-cut/
">NRK
1545 Beta i
2012</a
> har NRK brukt eller testet både Apple Final Cut
1546 Studio, Adobe Premiere Pro, Avid og Apples Final Cut Pro X til bruk
1547 for å redigere video før sending. Alle disse har bruksvilkår
1548 understøttet av opphavsretten som sier at de kun kan brukes til å lage
1549 filmer til personlig og ikke-kommersiell bruk - med mindre en har en
1550 lisensavtale med MPEG LA om bruk av patenter utstedt i USA for H
.264.
1551 Se f.eks.
<a href=
"http://www.avid.com/static/resources/common/documents/corporate/LICENSE.pdf
">bruksvilkårene for Avid
</a
>,
<a href=
"http://news.cnet.com/
8301-
30685_3-
20000101-
264.html
">Adobe Premiere
</a
> og
<a href=
"http://images.apple.com/legal/sla/docs/finalcutstudio2.pdf
">Apple Final
1552 Cut Studio
</a
> og søk etter
"MPEG LA
".
</p
>
1554 <p
>Dette får meg til å lure på om det er brudd på opphavsretten å bruke
1555 disse verktøyene i strid med bruksvilkårene uten patentavtale med MPEG
1556 LA. Men NRK bruker jo tilsynelatende disse verktøyene uten patentavtale
1557 med MPEG LA.
</p
>
1559 <p
>I følge forfatteren av Open Broadcast Encoder finnes det to typer
1560 H
.264-relaterte avtaler en kan få med MPEG LA. Det er én for å lage
1561 programvare og utstyr som produserer H
.264-video, og en annen for å
1562 kringkaste video som bruker H
.264. Dette forteller meg at selv om
1563 produsentene av utstyr og programvare som NRK bruker har en slik avtale
1564 med MPEG LA, så trenges det en egen avtale for å kringkaste video på det
1567 <p
>I følge Ryan Rodriguez hos MPEG LA, da jeg spurte ham på epost i
1568 juni
2012, har NRK ikke en slik avtale med MPEG LA. Han sa videre at
1569 NRK trenger en slik avtale hvis NRK tilbyr H
.264-kodet video til
1570 sluttbrukere. Jeg sjekket listen med
1571 <a href=
"http://www.mpegla.com/main/programs/AVC/Pages/Licensees.aspx
">organisasjoner
1572 med avtale med MPEG LA
</a
> og NRK står fortsatt ikke der.
</p
>
1574 <p
>Jeg lurer dermed på hva som gjør at NRK kan bruke de overnevnte
1575 videoredigeringsverktøyene, som tilsynelatende har krav om avtale med
1576 MPEG LA for å kunne brukes slik NRK bruker dem, til å lage videofiler
1577 for distribusjon uten å ha en avtale med MPEG LA om distribusjon av
1578 H
.264-video? Dette er spesielt interessant å vite for oss andre som
1579 også vurderer å spre H
.264-video etter å ha redigert dem med disse mye
1580 brukte videoredigeringsverktøyene.
</p
>
1581 </blockquote
></p
>
1583 <p
>Samme dag fikk jeg automatisk svar om at min henvendelse hadde fått
1584 saksid
1294699. Jeg fikk deretter følgende respons fra NRK
1585 2015-
06-
09:
</p
>
1587 <p
><blockquote
>
1588 <p
>Hei, beklager lang svartid, men det tok litt tid å finne ut hvem som kunne
1589 svare på dette.
</p
>
1591 <p
>For selskaper som leverer h
.264 til sluttbrukere på nett (f.eks
1592 NRKs nett- tv utgaver som bruker h
.264) - og som leverer slike
1593 tjenester uten betaling fra forbrukere – er det heller ikke påkrevd
1594 noen patentavtale.
</p
>
1596 <p
><a href=
"http://www.businesswire.com/news/home/
20100825006629/en/MPEG-LA%E2%
80%
99s-AVC-License-Charge-Royalties-Internet#.VWb2ws_774Y
">http://www.businesswire.com/news/home/
20100825006629/en/MPEG-LA%E2%
80%
99s-AVC-License-Charge-Royalties-Internet#.VWb2ws_774Y
</a
></p
>
1598 <p
>Med vennlig hilsen
1599 <br
>Gunn Helen Berg
1600 <br
>Informasjonskonsulent, Publikumsservice
</p
>
1603 <br
>Strategidivisjonen
1604 <Br
>Sentralbord: +
47 23 04 70 00
1605 <br
>Post: NRK Publikumsservice,
8608 Mo i Rana
1606 <br
>nrk.no / info (at) nrk.no
</p
>
1607 </blockquote
></p
>
1609 Da dette ikke helt var svar på det jeg lurte på, sendte jeg samme dag
1610 oppfølgerepost tilbake:
1612 <p
><blockquote
>
1613 <p
>[Gunn Helen Berg]
1614 <br
>> Hei, beklager lang svartid, men det tok litt tid å finne ut hvem som
1615 <br
>> kunne svare på dette.
</p
>
1617 <p
>Takk for svar. Men det besvarte ikke helt det jeg spurte om.
</p
>
1619 <p
>> For selskaper som leverer h
.264 til sluttbrukere på nett (f.eks NRKs
1620 <br
>> nett- tv utgaver som bruker h
.264) - og som leverer slike tjenester
1621 <br
>> uten betaling fra forbrukere – er det heller ikke påkrevd noen
1622 <br
>> patentavtale.
1624 <br
>> http://www.businesswire.com/news/home/
20100825006629/en/MPEG-LA%E2%
80%
99s-AVC-License-Charge-Royalties-Internet#.VWb2ws_774Y
</p
>
1626 <p
>Spørsmålet er ikke kun om MPEG LA krever patentavtale eller ikke
1627 (hvilket ikke helt besvares av pressemeldingen omtalt over, gitt at
1628 pressemeldingen kom i
2010, to år før MPEG LA ansvarlige for
1629 internasjonal lisensiering egen Ryan Rodriguez fortalte meg på epost
1630 at NRK trenger en lisens.
</p
>
1632 <p
>Det er uklart fra pressemeldingen hva
"Internet Broadcast AVC
1633 Video
" konkret betyr, men i følge en
1634 <a href=
"http://www.mpegla.com/main/programs/avc/Documents/avcweb.pdf
">presentasjon
1635 fra MPEG LA med tema
"AVC PAtent Portfoli License Briefing
" datert
1636 2015-
05-
15</a
> gjelder
"Internet Broadcast AVC Video
" kun kringkasting
1637 på Internet som ikke tilbyr valg av enkeltinnslag (
"not
1638 title-by-title
"), hvilket jo NRK gjør på sine nettsider. I tillegg
1639 kringkaster jo NRK H
.264-video også utenom Internet (RiksTV, kabel,
1640 satelitt), hvilket helt klart ikke er dekket av vilkårene omtalt i
1641 pressemeldingen.
</p
>
1643 <p
>Spørsmålet mitt er hvordan NRK kan bruke verktøy med bruksvilkår
1644 som krever avtale med MPEG LA for det NRK bruker dem til, når NRK ikke
1645 har avtale med MPEG LA. Hvis jeg forsto spørsmålet riktig, så mener
1646 NRK at dere ikke trenger avtale med MPEG LA, men uten slik avtale kan
1647 dere vel ikke bruke hverken Apple Final Cut Studio, Adobe Premiere
1648 Pro, Avid eller Apples Final Cut Pro X for å redigere video før
1651 <p
>Mine konkrete spørsmål var altså:
</p
>
1655 <li
>Hvis NRK har vurdert om det er behov for en patentavtale med MPEG LA
1656 slik det er krav om i programvarelisensene til blant annet Apple
1657 Final Cut Studio, Adobe Premiere Pro, Avid og Apples Final Cut Pro X,
1658 hva var utfallet av en slik vurdering? Kan jeg få kopi av vurderingen
1659 hvis den er gjort skriftlig?
</li
>
1661 <li
>Hvis NRK ikke har vurdert dette, har NRK planer om å vurdere behovet
1662 for patentavtale?
</li
>
1664 <li
>Hva slags saksnummer fikk min henvendelse i NRKs offentlige
1665 postjournal? Jeg ser at postjournalen ikke er publisert for den
1666 aktuelle perioden ennå, så jeg fikk ikke sjekket selv.
</li
>
1669 </blockquote
></p
>
1671 <p
>Det hjelper å ha funnet rette vedkommende i NRK, for denne gangen
1672 fikk jeg svar tilbake dagen etter (
2015-
06-
10), fra Geir Børdalen i
1675 <p
><blockquote
>
1676 <p
>Hei Petter Reinholdtsen
</p
>
1678 <p
>Jeg har sjekket saken med distribusjonssjef for tv, Arild Hellgren
1679 (som var teknologidirektør da bakkenettet ble satt opp). NRK v/
1680 Hellgren hadde møte med MPEG LA sammen med den europeiske
1681 kringkastingsunionen EBU før bakkenettet for TV ble satt opp
1682 (igangsatt høsten
2007). I dette møtet ble det avklart at NRK/EBU ikke
1683 trengte noen patentavtale for h
.264 i forbindelse med oppsett av
1684 bakkenettet eller bruk av MPEG4 h
.264 som kompresjonsalgoritme fordi
1685 tjenesten «in full»(nor: helt) var betalt av utsendelseselskapene og
1686 ikke av forbrukerne.
</p
>
1688 <p
><a href=
"http://www.nrk.no/oppdrag/digitalt-bakkenett-
1.3214555">http://www.nrk.no/oppdrag/digitalt-bakkenett-
1.3214555</a
></p
>
1690 <p
>Det er også klart slått fast at selskaper som leverer video basert
1691 på MPEG4 h
.264 til sluttbrukere på nett, heller ikke påkrevd noen
1692 patentavtale – så lenge de leverer slike tjenester uten betaling fra
1693 sluttbrukere.
</p
>
1695 <a href=
"http://www.businesswire.com/news/home/
20100825006629/en/MPEG-LA%E2%
80%
99s-AVC-License-Charge-Royalties-Internet#.VWb2ws_774Y
">http://www.businesswire.com/news/home/
20100825006629/en/MPEG-LA%E2%
80%
99s-AVC-License-Charge-Royalties-Internet#.VWb2ws_774Y
</a
>
1697 <p
>“MPEG LA announced today that its AVC Patent Portfolio License will
1698 continue not to charge royalties for Internet Video that is free to
1699 end users (known as “Internet Broadcast AVC Video”) during the entire
1700 life of this License. MPEG LA previously announced it would not charge
1701 royalties for such video through December
31,
2015 (see
1702 <a href=
"http://www.mpegla.com/Lists/MPEG%
20LA%
20News%
20List/Attachments/
226/n-
10-
02-
02.pdf
">http://www.mpegla.com/Lists/MPEG%
20LA%
20News%
20List/Attachments/
226/n-
10-
02-
02.pdf
</a
>),
1703 and today’s announcement makes clear that royalties will continue not
1704 to be charged for such video beyond that time. Products and services
1705 other than Internet Broadcast AVC Video continue to be
1706 royalty-bearing.”
</p
>
1708 <p
>Vi har derfor ikke noe behov for å vurdere noen patentavtale med
1711 <p
>Understreker for øvrig at NRK ikke er låst til MPEG4 – h
.264 som
1712 utsendelsesformat – og at vi har brukt og bruker flere andre
1713 alternativer i våre tjenester. Ulike «devicer» har ofte behov for
1714 forskjellige løsninger – og NRK har forsøkt å levere med best mulig
1715 kvalitet /økonomi /stabilitet avhengig av
1716 plattform. Produksjonsformater i NRK spenner for øvrig over en rekke
1717 forskjellige formater – hvor MPEG4 bare er en av disse. Når NRK kjøper
1718 teknisk utstyr er betaling for kodekstøtte ofte en del av
1719 anskaffelsesprisen for denne maskinvaren (enten dette er spesialiserte
1720 enkodere eller forskjellige typer produksjonsutstyr).
</p
>
1722 <p
>Vennlig hilsen
1723 <br
>Geir Børdalen
</p
>
1725 <p
>________________________________________
1726 <br
>Geir Børdalen
1727 <br
>Investeringsansvarlig NRK / Hovedprosjektleder - Origo
1728 <br
>Avdeling for utvikling, innovasjon, investering og eiendom
1729 <br
>NRK medietjenester
1730 <br
>Sentralbord: +
47 23 04 70 00
1731 <br
>Post: NRK, AUTV (RBM5), Pb.
8500 Majorstuen,
0340 Oslo
1733 </blockquote
></p
>
1735 <p
>Et godt og grundig svar, som var informativt om hvordan NRK tenker
1736 rundt patentavtale med MPEG LA, men heller ikke helt besvarte det jeg
1737 lurte på, så jeg sendte epostoppfølging samme dag.
</p
>
1739 <p
><blockquote
>
1740 <p
>[Geir Børdalen]
1741 <br
>> Hei Petter Reinholdtsen
</p
>
1743 <p
>Hei, og takk for raskt svar. Er min henvendelse journalført slik
1744 at den dukker opp i NRKs postjournal?
</p
>
1746 <p
>Svaret ditt var meget nyttig, og jeg forstår ut fra det du skriver
1747 at avklaringen med MPEG LA rundt H
.264-distribusjon via bakkenettet
1748 gjelder alle TV-kanaler i Norge. Hvilke saksnummer fikk dokumenter
1749 som ble opprettet i forbindelse med det omtalte møtet NRK v/Hellgren
1750 og EBU hadde med MPEG LA (dvs. referater, avtaler, etc),
1751 f.eks. dokumentet der formuleringen
"in full
" som du omtaler
1754 <p
>Men det er et par ting jeg fortsatt ikke forstår. Det ene er
1755 hvorfor NRKs forståelse av hva
"Internet Broadcast AVC Video
" dekker
1756 ser ut til å avvike fra det som presenteres i
1757 <a href=
"http://www.mpegla.com/main/programs/avc/Documents/avcweb.pdf
">lysark
1758 fra MPEG LA
</a
> i mai, der MPEG LA på lysark med overskriften
1759 "AVC/H
.264 License Terms Participation Fees
" og undertittel
"Where
1760 remuneration is from other sources
" skriver
"Internet Broadcast AVC
1761 Video (not title-by-title, not subscription) – no royalty for life of
1762 the AVC Patent Portfolio License
".
</p
>
1764 <p
>Her leser jeg MPEG LA dithen at det kun er kringkasting uten
1765 abonnement via Internet som er dekket at vilkårne omtalt i
1766 pressemeldingen, mens jeg forstår deg dithen at NRK mener NRKs
1767 nettsider som også har enkeltfilmer og innslag (som jeg forstår dekket
1768 av formuleringen
"title-by-title
") dekkes av
"Internet Broadcast AVC
1769 Video
" fra MPEG LA. Hva baserer dere denne tolkningen på? Jeg har
1770 ikke sett noe skriftlig fra MPEG LA som støtter NRKs tolkning, og
1771 lurer på om dere har andre kilder enn den pressemeldingen fra
5 år
1772 tilbake, der NRKS forståelse av hva
"Internet Broadcast AVC Video
"
1773 dekker er beskrevet?
</p
>
1775 <p
>Det andre er at eposten din ikke nevnte spørsmålet mitt om
1776 bruksvilkårene til videoredigeringsverktøyene som NRK bruker. Disse
1777 har som tidligere nevnt krav om at de kun skal brukes til private og
1778 ikke-kommersielle formål med mindre en har avtale med MPEG LA, og uten
1779 avtale med MPEG LA kan det jo virke som om NRK bruker verktøyene i
1780 strid med bruksvilkårene. Hva gjør at disse bruksvilkårene ikke
1781 gjelder for NRK?
</p
>
1782 </blockquote
></p
>
1784 <p
>Noen minutter senere får jeg foreløpig siste svar i
1785 føljetongen:
</p
>
1787 <p
><blockquote
>
1788 <p
>Hei igjen
</p
>
1790 <p
>Vårt dokumentarkiv har fått en kopi (journalføringsnr kan jeg
1791 dessverre ikke gi deg).
<p
>
1793 <p
>> Svaret ditt var meget nyttig, og jeg forstår ut fra det du
1794 <br
>> skriver at avklaringen med MPEG LA rundt H
.264-distribusjon via
1795 <br
>> bakkenettet gjelder alle TV-kanaler i Norge.
</p
>
1797 <p
>Svar: Kan ikke svare for andre enn for NRK/EBU - og for bakkenettet
1798 i Norge er det kun NRK som er et lisensbasert selskap. Kan ikke gi noe
1799 svar på saksnr på dokumenter eller ytterligere informasjon da jeg selv
1800 ikke var del i dette.
</p
>
1802 <p
>> Men det er et par ting jeg fortsatt ikke forstår. ...
</p
>
1804 <p
>Svar: Kan ikke gå ytterligere inn i dette fra min side og mitt
1805 fagfelt som er produksjon/publisering og systemstrukturene bak
1806 disse. For øvrig ligger det etter vår formening ingen begrensninger
1807 for NRK i mulighetene til publisering mht til kodek i
1808 produksjonssystemer. Som tidligere skrevet mener vi at NRK ikke
1809 trenger noen avtale med MPEG LA og støtter oss til det vi allerede har
1810 kommunisert i forrige epost.
</p
>
1813 <br
>Geir Børdalen
</p
>
1814 </blockquote
></p
>
1816 <p
>Det syntes vanskelig å komme videre når NRK ikke ønsker å gå inn i
1817 problemstillingen rundt bruksvilkårene til videoredigeringsverktøyene
1818 NRK bruker, så jeg sendte takk for svarene og avsluttet utvekslingen
1821 <p
><blockquote
>
1822 <p
>Tusen takk for rask respons, og oppklarende forklaring om hvordan
1823 NRK tenker rundt MPEG LA.
</p
>
1825 <p
>Jeg vil høre med NRK-arkivet for å se om de kan spore opp de
1826 omtalte dokumentene. Jeg setter pris på om du kan dele titler, dato
1827 eller annen informasjon som kan gjøre det enklere for arkivet å finne
1830 <p
>Når det gjelder hvordan bruksvilkårene til
1831 videoredigeringsverktøyene skal tolkes, så skal jeg høre med MPEG LA
1832 og produsentene av verktøyene for å forsøke å få klarhet i hva de
1833 mener er rikgig rettstilstand.
</p
>
1834 </blockquote
></p
>
1836 <p
>Jeg ble litt klokere, men fortsatt er det uklart for meg hva som er
1837 grunnlaget til NRK for å se bort fra bruksvilkår i
1838 videoredigeringsprogramvare som krever MPEG LA-avtale til alt annet
1839 enn privat og ikke-kommersiell bruk.
</p
>
1844 <title>Frikanalen, Norwegian TV channel for technical topics
</title>
1845 <link>http://people.skolelinux.org/pere/blog/Frikanalen__Norwegian_TV_channel_for_technical_topics.html
</link>
1846 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Frikanalen__Norwegian_TV_channel_for_technical_topics.html
</guid>
1847 <pubDate>Mon,
9 Mar
2015 11:
10:
00 +
0100</pubDate>
1848 <description><p
>The
<a href=
"http://www.nuug.no/
">Norwegian Unix User Group
</a
>,
1849 where I am a member, and where people interested in free software,
1850 open standards and UNIX like operating systems like Linux and the BSDs
1851 come together, record our monthly technical presentations on video.
1852 The purpose is to document the talks and spread them to a wider
1853 audience. For this, the the Norwegian nationwide open channel
1854 <a href=
"http://www.frikanalen.no/
">Frikanalen
</a
> is a useful venue.
1855 Since a few days ago, when I figured out the
1856 <a href=
"http://beta.frikanalen.no/api/
">REST API
</a
> to program the
1857 <a href=
"http://beta.frikanalen.tv/guide/
">channel time schedule
</a
>,
1858 the channel has been filled with NUUG talks, related recordings and
1859 some Creative Commons licensed TED talks (from archive.org). I fill
1860 all
"leftover bits
" on the channel with content from NUUG, which at
1861 the moment is almost
17 of
24 hours every day.
</p
>
1863 <p
>The list of NUUG videos
1864 <a href=
"http://beta.frikanalen.tv/organization/
82">uploaded so far
</a
>
1865 include things like a
1866 <a href=
"http://beta.frikanalen.tv/video/
625090">one hour talk by John
1867 Perry Barlow when he visited Oslo
</a
>, a presentation of
1868 <a href=
"http://beta.frikanalen.tv/video/
624275">Haiku, the BeOS
1869 re-implementation
</a
>, the
1870 <a href=
"http://beta.frikanalen.tv/video/
624493">history of FiksGataMi,
1871 the Norwegian version of FixMyStreet
</a
>, the good old
1872 <a href=
"http://beta.frikanalen.tv/video/
623566">Warriors of the net
1873 video
</A
> and many others.
</p
>
1875 <p
>We have a large backlog of NUUG talks not yet uploaded to
1876 Frikanalen, and plan to upload every useful bit to the channel to
1877 spread the word there. I also hope to find useful recordings from the
1878 Chaos Computer Club and Debian conferences and spread them on the
1879 channel as well. But this require locating the videos and their meta
1880 information (title, description, license, etc), and preparing the
1881 recordings for broadcast, and I have not yet had the spare time to
1882 focus on this. Perhaps you want to help. Please join us on IRC,
1883 <a href=
"irc://irc.freenode.net/%
23nuug
">#nuug on irc.freenode.net
</a
>
1884 if you want to help make this happen.
</p
>
1886 <p
>But as I said, already the channel is already almost exclusively
1887 filled with technical topics, and if you want to learn something new
1888 today, check out the
<a href=
"http://www.frikanalen.tv/se
">Ogg Theora
1889 web stream
</a
> or use one of the other ways to get access to the
1890 channel. Unfortunately the Ogg Theora recoding for distribution still
1891 do not properly sync the video and sound. It is generated by recoding
1892 a internal MPEG transport stream with MPEG4 coded video (ie H
.264) to
1893 Ogg Theora / Vorbis, and we have not been able to find a way that
1894 produces acceptable quality. Help needed, please get in touch if you
1895 know how to fix it using free software.
</p
>
1900 <title>The Norwegian open channel Frikanalen -
24x7 on the Internet
</title>
1901 <link>http://people.skolelinux.org/pere/blog/The_Norwegian_open_channel_Frikanalen___24x7_on_the_Internet.html
</link>
1902 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/The_Norwegian_open_channel_Frikanalen___24x7_on_the_Internet.html
</guid>
1903 <pubDate>Wed,
25 Feb
2015 09:
10:
00 +
0100</pubDate>
1904 <description><p
>The Norwegian nationwide open channel
1905 <a href=
"http://www.frikanalen.no/
">Frikanalen
</a
> is still going
1906 strong. It allow everyone to send the video they want on national
1907 television. It is a TV station administrated completely using a web
1908 browser, running only
<ahref=
"https://github.com/Frikanalen
">Free
1909 Software
</a
>, providing
<ahref=
"http://beta.frikanalen.tv/api
">a REST
1910 api
</a
> for administrators and members, and with distribution on the
1911 national DVB-T distribution network RiksTV. But only between
12:
00
1912 and
17:
30 Norwegian time. This has finally changed, after many years
1913 with limited distribution. A few weeks ago, we set up a Ogg Theora
1914 stream via icecast to allow everyone with Internet access to check out
1915 the channel the rest of the day. This is presented on
1916 <a href=
"http://www.frikanalen.tv/se
">the Frikanalen web site now
</a
>. And
1917 since a few days ago, the channel is also available
1918 via
<a href=
"https://www.uninett.no/iptv-tilgang
">multicast on
1919 UNINETT
</a
>, available for those using IPTV TVs and set-top boxes in
1920 the Norwegian National Research and Education network.
</p
>
1922 <p
>If you want to see what is on the channel, point your media player
1923 to one of these sources. The first should work with most players and
1924 browsers, while as far as I know, the multicast UDP stream only work
1928 <li
><a href=
"http://video.nuug.no/frikanalen.ogv
">http://video.nuug.no/frikanalen.ogv
</a
></li
>
1929 <li
>udp://@
224.17.43.129:
1234</li
>
1932 <p
>The Ogg Theora / icecast stream is not working well, as the video
1933 and audio is slightly out of sync. We have not been able to figure
1934 out how to fix it. It is generated by recoding a internal MPEG
1935 transport stream with MPEG4 coded video (ie H
.264) to Ogg Theora /
1936 Vorbis, and the result is less then stellar. If you have ideas how to
1937 fix it, please let us know on frikanalen (at) nuug.no. We currently
1938 use this with ffmpeg2theora
0.29:
</p
>
1940 <blockquote
><pre
>
1941 ./ffmpeg2theora.linux
&lt;OBE_gemini_URL.ts
&gt; -F
25 -x
720 -y
405 \
1942 --deinterlace --inputfps
25 -c
1 -H
48000 --keyint
8 --buf-delay
100 \
1943 --nosync -V
700 -o - | oggfwd video.nuug.no
8000 &lt;pw
&gt; /frikanalen.ogv
1944 </pre
></blockquote
>
1946 <p
>If you get the multicast UDP stream working, please let me know, as
1947 I am curious how far the multicast stream reach. It do not make it to
1948 my home network, nor any other commercially available network in
1949 Norway that I am aware of.
</p
>
1954 <title>Nagios module to check if the Frikanalen video stream is working
</title>
1955 <link>http://people.skolelinux.org/pere/blog/Nagios_module_to_check_if_the_Frikanalen_video_stream_is_working.html
</link>
1956 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Nagios_module_to_check_if_the_Frikanalen_video_stream_is_working.html
</guid>
1957 <pubDate>Sun,
8 Feb
2015 13:
00:
00 +
0100</pubDate>
1958 <description><p
>When running a TV station with both broadcast and web stream
1959 distribution, it is useful to know that the stream is working. As I
1960 am involved in the Norwegian open channel
1961 <a href=
"http://www.frikanalen.no/
">Frikanalen
</a
> as part of my
1962 activity in the
<a href=
"http://www.nuug.no/
">NUUG member
1963 organisation
</a
>, I wrote a script to use mplayer to connect to a
1964 video stream, pick two images
35 seconds apart and compare them. If
1965 the images are missing or identical, something is probably wrong with
1966 the stream and an alarm should be triggered. The script is written as
1967 a Nagios plugin, allowing us to use Nagios to run the check regularly
1968 and sound the alarm when something is wrong. It is able to detect
1969 both a hanging and a broken video stream.
</p
>
1971 <p
>I just uploaded the code for the script into the
1972 <a href=
"https://github.com/Frikanalen/frikanalen/blob/master/nagios-plugin/check_video_stream_images
">Frikanalen
1973 git repository
</a
> on github. If you run a TV station with web
1974 streaming, perhaps you can find it useful too.
</p
>
1976 <p
>Last year, the Frikanalen public TV station transformed into using
1977 only Linux based free software to administrate, schedule and
1978 distribute the TV content. The
1979 <a href=
"https://github.com/Frikanalen
">source code for the entire TV
1980 station
</a
> is available from the Github project page. Everyone can
1981 use it to send their content on national TV, and we provide both a web
1982 GUI and
<a href=
"http://beta.frikanalen.tv/api/
">a web API
</a
> to
1983 <a href=
"http://beta.frikanalen.tv/login/?next=/members/video/
">add
</a
>
1984 and
<a href=
"http://beta.frikanalen.tv/members/plan/
">schedule
1985 content
</a
>. And thanks to last weeks developer gathering and
1986 following activity, we now have the schedule
1987 <a href=
"http://beta.frikanalen.tv/xmltv/
2015/
01/
01">available as
1988 XMLTV
</a
> too. Still a lot of work left to do, especially with the
1989 process to add videos and with the scheduling, so your contribution is
1990 most welcome. Perhaps you want to set up your own TV station?
</p
>
1992 <p
>Update
2015-
02-
25: Got a tip from Uninett about their
1993 <a href=
"https://scm.uninett.no/maalepaaler/qstream/
">qstream
1994 monitoring system
</a
>, which gather connection time, jitter, packet
1995 loss and burst bandwidth usage. It look useful to check if UDP
1996 streams are working as they should.
</p
>
2001 <title>Norwegian Bokmål subtitles for the FSF video User Liberation
</title>
2002 <link>http://people.skolelinux.org/pere/blog/Norwegian_Bokm_l_subtitles_for_the_FSF_video_User_Liberation.html
</link>
2003 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Norwegian_Bokm_l_subtitles_for_the_FSF_video_User_Liberation.html
</guid>
2004 <pubDate>Mon,
12 Jan
2015 21:
00:
00 +
0100</pubDate>
2005 <description><p
>A few days ago, the
<a href=
"https://www.fsf.org/
">Free Software
2006 Foundation
</a
> announced a new video
2007 <a href=
"https://www.fsf.org/blogs/community/user-liberation-watch-and-share-our-new-video
">explaining
2008 Free software
</a
> in simple terms. The video named User Liberation is
2009 3 minutes long, and I recommend showing it to everyone you know as a
2010 way to explain what Free Software is all about. Unfortunately several
2011 of the people I know do not understand English and Spanish, so it did
2012 not make sense to show it to them.
</p
>
2014 <p
>But today I was told that
2015 <a href=
"https://www.fsf.org/blogs/community/user-liberation-watch-and-share-our-new-video
">English
2016 subtitles were available
</a
> and set out to provide Norwegian Bokmål
2017 subtitles based on these. The result has been sent to FSF and made
2019 <a href=
"https://github.com/petterreinholdtsen/fsf-video-user-liberation-subtitles
">a
2020 git repository
</a
> provided by Github. Please let me know if you find
2021 errors or have improvements to the subtitles.
</p
>
2023 <p
>Update
2015-
02-
03: Since I publised this post, FSF created a
2025 <a href=
"http://libreplanet.org/wiki/Group:FSF/User_Liberation_Video_Translation
">project
2026 to track subtitles
</A
> for the video.
</p
>
2031 <title>Opphavsretts-status for «Empty Socks» fra
1927?
</title>
2032 <link>http://people.skolelinux.org/pere/blog/Opphavsretts_status_for__Empty_Socks__fra_1927_.html
</link>
2033 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Opphavsretts_status_for__Empty_Socks__fra_1927_.html
</guid>
2034 <pubDate>Fri,
12 Dec
2014 14:
30:
00 +
0100</pubDate>
2035 <description><p
>For noen dager siden
2036 <a href=
"http://www.nb.no/Hva-skjer/Aktuelt/Nyheter/Tapt-filmskatt-fra-Disney-funnet-i-Nasjonalbiblioteket
">annonserte
2037 Nasjonalbiblioteket gladnyheten
</a
> om at de i sine arkiver hadde
2038 funnet et nitratfilm-eksemplar av en
87 år gammel Disney-film ved navn
2039 Empty Socks, en film som tidligere var antatt tapt og der det i følge
2040 nyhetsmeldinger var kun ca.
25 sekunder bevart for ettertiden.
2041 Nasjonalbiblioteket hadde
5 minutter og
30 sekunder av filmen i sitt
2042 magasin. Dette er flott for bevaringen av verdens kulturarv.
5,
5
2043 minutter mindre tapt enn vi trodde av vår felles historie.
</p
>
2045 <p
>Men hvordan kunne filmen gå tapt, når arkivlovene i USA krevde at
2046 publiserte filmer på den tiden ble deponert i bibliotek? Forklaringen
2047 har jeg fra Lawrence Lessig og boken
2048 <a href=
"http://free-culture.cc/
">Free Culture
</a
>, som jeg holder på
2049 <a href=
"https://github.com/petterreinholdtsen/free-culture-lessig
">å
2050 oversette til norsk
</a
>:
</p
>
2052 <p
><blockquote
>
2053 <p
>Dette er delvis på grunn av loven. Opphavsrettseiere var tidlig i
2054 amerikansk opphavsrettslov nødt til å deponere kopier av sine verk i
2055 biblioteker. Disse kopiene skulle både sikre spredning av kunnskap,
2056 og sikre at det fantes en kopi av verket tilgjengelig når vernetiden
2057 utløp, slik at andre kunne få tilgang til og kopiere verket.
</p
>
2059 <p
>Disse reglene gjaldt også for filmer. Men i
1915 gjorde
2060 kongressbiblioteket et unntak for film. Filmer kunne bli
2061 opphavsrettsbeskyttet så lenge det ble gjort slik deponering. Men
2062 filmskaperne fikk så lov til å låne tilbake de deponerte filmene -
2063 så lenge de ville uten noe kostnad. Bare i
1915 var det mer enn
5475
2064 filmer deponert og “lånt tilbake”. Dermed var det ikke noe eksemplar
2065 i noe bibliotek når vernetiden til filmen utløp. Eksemplaret
2066 eksisterer - hvis den finnes i det hele tatt - i arkivbiblioteket
2067 til filmselskapet.
</p
>
2068 </blockquote
></p
>
2070 <p
>Nyheten gjorde meg nysgjerrig på om filmen kunne være falt i det
2071 fri. En
87 år gammel film kunne jo tenkes å ha blitt en del av
2072 allemannseiet, slik at vi alle kan bruke den til å bygge videre på vår
2073 felles kultur uten å måtte be om tillatelse - slik Walt Disney gjorde
2074 det i starten av sin karriere. Jeg spurte nasjonalbiblioteket, og de
2075 sa nei. Hvordan kan det ha seg med en så gammel film? Jeg bestemte
2076 meg for å undersøke nærmere. En kan finne informasjon om den norske
2078 <a href=
"https://lovdata.no/dokument/NL/lov/
1961-
05-
12-
2">Lovdata
</a
>
2079 og
</a
>Wikipedia
</A
>. Her er et relevant
<a
2080 href=
"https://no.wikipedia.org/wiki/Opphavsrett#Vernetid
">utsnitt fra
2081 siden om opphavsrett i den norske Wikipedia
</a
>:
</p
>
2083 <p
><blockquote
>
2084 Ifølge åndsverkloven §§
40-
41 utløper vernetiden for et åndsverk
70
2085 år etter utløpet av opphavspersonens dødsår. [...] For filmverk
2086 gjelder særlige regler: Her kommer ikke alle mulige opphavspersoner
2087 i betraktning, men kun hovedregissøren, manusforfatteren,
2088 dialogforfatteren og komponisten av filmmusikken. Vernetiden
2089 begynner å løpe etter utgangen av dødsåret til den lengstlevende av
2090 disse. [...] Der opphavspersonen er ukjent, utløper opphavsretten
70
2091 år etter første kjente offentliggjørelse av verket. Det er kun de
2092 økonomiske rettighetene som faller bort i det vernetiden er
2093 utløpt. De ideelle rettighetene må fortsatt respekteres, noe som
2094 blant annet innebærer at man plikter å navngi opphavspersonen ved
2095 tilgjengeliggjøring.
2096 </blockquote
></p
>
2098 <p
>I følge nettstedet
2099 <a href=
"http://www.disneyshorts.org/shorts.aspx?shortID=
75">The
2100 Encyclopedia of Disney Animated Shorts
</a
> er følgende personer gitt
2101 æren for denne kortfilmen:
</p
>
2105 <dt
>Regissør
</dt
>
2106 <dd
><a href=
"https://en.wikipedia.org/wiki/Walt_Disney
">Walt Disney
</a
> (
1901-
12-
05 –
1966-
12-
15) +
70 år =
2037</dd
>
2109 <dd
><a href=
"https://en.wikipedia.org/wiki/Ub_Iwerks
">Ub Iwerks
</a
> (
1901-
03-
24 –
1971-
07-
07) +
70 år =
2042
2110 <br
><a href=
"https://en.wikipedia.org/wiki/Rollin_Hamilton
">Rollin
"Ham
" Hamilton
</a
> (
1898-
10-
28 -
1951-
06-
03) +
70 år =
2022
2111 <br
><a href=
"https://en.wikipedia.org/wiki/Harman_and_Ising
">Hugh Harman
</a
> (
1903-
08-
31 –
1982-
11-
25) +
70 år =
2053</dd
>
2114 <dd
>Mike Marcus (?-?)
</dd
>
2118 <p
>Alle fødsels- og dødsdatoene er fra engelske Wikipedia. Det er
2119 ikke oppgitt navn på manusforfatter, dialogforfatter og komponist, men
2120 jeg mistenker at tegnerne vil få opphavsrettigheter på tegnefilmer her
2121 i Norge, og tar derfor med disse. Kameramannen vil ikke få noen
2122 rettigheter så vidt jeg forstår, og er derfor ignorert her.
</p
>
2124 <p
>Slik jeg forstår den norske opphavsretten vil dermed dette
2125 filmverket bli allemannseie (også kalt å falle i det fri) i
2053,
126
2126 år etter at det ble utgitt. Hvis kun regissørens rettigheter er
2127 relevante, vil det skje i
2037,
110 år etter at det ble utgitt. Etter
2128 det vil enhver kunne dele det med alle de har lyst til, fremføre det
2129 offentlig eller klippe og lime i det for å lage sin egen film basert
2130 på det - helt uten å måtte spørre noen om lov.
</p
>
2132 <p
>Måtte så Nasjonalbiblioteket spørre om lov før de kunne kopiere
2133 sitt nitrat-eksemplar over på mer varig format? Nei, heldigvis.
2134 Åndsverklovens §
16 sier at arkiv, bibliotek, museer og undervisnings-
2135 og forskningsinstitusjoner har rett til å fremstille eksemplar av verk
2136 for konserverings- og sikringsformål og andre særskilte formål.
</p
>
2138 <p
>Oppdatering
2017-
11-
24: I følge
2139 <a href=
"http://www.toonzone.net/forums/threads/exposed-disneys-repurchase-of-oswald-the-rabbit-a-sham
.4792291/
">en
2140 lengre post på toonzone.net
</a
>, så er denne filmen i det fri i USA på
2141 grunn av at åndsverksbeskyttelsen ikke ble fornyet i
1955 (se selv i
2142 <a href=
"http://onlinebooks.library.upenn.edu/cce/
">Copyright
2143 Registration And Renewal Records
</a
>).
</p
>
2145 <p
>Som vanlig, hvis du bruker Bitcoin og ønsker å vise din støtte til
2146 det jeg driver med, setter jeg pris på om du sender Bitcoin-donasjoner
2148 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
2153 <title>Hvordan vurderer regjeringen H
.264-patentutfordringen?
</title>
2154 <link>http://people.skolelinux.org/pere/blog/Hvordan_vurderer_regjeringen_H_264_patentutfordringen_.html
</link>
2155 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Hvordan_vurderer_regjeringen_H_264_patentutfordringen_.html
</guid>
2156 <pubDate>Sun,
16 Nov
2014 10:
30:
00 +
0100</pubDate>
2157 <description><p
>For en stund tilbake spurte jeg Fornyingsdepartementet om hvilke
2158 juridiske vurderinger rundt patentproblemstillingen som var gjort da
2159 H
.264 ble tatt inn i
<a href=
"http://standard.difi.no/
">statens
2160 referansekatalog over standarder
</a
>. Stig Hornnes i FAD tipset meg
2161 om følgende som står i oppsumeringen til høringen om
2162 referansekatalogen versjon
2.0, som jeg siden ved hjelp av en
2163 innsynsforespørsel fikk tak i
2164 <a href=
"http://wiki.nuug.no/uttalelser/
200901-standardkatalog-v2?action=AttachFile
&do=get
&target=kongelig-resolusjon.pdf
">PDF-utgaven av
</a
>
2165 datert
2009-
06-
03 (saksnummer
200803291, saksbehandler Henrik
2166 Linnestad).
</p
>
2168 <p
>Der står det følgende om problemstillingen:
</p
>
2170 <p
><blockquote
>
2171 <strong
>4.4 Patentproblematikk
</strong
>
2173 <p
>NUUG og Opera ser det som særlig viktig at forslagene knyttet til
2174 lyd og video baserer seg på de royalty-frie standardene Vorbis, Theora
2177 <p
>Kommentarene relaterer seg til at enkelte standarder er åpne, men
2178 inneholder tekniske prosedyrer som det i USA (og noen andre land som
2179 Japan) er gitt patentrettigheter til. I vårt tilfelle berører dette
2180 spesielt standardene Mp3 og H
.264, selv om Politidirektoratet peker på
2181 at det muligens kan være tilsvarende problematikk også for Theora og
2182 Vorbis. Dette medfører at det i USA kan kreves royalties for bruk av
2183 tekniske løsninger knyttet til standardene, et krav som også
2184 håndheves. Patenter kan imidlertid bare hevdes i de landene hvor
2185 patentet er gitt, så amerikanske patenter gjelder ikke andre steder
2188 <p
>Spesielt for utvikling av fri programvare er patenter
2189 problematisk. GPL, en
"grunnleggende
" lisens for distribusjon av fri
2190 programvare, avviser at programvare kan distribueres under denne
2191 lisensen hvis det inneholder referanser til patenterte rutiner som
2192 utløser krav om royalties. Det er imidlertid uproblematisk å
2193 distribuere fri programvareløsninger under GPL som benytter de
2194 aktuelle standardene innen eller mellom land som ikke anerkjenner
2195 patentene. Derfor finner vi også flere implementeringer av Mp3 og
2196 H
.264 som er fri programvare, lisensiert under GPL.
</p
>
2198 <p
>I Norge og EU er patentlovgivningen langt mer restriktiv enn i USA,
2199 men det er også her mulig å få patentert metoder for løsning av et
2200 problem som relaterer seg til databehandling. Det er AIF bekjent ikke
2201 relevante patenter i EU eller Norge hva gjelder H
.264 og Mp3, men
2202 muligheten for at det finnes patenter uten at det er gjort krav om
2203 royalties eller at det senere vil gis slike patenter kan ikke helt
2206 <p
>AIF mener det er et behov for å gi offentlige virksomheter mulighet
2207 til å benytte antatt royaltyfrie åpne standarder som et likeverdig
2208 alternativ eller i tillegg til de markedsledende åpne standardene.
</p
>
2210 </blockquote
></p
>
2212 <p
>Det ser dermed ikke ut til at de har vurdert patentspørsmålet i
2213 sammenheng med opphavsrettsvilkår slik de er formulert for f.eks.
2214 Apple Final Cut Pro, Adobe Premiere Pro, Avid og Sorenson-verktøyene,
2215 der det kreves brukstillatelse for patenter som ikke er gyldige i
2216 Norge for å bruke disse verktøyene til annet en personlig og ikke
2217 kommersiell aktivitet når det gjelder H
.264-video. Jeg må nok lete
2218 videre etter svar på det spørsmålet.
</p
>
2223 <title>I spent last weekend recording MakerCon Nordic
</title>
2224 <link>http://people.skolelinux.org/pere/blog/I_spent_last_weekend_recording_MakerCon_Nordic.html
</link>
2225 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/I_spent_last_weekend_recording_MakerCon_Nordic.html
</guid>
2226 <pubDate>Thu,
23 Oct
2014 23:
00:
00 +
0200</pubDate>
2227 <description><p
>I spent last weekend at
<a href=
"http://www.makercon.no/
">Makercon
2228 Nordic
</a
>, a great conference and workshop for makers in Norway and
2229 the surrounding countries. I had volunteered on behalf of the
2230 Norwegian Unix Users Group (NUUG) to video record the talks, and we
2231 had a great and exhausting time recording the entire day, two days in
2232 a row. There were only two of us, Hans-Petter and me, and we used the
2233 regular video equipment for NUUG, with a
2234 <a href=
"http://dvswitch.alioth.debian.org/wiki/
">dvswitch
</a
>, a
2235 camera and a VGA to DV convert box, and mixed video and slides
2238 <p
>Hans-Petter did the post-processing, consisting of uploading the
2239 around
180 GiB of raw video to Youtube, and the result is
2240 <a href=
"https://www.youtube.com/user/MakerConNordic/
">now becoming
2241 public
</a
> on the MakerConNordic account. The videos have the license
2242 NUUG always use on our recordings, which is
2243 <a href=
"http://creativecommons.org/licenses/by-sa/
3.0/no/
">Creative
2244 Commons Navngivelse-Del på samme vilkår
3.0 Norge
</a
>. Many great
2245 talks available. Check it out! :)
</p
>
2250 <title>Do you need an agreement with MPEG-LA to publish and broadcast H
.264 video in Norway?
</title>
2251 <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>
2252 <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>
2253 <pubDate>Mon,
25 Aug
2014 22:
10:
00 +
0200</pubDate>
2254 <description><p
>Two years later, I am still not sure if it is legal here in Norway
2255 to use or publish a video in H
.264 or MPEG4 format edited by the
2256 commercially licensed video editors, without limiting the use to
2257 create
"personal
" or
"non-commercial
" videos or get a license
2258 agreement with
<a href=
"http://www.mpegla.com
">MPEG LA
</a
>. If one
2259 want to publish and broadcast video in a non-personal or commercial
2260 setting, it might be that those tools can not be used, or that video
2261 format can not be used, without breaking their copyright license. I
2263 <a href=
"http://people.skolelinux.org/pere/blog/Trenger_en_avtale_med_MPEG_LA_for___publisere_og_kringkaste_H_264_video_.html
">Back
2264 then
</a
>, I found that the copyright license terms for Adobe Premiere
2265 and Apple Final Cut Pro both specified that one could not use the
2266 program to produce anything else without a patent license from MPEG
2267 LA. The issue is not limited to those two products, though. Other
2268 much used products like those from Avid and Sorenson Media have terms
2269 of use are similar to those from Adobe and Apple. The complicating
2270 factor making me unsure if those terms have effect in Norway or not is
2271 that the patents in question are not valid in Norway, but copyright
2272 licenses are.
</p
>
2274 <p
>These are the terms for Avid Artist Suite, according to their
2275 <a href=
"http://www.avid.com/US/about-avid/legal-notices/legal-enduserlicense2
">published
2277 <a href=
"http://www.avid.com/static/resources/common/documents/corporate/LICENSE.pdf
">license
2278 text
</a
> (converted to lower case text for easier reading):
</p
>
2280 <p
><blockquote
>
2281 <p
>18.2. MPEG-
4. MPEG-
4 technology may be included with the
2282 software. MPEG LA, L.L.C. requires this notice:
</p
>
2284 <p
>This product is licensed under the MPEG-
4 visual patent portfolio
2285 license for the personal and non-commercial use of a consumer for (i)
2286 encoding video in compliance with the MPEG-
4 visual standard (“MPEG-
4
2287 video”) and/or (ii) decoding MPEG-
4 video that was encoded by a
2288 consumer engaged in a personal and non-commercial activity and/or was
2289 obtained from a video provider licensed by MPEG LA to provide MPEG-
4
2290 video. No license is granted or shall be implied for any other
2291 use. Additional information including that relating to promotional,
2292 internal and commercial uses and licensing may be obtained from MPEG
2293 LA, LLC. See http://www.mpegla.com. This product is licensed under
2294 the MPEG-
4 systems patent portfolio license for encoding in compliance
2295 with the MPEG-
4 systems standard, except that an additional license
2296 and payment of royalties are necessary for encoding in connection with
2297 (i) data stored or replicated in physical media which is paid for on a
2298 title by title basis and/or (ii) data which is paid for on a title by
2299 title basis and is transmitted to an end user for permanent storage
2300 and/or use, such additional license may be obtained from MPEG LA,
2301 LLC. See http://www.mpegla.com for additional details.
</p
>
2303 <p
>18.3. H
.264/AVC. H
.264/AVC technology may be included with the
2304 software. MPEG LA, L.L.C. requires this notice:
</p
>
2306 <p
>This product is licensed under the AVC patent portfolio license for
2307 the personal use of a consumer or other uses in which it does not
2308 receive remuneration to (i) encode video in compliance with the AVC
2309 standard (“AVC video”) and/or (ii) decode AVC video that was encoded
2310 by a consumer engaged in a personal activity and/or was obtained from
2311 a video provider licensed to provide AVC video. No license is granted
2312 or shall be implied for any other use. Additional information may be
2313 obtained from MPEG LA, L.L.C. See http://www.mpegla.com.
</p
>
2314 </blockquote
></p
>
2316 <p
>Note the requirement that the videos created can only be used for
2317 personal or non-commercial purposes.
</p
>
2319 <p
>The Sorenson Media software have
2320 <a href=
"http://www.sorensonmedia.com/terms/
">similar terms
</a
>:
</p
>
2322 <p
><blockquote
>
2324 <p
>With respect to a license from Sorenson pertaining to MPEG-
4 Video
2325 Decoders and/or Encoders: Any such product is licensed under the
2326 MPEG-
4 visual patent portfolio license for the personal and
2327 non-commercial use of a consumer for (i) encoding video in compliance
2328 with the MPEG-
4 visual standard (“MPEG-
4 video”) and/or (ii) decoding
2329 MPEG-
4 video that was encoded by a consumer engaged in a personal and
2330 non-commercial activity and/or was obtained from a video provider
2331 licensed by MPEG LA to provide MPEG-
4 video. No license is granted or
2332 shall be implied for any other use. Additional information including
2333 that relating to promotional, internal and commercial uses and
2334 licensing may be obtained from MPEG LA, LLC. See
2335 http://www.mpegla.com.
</p
>
2337 <p
>With respect to a license from Sorenson pertaining to MPEG-
4
2338 Consumer Recorded Data Encoder, MPEG-
4 Systems Internet Data Encoder,
2339 MPEG-
4 Mobile Data Encoder, and/or MPEG-
4 Unique Use Encoder: Any such
2340 product is licensed under the MPEG-
4 systems patent portfolio license
2341 for encoding in compliance with the MPEG-
4 systems standard, except
2342 that an additional license and payment of royalties are necessary for
2343 encoding in connection with (i) data stored or replicated in physical
2344 media which is paid for on a title by title basis and/or (ii) data
2345 which is paid for on a title by title basis and is transmitted to an
2346 end user for permanent storage and/or use. Such additional license may
2347 be obtained from MPEG LA, LLC. See http://www.mpegla.com for
2348 additional details.
</p
>
2350 </blockquote
></p
>
2352 <p
>Some free software like
2353 <a href=
"https://handbrake.fr/
">Handbrake
</A
> and
2354 <a href=
"http://ffmpeg.org/
">FFMPEG
</a
> uses GPL/LGPL licenses and do
2355 not have any such terms included, so for those, there is no
2356 requirement to limit the use to personal and non-commercial.
</p
>
2361 <title>Hvordan enkelt laste ned filmer fra NRK med den
"nye
" løsningen
</title>
2362 <link>http://people.skolelinux.org/pere/blog/Hvordan_enkelt_laste_ned_filmer_fra_NRK_med_den__nye__l_sningen.html
</link>
2363 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Hvordan_enkelt_laste_ned_filmer_fra_NRK_med_den__nye__l_sningen.html
</guid>
2364 <pubDate>Mon,
16 Jun
2014 19:
20:
00 +
0200</pubDate>
2365 <description><p
>Jeg har fortsatt behov for å kunne laste ned innslag fra NRKs
2366 nettsted av og til for å se senere når jeg ikke er på nett, men
2367 <a href=
"http://people.skolelinux.org/pere/blog/Hvordan_enkelt_laste_ned_filmer_fra_NRK.html
">min
2368 oppskrift fra
2011</a
> sluttet å fungere da NRK byttet
2369 avspillermetode. I dag fikk jeg endelig lett etter oppdatert løsning,
2370 og jeg er veldig glad for å fortelle at den enkleste måten å laste ned
2371 innslag er å bruke siste versjon
2014.06.07 av
2372 <a href=
"http://rg3.github.io/youtube-dl/
">youtube-dl
</a
>. Støtten i
2373 youtube-dl
<a href=
"https://github.com/rg3/youtube-dl/issues/
2980">kom
2374 inn for
23 dager siden
</a
> og
2375 <a href=
"http://packages.qa.debian.org/y/youtube-dl.html
">versjonen i
2376 Debian
</a
> fungerer fint også som backport til Debian Wheezy. Det er
2377 et lite problem, det håndterer kun URLer med små bokstaver, men hvis
2378 en har en URL med store bokstaver kan en bare gjøre alle store om til
2379 små bokstaver for å få youtube-dl til å laste ned. Rapporterte
2381 <a href=
"https://github.com/rg3/youtube-dl/issues/
2980">problemet til
2382 utviklerne
</a
>, og antar de får fikset det snart.
</p
>
2384 <p
>Dermed er alt klart til å laste ned dokumentarene om
2385 <a href=
"http://tv.nrk.no/program/KOID23005014/usas-hemmelige-avlytting
">USAs
2386 hemmelige avlytting
</a
> og
2387 <a href=
"http://tv.nrk.no/program/KOID23005114/selskapene-bak-usas-avlytting
">Selskapene
2388 bak USAs avlytting
</a
>, i tillegg til
2389 <a href=
"http://tv.nrk.no/program/KOID20005814/et-moete-med-edward-snowden
">intervjuet
2390 med Edward Snowden gjort av den tyske tv-kanalen ARD
</a
>. Anbefaler
2391 alle å se disse, sammen med
2392 <a href=
"http://media.ccc.de/browse/congress/
2013/
30C3_-_5713_-_en_-_saal_2_-_201312301130_-_to_protect_and_infect_part_2_-_jacob.html
">foredraget
2393 til Jacob Appelbaum på siste CCC-konferanse
</a
>, for å forstå mer om
2394 hvordan overvåkningen av borgerne brer om seg.
</p
>
2396 <p
>Takk til gode venner på foreningen NUUGs IRC-kanal
2397 <a href=
"irc://irc.freenode.net/%
23nuug
">#nuug på irc.freenode.net
</a
>
2398 for tipsene som fikk meg i mål
</a
>.
</p
>
2400 <p
><strong
>Oppdatering
2014-
06-
17</strong
>: Etter at jeg publiserte
2401 denne, ble jeg tipset om bloggposten
2402 "<a href=
"http://ingvar.blog.redpill-linpro.com/
2012/
05/
31/downloading-hd-content-from-tv-nrk-no/
">Downloading
2403 HD content from tv.nrk.no
</a
>" av Ingvar Hagelund, som har alternativ
2404 implementasjon og tips for å lage mkv-fil med undertekstene inkludert.
2405 Kanskje den passer bedre for deg? I tillegg ble feilen i youtube-dl
2406 ble fikset litt senere ut på dagen i går, samt at youtube-dl fikk
2407 støtte for å laste ned undertitler. Takk til Anders Einar Hilden for
2408 god innsats og youtube-dl-utviklerne for rask respons.
</p
>
2413 <title>Half the Coverity issues in Gnash fixed in the next release
</title>
2414 <link>http://people.skolelinux.org/pere/blog/Half_the_Coverity_issues_in_Gnash_fixed_in_the_next_release.html
</link>
2415 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Half_the_Coverity_issues_in_Gnash_fixed_in_the_next_release.html
</guid>
2416 <pubDate>Tue,
29 Apr
2014 14:
20:
00 +
0200</pubDate>
2417 <description><p
>I
've been following
<a href=
"http://www.getgnash.org/
">the Gnash
2418 project
</a
> for quite a while now. It is a free software
2419 implementation of Adobe Flash, both a standalone player and a browser
2420 plugin. Gnash implement support for the AVM1 format (and not the
2421 newer AVM2 format - see
2422 <a href=
"http://lightspark.github.io/
">Lightspark
</a
> for that one),
2423 allowing several flash based sites to work. Thanks to the friendly
2424 developers at Youtube, it also work with Youtube videos, because the
2425 Javascript code at Youtube detect Gnash and serve a AVM1 player to
2426 those users. :) Would be great if someone found time to implement AVM2
2427 support, but it has not happened yet. If you install both Lightspark
2428 and Gnash, Lightspark will invoke Gnash if it find a AVM1 flash file,
2429 so you can get both handled as free software. Unfortunately,
2430 Lightspark so far only implement a small subset of AVM2, and many
2431 sites do not work yet.
</p
>
2433 <p
>A few months ago, I started looking at
2434 <a href=
"http://scan.coverity.com/
">Coverity
</a
>, the static source
2435 checker used to find heaps and heaps of bugs in free software (thanks
2436 to the donation of a scanning service to free software projects by the
2437 company developing this non-free code checker), and Gnash was one of
2438 the projects I decided to check out. Coverity is able to find lock
2439 errors, memory errors, dead code and more. A few days ago they even
2440 extended it to also be able to find the heartbleed bug in OpenSSL.
2441 There are heaps of checks being done on the instrumented code, and the
2442 amount of bogus warnings is quite low compared to the other static
2443 code checkers I have tested over the years.
</p
>
2445 <p
>Since a few weeks ago, I
've been working with the other Gnash
2446 developers squashing bugs discovered by Coverity. I was quite happy
2447 today when I checked the current status and saw that of the
777 issues
2448 detected so far,
374 are marked as fixed. This make me confident that
2449 the next Gnash release will be more stable and more dependable than
2450 the previous one. Most of the reported issues were and are in the
2451 test suite, but it also found a few in the rest of the code.
</p
>
2453 <p
>If you want to help out, you find us on
2454 <a href=
"https://lists.gnu.org/mailman/listinfo/gnash-dev
">the
2455 gnash-dev mailing list
</a
> and on
2456 <a href=
"irc://irc.freenode.net/#gnash
">the #gnash channel on
2457 irc.freenode.net IRC server
</a
>.
</p
>
2462 <title>Video DVD reader library / python-dvdvideo - nice free software
</title>
2463 <link>http://people.skolelinux.org/pere/blog/Video_DVD_reader_library___python_dvdvideo___nice_free_software.html
</link>
2464 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Video_DVD_reader_library___python_dvdvideo___nice_free_software.html
</guid>
2465 <pubDate>Fri,
21 Mar
2014 15:
25:
00 +
0100</pubDate>
2466 <description><p
>Keeping your DVD collection safe from scratches and curious
2467 children fingers while still having it available when you want to see a
2468 movie is not straight forward. My preferred method at the moment is
2469 to store a full copy of the ISO on a hard drive, and use VLC, Popcorn
2470 Hour or other useful players to view the resulting file. This way the
2471 subtitles and bonus material are still available and using the ISO is
2472 just like inserting the original DVD record in the DVD player.
</p
>
2474 <p
>Earlier I used dd for taking security copies, but it do not handle
2475 DVDs giving read errors (which are quite a few of them). I
've also
2477 <a href=
"http://people.skolelinux.org/pere/blog/Ripping_problematic_DVDs_using_dvdbackup_and_genisoimage.html
">dvdbackup
2478 and genisoimage
</a
>, but these days I use the marvellous python library
2480 <a href=
"http://bblank.thinkmo.de/blog/new-software-python-dvdvideo
">python-dvdvideo
</a
>
2481 written by Bastian Blank. It is
2482 <a href=
"http://packages.qa.debian.org/p/python-dvdvideo.html
">in Debian
2483 already
</a
> and the binary package name is python3-dvdvideo. Instead
2484 of trying to read every block from the DVD, it parses the file
2485 structure and figure out which block on the DVD is actually in used,
2486 and only read those blocks from the DVD. This work surprisingly well,
2487 and I have been able to almost backup my entire DVD collection using
2488 this method.
</p
>
2490 <p
>So far, python-dvdvideo have failed on between
10 and
2491 20 DVDs, which is a small fraction of my collection. The most common
2493 <a href=
"https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=
720831">DVDs
2494 using UTF-
16 instead of UTF-
8 characters
</a
>, which according to
2495 Bastian is against the DVD specification (and seem to cause some
2496 players to fail too). A rarer problem is what seem to be inconsistent
2497 DVD structures, as the python library
2498 <a href=
"https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=
723079">claim
2499 there is a overlap between objects
</a
>. An equally rare problem claim
2500 <a href=
"https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=
741878">some
2501 value is out of range
</a
>. No idea what is going on there. I wish I
2502 knew enough about the DVD format to fix these, to ensure my movie
2503 collection will stay with me in the future.
</p
>
2505 <p
>So, if you need to keep your DVDs safe, back them up using
2506 python-dvdvideo. :)
</p
>
2511 <title>Skolelinux / Debian Edu
7.1 install and overview video from Marcelo Salvador
</title>
2512 <link>http://people.skolelinux.org/pere/blog/Skolelinux___Debian_Edu_7_1_install_and_overview_video_from_Marcelo_Salvador.html
</link>
2513 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Skolelinux___Debian_Edu_7_1_install_and_overview_video_from_Marcelo_Salvador.html
</guid>
2514 <pubDate>Tue,
8 Oct
2013 17:
10:
00 +
0200</pubDate>
2515 <description><p
>The other day I was pleased and surprised to discover that Marcelo
2516 Salvador had published a
2517 <a href=
"https://www.youtube.com/watch?v=w-GgpdqgLFc
">video on
2518 Youtube
</a
> showing how to install the standalone Debian Edu /
2519 Skolelinux profile. This is the profile intended for use at home or
2520 on laptops that should not be integrated into the provided network
2521 services (no central home directory, no Kerberos / LDAP directory etc,
2522 in other word a single user machine). The result is
11 minutes long,
2523 and show some user applications (seem to be rather randomly picked).
2524 Missed a few of my favorites like celestia, planets and chromium
2525 showing the
<a href=
"http://www.zygotebody.com/
">Zygote Body
3D model
2526 of the human body
</a
>, but I guess he did not know about those or find
2527 other programs more interesting. :) And the video do not show the
2528 advantages I believe is one of the most valuable featuers in Debian
2529 Edu, its central school server making it possible to run hundreds of
2530 computers without hard drives by installing one central
2531 <a href=
"http://www.ltsp.org/
">LTSP server
</a
>.
</p
>
2533 <p
>Anyway, check out the video, embedded below and linked to above:
</p
>
2535 <iframe width=
"420" height=
"315" src=
"http://www.youtube.com/embed/w-GgpdqgLFc
" frameborder=
"0" allowfullscreen
></iframe
>
2537 <p
>Are there other nice videos demonstrating Skolelinux? Please let
2538 me know. :)
</p
>
2543 <title>Skolelinux
6 got a video review from Pcwizz
</title>
2544 <link>http://people.skolelinux.org/pere/blog/Skolelinux_6_got_a_video_review_from_Pcwizz.html
</link>
2545 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Skolelinux_6_got_a_video_review_from_Pcwizz.html
</guid>
2546 <pubDate>Sun,
17 Mar
2013 10:
30:
00 +
0100</pubDate>
2547 <description><p
>Via
2548 <a href=
"https://twitter.com/pcwizz/status/
313044373262716930">twitter
</a
>
2549 I just discovered that
<a href=
"http://pcwizz.net/
">Pcwizz
</a
> have
2550 done a
<a href=
"http://www.youtube.com/watch?v=wPzTZ61Pcuc
">video
2551 review
</a
> on Youtube of
<a href=
"http://www.skolelinux.org/
">Skolelinux
2552 / Debian Edu
</a
> version
6. He installed the standalone profile and
2553 the video show a walk-through of of the menu content, demonstration of
2554 a few programs and his view of our distribution.
</p
>
2556 <p
>There is also some really nice quotes (transcribed by me, might
2557 have heard wrong). While looking thought the Graphics menu:
</p
>
2560 "Basically everything you ever need in a school environment.
"
2563 <p
>And as a general evaluation of the entire distribution:
</p
>
2566 "So, yeah, a bit bloated. It kept all the Debian stuff in there, just
2567 to keep it nice and GNU. So, I do not want to go on about it, but
2568 lets give it
7 out of
10. I am not going to use it. That is because
2569 I am not deploying a school network. There may be some mythical
2570 feature to help you deploy Skolelinux on a school network.
"
2573 <p
>To bad he did not test the server profile, and discovered the PXE
2574 installation option. It make it possible to install only the main
2575 server from CD, and the rest of the machines via the net, and might be
2576 considered the mythical feature he talk about. :)
</p
>
2578 <p
>While looking through the menus, there is also this funny comment
2579 about the part of the K menu generated from the Debian menu subsystem:
2582 "[The K menu] have a special Debian section for software that no-one
2583 is going to look at, because it contain lots of junky stuff that you
2584 actually don
't need in the education distribution, but have just been
2585 included because it isn
't stripped out for some reason.
"
2588 <p
>I guess it is yet another argument for merging the Debian menu and
2589 Gnome/KDE desktop menu entries into
2590 <a href=
"http://wiki.debian.org/Proposals/DebianMenuUsingDesktopEntries
">one
2591 consistent menu system
</a
> instead of two incomplete and partly
2592 inconsistent menu systems.
</p
>
2594 <p
>The entire video is available below for those accepting iframe
2595 embedding:
</p
>
2597 <iframe width=
"560" height=
"315" src=
"http://www.youtube.com/embed/wPzTZ61Pcuc
" frameborder=
"0" allowfullscreen
></iframe
>
2602 <title>Til frikanalens støttespillere - fra styret i Frikanalen
</title>
2603 <link>http://people.skolelinux.org/pere/blog/Til_frikanalens_st_ttespillere___fra_styret_i_Frikanalen.html
</link>
2604 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Til_frikanalens_st_ttespillere___fra_styret_i_Frikanalen.html
</guid>
2605 <pubDate>Wed,
13 Mar
2013 11:
15:
00 +
0100</pubDate>
2606 <description><p
>Min venn Erik Vold har på vegne av styret i
2607 <a href=
"http://www.frikanalen.no/
">Frikanalen
</a
> sendt ut
2608 <a href=
"http://lists.nuug.no/pipermail/frikanalen/
2013-March/
000054.html
">følgende
2609 epost
</a
> til alle kanalens medlemmer og støttespillere, i et forsøk
2610 på å redde kanalen etter at kulturdepartementet kuttet all
2611 finansiering i fjor høst. Jeg fikk meldingen som
2612 <a href=
"http://www.nuug.no/
">NUUG
</a
>-styremedlem, og mener den
2613 trenger et større publikum. Jeg gjengir den derfor i sin helhet,
2614 inkludert lenken til budsjett og regnskapsutkast, etter
2615 <a href=
"http://lists.nuug.no/pipermail/frikanalen/
2013-March/
000061.html
">avtale
2616 med Erik
</a
>.
</p
>
2618 <p
><blockquote
>
2619 <p
>Til Frikanalens støttespillere
</p
>
2621 <p
>Frivillighetens TV kanal har med minimal støtte avviklet daglige
2622 sendinger siden
2009 og til tross for at statsstøtten uteble i år, er
2623 vi nå i full gang med å utvikle et nytt TV system som foreningen selv
2624 vil eie. Departementet fikk dessverre ikke med seg at nettet vil
2625 berike TV sendingen fremfor å gjøre den overflødig. De har nå overlatt
2626 finansieringen av videre drift til frivilligheten og vi håper derfor
2627 på deres hjelp til å søke om midler. På kjøpet får dere langt flere
2628 muligheter til å nå ut med deres budskap og med utbyggingen av Hybrid
2629 TV (nett på TV) kan vi sammen motbevise departementets påstand.
</p
>
2631 <p
>Kostnaden med denne utviklingen er svært lav ettersom de fleste
2632 programmererne jobber gratis og alt er basert på åpen kildekode der
2633 man deler hverandres bidrag til kringkastingsorienterte systemer. I
2634 samarbeid med flere europeiske kanaler i EBU (SVT, BBC, NRK, ZDF, ARD,
2635 France Televisions etc) ønsker vi å bygge opp et nettverk for delt
2636 support og åpen kildekode der Frikanalen er den eneste sandkassen hvor
2637 ny teknologi kan testes på luft. Riks TV åpner for annonsering av
2638 nettinnhold relatert til det du ser på TV (streamevents i HbbTV)
2639 allerede i sommer. Med støtte fra Media Netwerk som drifter Frikanalen
2640 samt Sofia Digital som stiller med Hybrid TV server er vi
& NRK sikret
2641 en sentral rolle i utprøvingen. Det vil da bli mulig og streame
2642 direkte til Riks TV sine nye mottakere (og nye IDTV
'er) i HD samt at
2643 TV
'n kan annonsere en link til deres organisasjonssider, med
2644 oppdaterte nyheter (RSS feeds), relaterte videoer etc., under
2645 avviklingen av deres innslag.
</p
>
2647 <p
>Vi tror sendingene på den nye nettstyrte TV-kanalen vil bli rikere enn
2648 på den kommersielle plattformen vi har vært på så langt. Brukerne vil
2649 nå få en tettere integrasjon med sosiale medier samt at innholdet
2650 etterhvert kommer ut på Hybrid TV og mobile enheter. Teknisk ansvarlig
2651 i Frikanalen, Erik Vold, er sentral i utviklingen av streamingdelen
2652 for tv.nrk.no (årets produkt i PC World) og erfaringen NRK har gjort
2653 på mobile enheter kan videreføres til oss. Det er heller ingen tvil om
2654 at Hybrid TV vil bli en suksess også i Norge. Erik sitter i Nordig som
2655 har vedtatt en felles standard for de nordiske kringkasterne basert på
2656 HbbTV. Denne standarden bruker web-protokoller som gjør det like
2657 enkelt og billig å utvikle tjenester for Hybrid TV som å lage en
2658 nettside. Samtlige nye TV apparater solgt i Norden vil ha støtte for
2659 HbbTV og med det tror vi oppslutningen vil bli like stor som ellers i
2660 Europa (Tyskland og Frankrike tredoblet antall HbbTV-brukere i
2661 fjor). Vi forventer også mye d rahjelp fra disse foregangslandene. Vår
2662 utvikler Tore Sinding Bekkedal er i skriv ende stund på en HbbTV
2663 workshop med EBU-medlemmer hos IRT i München der han på vegne av NRK
2664 tester og utvikler ny stremingteknologi (MPEG- DASH) for
2665 mobile enheter og hybrid TV.
</p
>
2667 <p
>Frikanalen har forøvrig flyttet inn i nye kostnadsfrie lokaler på
2668 Chateau Neuf. Med massiv hjelp fra frivillige får vi der en
2669 flerkameraregi i egnede lokaler. Dette åpner for debatter, konserter,
2670 events og mye spennende innhold i samarbeid med Student TV
'ene.
</p
>
2672 <p
>Med hjelp fra NUUG har også streamingdelen av systemet fått plass på
2673 Uninett (Forskningsparken) og dermed er vi på Norges beste
2674 internettlinjer. Vi åpner med dette for live mottak fra samtlige
2675 medlemmer og på sikt kan vi tilby HD på hybrid TV og PC / MAC / mobil.
</p
>
2677 <p
>Avvikling på luft skjer allerede med egenutviklede løsninger i åpen
2678 kildekode (playout og live-koding). Det er også mulig å se første
2679 byggetrinn med programoversikt og videoer på nett, men foreløpig kun
2680 for nettleserne Opera, Chrome og Firefox:
2681 <a href=
"http://beta.frikanalen.tv/guide/
">http://beta.frikanalen.tv/guide/
</a
>
2683 <a href=
"http://beta.frikanalen.tv/video/
">http://beta.frikanalen.tv/video/
</a
>. Kom
2684 gjerne med ønsker og tilbakemeldinger til vår hovedutvikler Benjamin
2685 Bruheim: grolgh (at) gmail.com
</p
>
2687 <p
>Med en tettere tilknytning til Akademia og NRK, er det god grunn til å
2688 tro at utviklingen vil skyte fart og at vi raskere kommer ut med
2689 dagsaktuelt innhold.
</p
>
2691 <p
>Vi sender i dag på Riks TV og Altibox, men ikke lenger på TV8. Det er
2692 viktig for våre brukere igjen å komme ut på Get og Canal Digital,
2693 dermed er det svært heldig at vi nå har formidlingsplikt på kabel. Til
2694 tross for at det tar noe tid å få nye avtaler på plass, med frivillig
2695 juridisk bistand, vil vi sannsynligvis komme bedre ut i andre enden
2696 også her. Formidlingsplikten gjelder samtlige kabeldistribusjoner i
2697 Norge, ikke bare de regionene TV8 hadde avtale med.
</p
>
2699 <p
>Om alt dette skal se dagens lys er vi avhengig av en
2700 grunnfinansiering. Deres medlemsavgifter er i så måte et svært viktig
2701 bidrag som vi er veldig takknemlige for. Vi ser oss likevel nødt til
2702 å be dere om å delta i arbeidet med å dekke de resterende
2703 driftskostnader. Frikanalen sin arbeidskapasitet er betydelig redusert
2704 etter at foreningen ikke lenger kunne finansiere en daglig leder, men
2705 allmøtet kan åpne for at flere bidrar til inntjening (Ekstraordinær
2706 generalforsamling foreslo å tillate sponsorplakater på sendeflaten og
2707 deler av disse inntektene kan tilfalle kanalen). Håper alle
2708 medlemmene kan hjelpe oss med å skrive søknader og skaffe sponsorer,
2709 eller i det minste komme med gode forslag til inntjening. Det er ikke
2710 mye som skal til for å klare videre drift, kun
0,
5 mill. pr år.
</p
>
2712 <p
>Med en støtte som tilsvarer en norsk kortfilm vil vi kunne redde
2713 sendearkivet for flere tusen videoer bygget opp av frivilligheten
2714 gjennom
5 år og vi dobler kapasiteten for å ta imot nye (De som
2715 leverer HD vil for øvrig kunne få HD på nett, mobil og hybrid TV).
</p
>
2717 <p
>Vi vil også kunne videreføre konsesjonen på Riks TV og realisere en
2718 formidlingsplikt på kabel som har en årlig verdi på ca.
5 millioner
2719 kroner (når over
2/
3 av Norges befolkning).
</p
>
2721 <p
>Uten støtte står verdens eneste nasjonale nettstyrte åpne TV kanal i
2722 fare for å forsvinne. En konkursbegjæring vil gjøre at utstyrsparken
2723 går til advokatsalærer i behandling av boet og kreditorene vil ikke
2724 kunne få dekket sine krav. Det mener vi ikke bare er urett ovenfor
2725 långiverne, men det er urett mot alle de som har bidratt med å bygge
2726 opp frivillighetens eneste sendearkiv og ikke minst alle de som i dag
2727 jobber frivillig med å videreutvikle TV-systemet.
</p
>
2729 <p
>Håper dere i likhet med styret ser verdien i videre drift og kan melde
2730 tilbake innen årsmøtet (Kontaktinformasjon til styret og frivillige
2731 utviklere er i kopifeltet).
</p
>
2733 <p
>Vennligst fyll ut det blå feltet i regnearket under med det dere tror
2734 er mulig å få inn. Det dere skriver her er ikke bindende, men gir
2735 styret en indikasjon på om videre drift er mulig. Det blir tatt
2736 stilling til av generalforsamlingen medio mars. Setter derfor pris på
2737 om alle kan bidra med forslag til støtte eller antatte verdier fra
2738 søknad/spons innen det.
</p
>
2740 <p
>Forhåpentligvis når vi også ønsket budsjett på
1 mill. pr år. Med det
2741 kan vi nedbetale gjelden raskere og sørge for en bedre
2742 tilgjengelighet, samt raskere utvikling:
</p
>
2744 <p
><a href=
"https://docs.google.com/spreadsheet/ccc?key=
0AouVL_e9_H1QdDgyX01kbElvcWI0UjFQbVNGbFIyUmc
&usp=sharing#gid=
0">https://docs.google.com/spreadsheet/ccc?key=
0AouVL_e9_H1QdDgyX01kbElvcWI0UjFQbVNGbFIyUmc
&usp=sharing#gid=
0</a
></p
>
2746 <p
>Med vennlig hilsen
2747 <br
>Styret i Frikanalen
</p
>
2748 </blockquote
></p
>
2750 <p
>Jeg håper noen av mine lesere med dette ser verdien av Frikanalen
2751 og melder seg inn for å sende sine videoer ut på TV til RiksTV og
2752 Altibox-seerne. Det haster. Årsmøtet i foreningen Frikanalen skal
2753 straks avholdes, og innen den tid må en redningsplan være på plass.
2754 NUUG bidrar allerede litt ved å organisere utviklersamlinger og
2755 finansiere litt mat og drikke til de frivillige som stiller opp på
2756 dugnadsbasis for å utvikle den tekniske løsningen. Det er ikke nok
2757 til å redde kanalen, men gir et lite steg i riktig retning.
</p
>
2759 <p
><strong
>Update
2013-
03-
13 13:
00</strong
>: Epostlistelenkene
2760 fungerer ikke lenger, da epostarkivet nå ikke lenger er tilgjengelig
2761 for ikke-abonnenter. Korrigerte teksten fra styret litt etter
2762 oppfordring fra Frikanalen-styret.
</p
>
2767 <title>Frikanalen - Complete TV station organised using the web
</title>
2768 <link>http://people.skolelinux.org/pere/blog/Frikanalen___Complete_TV_station_organised_using_the_web.html
</link>
2769 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Frikanalen___Complete_TV_station_organised_using_the_web.html
</guid>
2770 <pubDate>Sun,
3 Mar
2013 07:
15:
00 +
0100</pubDate>
2771 <description><p
>Do you want to set up your own TV station, schedule videos and
2772 broadcast them on the air? Using free software? With video on demand
2774 <a href=
"http://www.digistan.org/open-standard:definition
">free and
2775 open standards
</a
>? Included a web based video stream as well? And
2776 administrate it all in your web browser from anywhere in the world? A
2777 few years now the Norwegian public access TV-channel
2778 <a href=
"http://www.frikanalen.no/
">Frikanalen
</a
> have been building a
2779 system to do just this. The source code for the solution is licensed
2780 using the GNU LGPL, and
2781 <a href=
"http://github.com/Frikanalen
">available from github
</a
>.
</p
>
2783 <p
>The idea is simple. You upload a video file over the web, and
2784 attach meta information to the file. You select a time slot in the
2785 program schedule, and when the time come it is played on the air and
2786 in the web stream. It is also made available in a video on demand
2787 solution for anyone to see it also outside its scheduled time. All
2788 you need to run a TV station - using your web browser.
</p
>
2790 <p
>There are several parts to this web based solution. I
'll mention
2791 the three most important ones. The first part is the database of
2792 videos and the schedule. This is written in Django and include a REST
2793 API. The current database is SQLite, but the plan is to migrate it to
2794 PostgreSQL. At the moment this system can be tested on
2795 <a href=
"http://beta.frikanalen.tv/
">beta.frikanalen.tv
</a
>. The
2796 second part is the video playout, taking the schedule information from
2797 the database and providing a video stream to broadcast. This is done
2798 using
<a href=
"http://www.casparcg.com/
">CasparCG from SVT
</a
> and
2799 <a href=
"http://www.mltframework.org/
">Media Lovin
' Toolkit
</a
>. Video
2800 signal distribution is handled using
2801 <a href=
"http://www.ob-encoder.com/
">Open Broadcast Encoder
</a
>. The
2802 third part is the converter, handling the transformation of uploaded
2803 video files to a format useful for broadcasting, streaming and video
2804 on demand. It is still very much work in progress, so it is not yet
2805 decided what it will end up using. Note that the source of the latter
2806 two parts are not yet pushed to github. The lead author want to clean
2807 them up a bit more first.
</p
>
2809 <p
>The development is coordinated on the
2810 <a href=
"irc://irc.freenode.net/%
23frikanalen
">#frikanalen IRC
2811 channel
</a
> (irc.freenode.net), and discussed on
2812 <a href=
"http://lists.nuug.no/mailman/listinfo/frikanalen
">the
2813 frikanalen mailing list
</a
>. The lead developer is Benjamin Bruheim
2814 (phed on IRC). Anyone is welcome to participate in the
2815 development.
</p
>
2820 <title>Netflix krever at du frasier deg dine forbrukerrettigheter...
</title>
2821 <link>http://people.skolelinux.org/pere/blog/Netflix_krever_at_du_frasier_deg_dine_forbrukerrettigheter___.html
</link>
2822 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Netflix_krever_at_du_frasier_deg_dine_forbrukerrettigheter___.html
</guid>
2823 <pubDate>Wed,
17 Oct
2012 15:
30:
00 +
0200</pubDate>
2824 <description><p
>Filmtjenesten Netflix lanseres i Norge, med en jublende presse på
2825 sidelinjen. Men har journalistene lest bruksvilkårene? Synes de
2827 «
<a href=
"https://signup.netflix.com/TermsOfUse?locale=nb-NO
">Vilkår
2828 for bruk
</a
>» høres greit ut for en forbrukertjeneste i Norge?
2829 Avsnittet lyder slik:
2833 «Disse vilkårene for bruk innebærer at alle tvister mellom deg og
2834 Netflix vil bli løst ved BINDENDE VOLDGIFT. DU SAMTYKKER I AT DU
2835 FRASIER DEG ENHVER RETT TIL RETTSLIGE SKRITT for å hevde eller
2836 forsvare rettighetene dine under denne kontrakten (med unntak for
2837 mindre saker som kan avgjøres i forliksretten). Rettighetene dine vil
2838 bli bestemt av en NØYTRAL VOLDGIFTSMANN/MEKLER og IKKE en dommer eller
2839 jury, og krav kan ikke framstilles i form av gruppesøksmål. Les
2840 gjennom voldgiftsavtalen nedenfor for å finne alle detaljer vedrørende
2841 avtalen, slik at du kan se hvordan en eventuell konflikt med Netflix
2842 skal håndteres og vil avgjøres.»
2846 <p
>Ikke nok med det, men må akseptere at det er USAs lov som skal
2847 regulere bruken, og dermed akseptere å miste norsk forbruker- og
2848 personvernlovgiving (hvilket så vidt jeg vet ikke kan gjøres i
2852 «Gjennom å godta disse vilkår for bruk samtykker du i at tolkingen og
2853 håndhevelsen av denne voldgiftsavtalen er underlagt den føderale
2854 voldgiftsloven i USA, U.S. Federal Arbitration Act, og at både du og
2855 Netflix frasier dere retten til en juryprosess eller deltakelse i
2856 gruppesøksmål. Denne voldgiftsbetingelsen gjelder selv etter at denne
2857 avtalen er oppsagt og Netflix-medlemskapet ditt har opphørt.»
2860 <p
>En må altså si ja til å frasi seg de vanlige forbrukerrettighetene
2861 i Norge for å bruke Netflix. Vilkårene til Netflix vil neppe stå seg
2862 i norsk rett, men det er usedvanlig frekt å bare foreslå det, da de
2863 aller fleste som leser dem vil anta at vilkårene gjelder med mindre de
2864 er svært godt kjent med norsk forbrukerrett. Skal en frasi seg
2865 muligheten til å hevde sin rett hvis Netflix lekker personopplysninger
2866 (USAs lovgiving er svært mangelfull i forhold til den norske
2867 personvernlovgivingen) eller leverer en tjeneste som ikke holder mål?
2868 Nei takk. Med slike bruksvilkår takker jeg høflig nei til tilbudet,
2869 og de får ikke meg som kunde før de har en helt annen tilnærming mot
2870 sine kunder.
</p
>
2872 <p
>Oppdatering
2012-
10-
18: Både
2873 <a href=
"http://www.aftenposten.no/digital/Netflix-krever-at-du-sier-fra-deg-norske-forbrukerrettigheter-
7021182.html
">Aftenposten
</a
>,
2874 <a href=
"http://nrk.no/helse-forbruk-og-livsstil/
1.8362951">NRK
</a
> og
2875 <a href=
"http://www.teknofil.no/artikler/forbrukerradet-slakter-netflix/
113679">Teknofil
</a
>
2876 har snappet opp saken (dog nevner ikke NRK kilde, så de kan jo ha
2877 oppdaget det selv). Veldig bra at flere blir oppmerksom på slike
2878 ting. «- Helt hinsides, mener Forbrukerrådet om Netflix
'
2879 brukervilkår», siterer Aftenposten. Og
2880 <a href=
"http://www.aftenposten.no/nyheter/Forbrukerombudet-vil-granske-TV-markedet-
7021465.html
">Aftenposten
</a
>
2881 melder videre at Forbrukerrådet vil granske TV-bransjen med bakgrunn i
2887 <title>IETF activity to standardise video codec
</title>
2888 <link>http://people.skolelinux.org/pere/blog/IETF_activity_to_standardise_video_codec.html
</link>
2889 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/IETF_activity_to_standardise_video_codec.html
</guid>
2890 <pubDate>Sat,
15 Sep
2012 20:
00:
00 +
0200</pubDate>
2891 <description><p
>After the
2892 <a href=
"http://people.skolelinux.org/pere/blog/IETF_standardize_its_first_multimedia_codec__Opus.html
">Opus
2893 codec made
</a
> it into
<a href=
"http://www.ietf.org/
">IETF
</a
> as
2894 <a href=
"http://tools.ietf.org/html/rfc6716
">RFC
6716</a
>, I had a look
2895 to see if there is any activity in IETF to standardise a video codec
2896 too, and I was happy to discover that there is some activity in this
2897 area. A non-
"working group
" mailing list
2898 <a href=
"https://www.ietf.org/mailman/listinfo/video-codec
">video-codec
</a
>
2900 <a href=
"http://ietf
.10.n7.nabble.com/New-Non-WG-Mailing-List-video-codec-Video-codec-BoF-discussion-list-td119548.html
">created
2012-
08-
20</a
>. It is intended to discuss the topic and if a
2901 formal working group should be formed.
</p
>
2903 <p
>I look forward to see how this plays out. There is already
2904 <a href=
"http://www.ietf.org/mail-archive/web/video-codec/current/msg00003.html
">an
2905 email from someone
</a
> in the MPEG group at ISO asking people to
2906 participate in the ISO group. Given how ISO failed with OOXML and given
2907 that it so far (as far as I can remember) only have produced
2908 multimedia formats requiring royalty payments, I suspect
2909 joining the ISO group would be a complete waste of time, but I am not
2910 involved in any codec work and my opinion will not matter much.
</p
>
2912 <p
>If one of my readers is involved with codec work, I hope she will
2913 join this work to standardise a royalty free video codec within
2919 <title>IETF standardize its first multimedia codec: Opus
</title>
2920 <link>http://people.skolelinux.org/pere/blog/IETF_standardize_its_first_multimedia_codec__Opus.html
</link>
2921 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/IETF_standardize_its_first_multimedia_codec__Opus.html
</guid>
2922 <pubDate>Wed,
12 Sep
2012 13:
50:
00 +
0200</pubDate>
2923 <description><p
>Yesterday,
<a href=
"http://www.ietf.org/
">IETF
</a
> announced the
2925 <a href=
"http://tools.ietf.org/html/rfc6716
">RFC
6716, the Definition
2926 of the Opus Audio Codec
</a
>, a low latency, variable bandwidth, codec
2927 intended for both VoIP, film and music. This is the first time, as
2928 far as I know, that IETF have standardized a multimedia codec. In
2929 <a href=
"http://tools.ietf.org/html/rfc3533
">RFC
3533</a
>, IETF
2930 standardized the OGG container format, and it has proven to be a great
2931 royalty free container for audio, video and movies. I hope IETF will
2932 continue to standardize more royalty free codeces, after ISO and MPEG
2933 have proven incapable of securing everyone equal rights to publish
2934 multimedia content on the Internet.
</p
>
2936 <p
>IETF require two interoperating independent implementations to
2937 ratify a standard, and have so far ensured to only standardize royalty
2938 free specifications. Both are key factors to allow everyone (rich and
2939 poor), to compete on equal terms on the Internet.
</p
>
2941 <p
>Visit the
<a href=
"http://opus-codec.org/
">Opus project page
</a
> if
2942 you want to learn more about the solution.
</p
>
2947 <title>Mer oppfølging fra MPEG-LA om avtale med dem for å kringkaste og publisere H
.264-video
</title>
2948 <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>
2949 <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>
2950 <pubDate>Thu,
5 Jul
2012 23:
50:
00 +
0200</pubDate>
2951 <description><p
>I føljetongen om H
.264
2952 <a href=
"http://people.skolelinux.org/pere/blog/MPEG_LA_mener_NRK_m__ha_avtale_med_dem_for___kringkaste_og_publisere_H_264_video.html
">forlot
2953 jeg leserne i undring
</a
> om hvor pakken fra MPEG-LA tok veien, og om
2954 hvilke selskaper i Norge som har avtale med MPEG-LA. Da Ryan hos
2955 MPEG-LA dro på ferie sendte jeg min melding videre til hans kollega,
2956 og dagen etter fikk jeg følgende svar derfra:
</p
>
2958 <p
><blockquote
>
2959 <p
>Date: Fri,
29 Jun
2012 18:
32:
34 +
0000
2960 <br
>From: Sidney Wolf
&lt;SWolf (at) mpegla.com
&gt;
2961 <br
>To: Petter Reinholdtsen
&lt;pere (at) hungry.com
&gt;
2962 <br
>Cc: Ryan Rodriguez
&lt;RRodriguez (at) mpegla.com
&gt;
2963 <br
>Subject: RE: Do NRK have a license agreement with MPEG-LA?
</p
>
2965 <p
>Dear Mr. Reinholdtsen,
</p
>
2967 <p
>Thank you for your message. As you know, Ryan is currently our of the
2968 office, so it will be my pleasure to assist you.
</p
>
2970 <p
>Per your request, attached please find an electronic copy of the
2971 AVC Patent Portfolio License. Please note that the electronic copy of
2972 the License is provided as a convenience and for informational
2973 purposes only. When concluding the Licenses, only the hard copies
2974 provided by MPEG LA may be used.
</p
>
2976 <p
>To your question, MPEG LA lists our Licensees on our website
2977 according to each program. The lists are in alphabetical order, so it
2978 is very easy to search.
</p
>
2980 <p
>I hope that this was helpful. If we can be of additional
2981 assistance, please let me know.
</p
>
2983 <p
>Kind regards,
</p
>
2985 <p
>Sidney A. Wolf
2986 <br
>Manager, Global Licensing
2987 <br
>MPEG LA
</p
>
2988 </blockquote
></p
>
2990 <p
>Selv om et epostvedlegg er nyttig for mottakeren, så håpet jeg å få
2991 et dokument jeg kunne dele med alle leserne av bloggen min, og ikke et
2992 som må deles på individuell basis. Opphavsretten krever godkjenning
2993 fra rettighetsinnehaver før en kan gjøre slikt, så dermed fulgte jeg
2994 opp med et spørsmål om dette var greit.
</p
>
2996 <p
><blockquote
>
2997 <p
>Date: Wed,
4 Jul
2012 20:
25:
06 +
0200
2998 <br
>From: Petter Reinholdtsen
&lt;pere (at) hungry.com
&gt;
2999 <br
>To: Sidney Wolf
&lt;SWolf (at) mpegla.com
&gt;
3000 <br
>Cc: Ryan Rodriguez
&lt;RRodriguez (at) mpegla.com
&gt;
3001 <br
>Subject: Re: Do NRK have a license agreement with MPEG-LA?
</p
>
3003 <p
>Thank you for your reply.
</p
>
3005 <p
>[Sidney Wolf]
3006 <br
>&gt; Per your request, attached please find an electronic copy of the AVC
3007 <br
>&gt; Patent Portfolio License. Please note that the electronic copy of
3008 <br
>&gt; the License is provided as a convenience and for informational
3009 <br
>&gt; purposes only. When concluding the Licenses, only the hard copies
3010 <br
>&gt; provided by MPEG LA may be used.
</p
>
3012 <p
>This is useful for me to learn, but the reason I asked for the
3013 Internet address of the licensing document was to ensure I could
3014 publish a link to it when I discuss the topic of H
.264 licensing here
3015 in Norway, and allow others to verify my observations. I can not do
3016 the same with an email attachment. Thus I would like to ask you if it
3017 is OK with MPEG LA that I publish this document on the Internet for
3018 others to read?
</p
>
3020 <p
>&gt; To your question, MPEG LA lists our Licensees on our website
3021 <br
>&gt; according to each program. The lists are in alphabetical order, so
3022 <br
>&gt; it is very easy to search.
</p
>
3024 <p
>I am afraid this do not help me locate Norwegian companies in the
3025 list of Licensees. I do not know the name of all companies and
3026 organisations in Norway, and thus do not know how to locate the
3027 Norwegian ones on that list.
</p
>
3029 <p
>&gt; I hope that this was helpful. If we can be of additional assistance,
3030 <br
>&gt; please let me know.
</p
>
3032 <p
>Absoutely helpful to learn more about how MPEG LA handle licensing.
</p
>
3035 <br
>Happy hacking
3036 <br
>Petter Reinholdtsen
</p
>
3037 </blockquote
></p
>
3039 <p
>Jeg håpet også at det skulle være mulig å få vite hvilke av de
3040 mange hundre som har avtale med MPEG-LA om bruk av H
.264 som holdt til
3041 i Norge. Begge mine håp falt i grus med svaret fra MPEG-LA.
3043 <p
><blockquote
>
3044 <p
>Date: Thu,
5 Jul
2012 17:
42:
39 +
0000
3045 <br
>From: Sidney Wolf
&lt;SWolf (at) mpegla.com
&gt;
3046 <br
>To:
'Petter Reinholdtsen
' &lt;pere (at) hungry.com
&gt;
3047 <br
>Cc: Ryan Rodriguez
&lt;RRodriguez (at) mpegla.com
&gt;
3048 <br
>Subject: RE: Do NRK have a license agreement with MPEG-LA?
</p
>
3050 <p
>Dear Mr. Reinholdtsen,
</p
>
3052 <p
>Thank you for your reply.
</p
>
3054 <p
>We appreciate the additional explanation you have provided and for
3055 asking our permission to publish the electronic copy of the License in
3056 advance of doing so. Typically, MPEG LA prefers to distribute the
3057 electronic copies of our Licenses to interested parties. Therefore,
3058 please feel free to send interested parties to the AVC portion of our
3059 website, http://www.mpegla.com/main/programs/AVC/Pages/Intro.aspx for
3060 their further reference.
</p
>
3062 <p
>As previously mentioned, MPEG LA maintains a list of Licensees in good
3063 standing on our website according to each program. Due to the large
3064 volume of Licensees, it would be administratively impractical to
3065 provide this level of detail to interested parties. Therefore, I am
3066 afraid we are not in a position to assist you with your request.
</p
>
3068 <p
>Kind regards,
</p
>
3070 <p
>Sidney A. Wolf
3071 <br
>Manager, Global Licensing
3072 <br
>MPEG LA
</p
>
3073 </blockquote
></p
>
3075 <p
>Men takket være epostvedlegget kunne jeg søke på Google etter
3076 setningen
"WHEREAS, a video standard commonly referred to as AVC has
3077 been defined and is referred to in this Agreement as the “AVC
3078 Standard” (as more fully defined herein below)
" som finnes i avtalen,
3079 og lokalisere en kopi fra
2007 av
3080 <a href=
"http://www.sec.gov/Archives/edgar/data/
1342960/
000119312509050004/dex1024.htm
">lisensavtalen
3081 mellom MPEG-LA og DivX, Inc.
</a
>, slik at mine lesere kan se hvordan
3082 avtalen så ut da. Jeg har ikke sammenlignet tekstene for å se om noe
3083 har endret seg siden den tid, men satser på at teksten er representativ.
</p
>
3085 <p
>Jeg aner fortsatt ikke hvor FedEx tok veien med pakken fra
3088 <p
>Update
2012-
07-
06: Jeg er visst ikke den første som forsøker å få
3089 klarhet i problemstillinger rundt H
.264, og kom nettopp over en veldig
3090 interessant bloggpost fra
2010 hos LibreVideo med tittelen
3091 "<a href=
"http://www.librevideo.org/blog/
2010/
06/
14/mpeg-la-answers-some-questions-about-avch-
264-licensing/
">MPEG-LA
3092 answers some questions about AVC/H
.264 licensing
</a
>. Anbefales!
</p
>
3097 <title>Medietilsynets syn på om Frikanalen bør være ukryptert på det digitale bakkenettet
</title>
3098 <link>http://people.skolelinux.org/pere/blog/Medietilsynets_syn_p__om_Frikanalen_b_r_v_re_ukryptert_p__det_digitale_bakkenettet.html
</link>
3099 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Medietilsynets_syn_p__om_Frikanalen_b_r_v_re_ukryptert_p__det_digitale_bakkenettet.html
</guid>
3100 <pubDate>Wed,
4 Jul
2012 14:
20:
00 +
0200</pubDate>
3101 <description>I forgårs fikk jeg endelig svar fra Medietilsynet på min epost med
3102 spørmål om hvorfor
<a href=
"http://www.frikanalen.no/
">Frikanalen
</a
>
3103 er kryptert på RiksTV. De toer sine hender:
3105 <p
><blockquote
>
3106 <p
>Date: Mon,
2 Jul
2012 08:
15:
38 +
0000
3107 <br
>From: Arve Lindboe
&lt;Arve.Lindboe (at) medietilsynet.no
&gt;
3108 <br
>To: Petter Reinholdtsen
3109 <br
>CC: Arthur Garnes
&lt;Arthur.Garnes (at) rikstv.no
&gt;,
3110 postmottak (at) sd.dep.no, post (at) frikanalen.no
3111 <br
>Subject: Spørsmål om kryptering av Frikanalen i det digitale bakkenetttet for fjernsyn
</p
>
3113 <p
>Vi viser til Deres spørsmål av
27. mai i år til RiksTV,
3114 Samferdselsdepartementet og Medietilsynet, og til RiksTVs svar av
3115 1. juli til Dem, som vi har mottatt i kopi.
</p
>
3117 <p
>For ordens skyld vil vi orientere om at Medietilsynet har visse
3118 tilsynsoppgaver knyttet til kapittel
3 i NTVs konsesjon for
3119 opprettelse og drift av det digitale bakkenettet for fjernsyn. Av
3120 pkt.
3.5 i denne konsesjonen går det bl.a. fram at NRKs
3121 kjernetilbud/allmennkringkastingstilbud... «skal være tilgjengelig
3122 uten betaling og ha lik dekning.» For distribusjon av innhold utenfor
3123 NRKs tilbud er det ikke tatt inn noen tilsvarende forutsetning i
3124 konsesjonen.
</p
>
3126 <p
>Medietilsynets mandat omfatter ikke spørsmålet om kryptering og
3127 administrasjon av engangsavgift knyttet til adgangskontrollsystem for
3128 NTVs formidling, og tilsynet kan derfor ikke ta stilling til de
3129 spørsmålene De reiser i tilknytning til det.
</p
>
3131 <p
>Mvh
</p
>
3133 <p
>Arve Lindboe
</p
>
3136 <br
>Medietilsynet
</p
>
3137 </blockquote
></p
>
3139 <p
>Her må det tydeligvis andre aktører i sving for å bli kvitt
3140 krypteringen av Frikanalen.
</p
>
3145 <title>Frikanalen bør være ukryptert på det digitale bakkenettet
</title>
3146 <link>http://people.skolelinux.org/pere/blog/Frikanalen_b_r_v_re_ukryptert_p__det_digitale_bakkenettet.html
</link>
3147 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Frikanalen_b_r_v_re_ukryptert_p__det_digitale_bakkenettet.html
</guid>
3148 <pubDate>Sun,
1 Jul
2012 15:
20:
00 +
0200</pubDate>
3149 <description><p
><a href=
"http://www.frikanalen.no
">Frikanalen
</a
> er Norges
3150 landsdekkende
<a href=
"http://no.wikipedia.org/wiki/Åpen_kanal
">åpne
3151 kanal
</a
>, der alle innbyggerne kan sende sine innslag ut på
3152 TV-mediet, slik at alle kan se det de har laget. Det er demokratisk
3153 TV i sin mest ekstreme form, og en kan nesten si at det er Youtube på
3154 TV. NUUG har vært involvert i Frikanalen i mange år, og har bidratt
3156 <a href=
"http://www.nuug.no/pub/video/frikanalen/frontpage.cgi
">løsning
3157 basert på åpne standarder
</a
> i tillegg til den originale løsningen
3158 som er basert på Silverlight.
</p
>
3160 <p
>Frikanalen skal være tilgjengelig for alle uten hindringer, men
3161 RiksTV har av en eller annen grunn tvunget kanalen til å sendes
3162 kryptert ut på det digitale bakkenettet, og dermed tvinges de som skal
3163 se på kanalen via dette nettet å skaffe seg et kundeforhold til
3164 RiksTV. Det synes jeg er svært urimelig, og mistenker det er i strid
3165 med Stortingets intensjon fra da Stortinget vedtok at det skulle være
3166 en åpen kanal på det digitale bakkenettet. Jeg sendte derfor en epost
3167 til RiksTV, Samferdselsdepartementet og Medietilsynet, og tok opp
3168 problemstillingen. Her er det som har vært av oppfølging så
3171 <p
><blockquote
>
3173 <p
>From: Petter Reinholdtsen
3174 <br
>Subject: Når blir Frikanalen ukryptert på RiksTV?
3175 <br
>To: post (at) rikstv.no, postmottak (at) sd.dep.no, post (at) medietilsynet.no
3176 <br
>Cc: post (at) frikanalen.no
3177 <br
>Date: Sun,
27 May
2012 00:
28:
10 +
0200</p
>
3179 <p
>Hvorfor er det så dyrt a motta Frikanalen i det digitale
3180 bakkenettet? I følge nettsidene til Frikanalen er kanalen gratis, men
3181 den sendes kryptert ut på RiksTV, mens f.eks. NRK ikke er kryptert.
3182 For å få tilgang til de krypterte sendingene må en ha programkort som
3183 koster flere hundre kroner for hvert fjernsyn. Dette er jo langt fra
3186 <p
>I Stortingsmelding
39 2007 står det:
</p
>
3188 <p
><blockquote
>
3189 NTVs søsterselskap RiksTV skal stå for betal-tv-operasjonen på
3190 plattformen. RiksTV har lagt opp til at det ikke-kommersielle
3191 tilbudet i bakkenettet skal distribueres som en enkeltkanal utenfor
3192 selskapets betal-tv-pakke. Kanalen vil gå som et gratistilbud til
3193 seerne og vil dele sendeflate med lokal-tv. Det er lagt opp til at
3194 de ikke-kommersielle aktørene i første omgang skal ha sendetid i
3195 perioden kl.
12 til kl.
17.30. Tilbudet vil bli sendt kryptert, men
3196 RiksTV vil påta seg å dekke alle utgifter for kundene (seerne),
3197 dvs. at programkortet seerne må ha for å kunne ta inn de krypterte
3198 sendingene vil være gratis i dette tilfellet. RiksTV vil også dekke
3199 distribusjonskostnadene for den åpne kanalen. Alle disse avtalene
3200 vil gjelde fram til midten av
2010.
3201 </blockquote
></p
>
3203 <p
>Hva gjelder så etter midten av
2010? Betyr det som står i
3204 stortingsmeldingen at RiksTV fra midten av
2010 kan kreve hvilken som
3205 helst pris fra folk som ønsker å se på Frikanalen, derfor RiksTV
3206 velger å distribuere Frikanalen? Eller var det tillatelsen til å
3207 sende Frikanalen kryptert som gikk ut i
2010?
</p
>
3210 <br
>Vennlig hilsen
3211 <br
>Petter Reinholdtsen
</p
>
3212 </blockquote
></p
>
3214 <p
>Jeg har ikke fått svar hverken fra departement eller medietilsyn,
3215 men har fått to svar fra RiksTV.
</p
>
3217 <p
><blockquote
>
3218 <p
>From: post (at) rikstv.no
3219 <br
>Subject: RE:Når blir Frikanalen ukryptert på RiksTV?--ActionID:[
92641] Hvis du svarer på denne henvendelsen, ikke forandre subjektet
3220 <br
>To: Petter Reinholdtsen
3221 <br
>Date: Mon,
28 May
2012 14:
30:
27 +
0200</p
>
3223 <p
>Takk for din henvendelse
</p
>
3225 <p
>Som det fremgår i Stortingsmeldingen gjelder avtalen om at RiksTV
3226 dekker kostnadene for Programkort frem til midten av
2010. Avtalen er
3227 gjengitt i sin helhet på denne lenken:
3228 <a href=
"http://www.regjeringen.no/nb/dep/kud/dok/regpubl/stmeld/
2006-
2007/Stmeld-nr-
39-
2007-/
28/
4.html?id=
478517">http://www.regjeringen.no/nb/dep/kud/dok/regpubl/stmeld/
2006-
2007/Stmeld-nr-
39-
2007-/
28/
4.html?id=
478517</a
>
3230 <p
>Dersom du ønsker tilgang til Frikanalen via det digitale
3231 bakkenettet per idag trenger du et Programkort og RiksTV godkjent
3232 dekoder. Programkortet har en engangsavgift på kr
225,- og er å regne
3233 som en del av utstyret du trenger for å motta krypterte signaler.
</p
>
3235 <p
>Vennligst se mer informasjon om Programkort på denne lenken:
3236 <a href=
"https://www.rikstv.no/kundeservice/Utstyr/programkort/
">https://www.rikstv.no/kundeservice/Utstyr/programkort/
</a
></p
>
3238 <p
>For mer informasjon om våre produkter og priser se, www.rikstv.no
</p
>
3240 <p
>Ha en fin dag.
</p
>
3242 <p
>Med vennlig hilsen
3243 <br
>Thomas Eikeland
3245 <br
>Kundeservice
3246 <br
>Telefonnummer:
09595
3247 <br
>www.rikstv.no
</p
>
3248 </blockquote
></p
>
3250 <p
>Meldingen fra RiksTV svarte ikke helt på det jeg spurte om, så jeg
3251 fulgte opp med en ny epost:
</p
>
3253 <p
><blockquote
>
3254 <p
>From: Petter Reinholdtsen
3255 <br
>Subject: Re: Når blir Frikanalen ukryptert på RiksTV?--ActionID:[
92641] Hvis
<br
> du svarer på denne henvendelsen, ikke forandre subjektet
3256 <br
>To: post (at) rikstv.no
3257 <br
>Date: Fri,
08 Jun
2012 10:
14:
49 +
0200</p
>
3259 <p
>[Thomas Eikeland]
3260 <br
>&gt; Takk for din henvendelse
</p
>
3262 <p
>Takk for svaret.
</p
>
3264 <p
>&gt; Som det fremgår i Stortingsmeldingen gjelder avtalen om at RiksTV dekker
3265 <br
>&gt; kostnadene for Programkort frem til midten av
2010. Avtalen er gjengitt
3266 <br
>&gt; i sin helhet på denne lenken:
3267 <br
>&gt; http://www.regjeringen.no/nb/dep/kud/dok/regpubl/stmeld/
2006-
2007/Stmeld
3268 <br
>&gt; -nr-
39-
2007-/
28/
4.html?id=
478517</p
>
3270 <p
>Jeg lurer altså på hva som gjelder etter at denne avtaleperioden er
3271 over. Er den erstattet med en ny avtale?
</p
>
3275 <li
>Kan RiksTV nå kreve hvilken som helst pris fra folk som ønsker å se
3276 på Frikanalen, eller var det tillatelsen til å sende Frikanalen
3277 kryptert som gikk ut i
2010?
</li
>
3281 <p
>&gt; Dersom du ønsker tilgang til Frikanalen via det digitale bakkenettet
3282 <br
>&gt; per idag trenger du et Programkort og RiksTV godkjent
3283 <br
>&gt; dekoder. Programkortet har en engangsavgift på kr
225,- og er å regne
3284 <br
>&gt; som en del av utstyret du trenger for å motta krypterte signaler.
3286 <br
>&gt; Vennligst se mer informasjon om Programkort på denne lenken:
3287 <br
>&gt; https://www.rikstv.no/kundeservice/Utstyr/programkort/
</p
>
3289 <p
>Dette er litt på siden av det jeg lurte på, som er hva slags
3290 reguleringer departementet har gitt når det gjelder Frikanalen og RiksTV
3291 etter
2010.
</p
>
3294 <br
>Vennlig hilsen
3295 <br
>Petter Reinholdtsen
</p
>
3296 </blockquote
></p
>
3298 <p
>Etter mange uker fikk jeg så på fredag følgende tilbakemelding.
</p
>
3300 <p
><blockquote
>
3301 <p
>From: Arthur Garnes
3302 <br
>Subject: RE: Når blir Frikanalen ukryptert på RiksTV
3303 <br
>To: Petter Reinholdtsen
3304 <br
>Date: Fri,
29 Jun
2012 13:
02:
38 +
0200</p
>
3306 <p
>Hei,
</p
>
3308 <p
>Det vises til din henvendelse av
27.5.2012. Vi beklager at din
3309 henvendelse har tatt noe tid å besvare.
</p
>
3311 <p
>RiksTV har en distribusjonsavtale med Frikanalen, hvor Frikanalen
3312 vederlagsfritt får distribusjon i det digitale bakkenettet. At
3313 signalet er kryptert bygger på RiksTVs avtale med Frikanalen. At alle
3314 kanalene som RiksTV distribuerer som en del av sitt tilbud skal være
3315 kryptert har også vært forutsetningen for NTV, RiksTV, myndighetene og
3316 Frikanalen hele tiden. RiksTV og NTV har kostnader knyttet til å ha et
3317 adgangskontrollsystem og utstedelse, distribusjon og administrasjon av
3318 programkort og trenger som en kommersiell aktør å få dekket disse
3319 kostnadene.
</p
>
3321 <p
>Skulle du ha noen ytterligere spørsmål så er det selvsagt bare å ta
3324 <p
>Med vennlig hilsen
3325 <br
>Arthur Garnes
3326 <br
>Product Manager
</p
>
3328 <p
>Mobil: +
47 98234224
3329 <p
>E-post: arthur.garnes (at) rikstv.no
3331 <br
>Besøk: Økernveien
145,
17. etg, Oslo
3332 <br
>Post: Postboks
393 Økern,
0513 Oslo
</p
>
3334 <p
>Web: rikstv.no rikstvbloggen.no facebook.com/rikstv twitter:@rikstv
</p
>
3336 <p
>Denne e-post og informasjonen den inneholder er konfidensiell og
3337 ment kun for den korrekte adressaten. This e-mail and the information
3338 it contains is confidential and intended only for the right
3339 addressee.
</p
>
3340 </blockquote
></p
>
3342 <p
>Her var det mye å ta tak i, men jeg vet ikke når jeg rekker følge
3348 <title>Departementenes servicesenter har ingen avtale om bruk av H
.264 med MPEG-LA
</title>
3349 <link>http://people.skolelinux.org/pere/blog/Departementenes_servicesenter_har_ingen_avtale_om_bruk_av_H_264_med_MPEG_LA.html
</link>
3350 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Departementenes_servicesenter_har_ingen_avtale_om_bruk_av_H_264_med_MPEG_LA.html
</guid>
3351 <pubDate>Fri,
29 Jun
2012 09:
40:
00 +
0200</pubDate>
3352 <description><p
>Da fikk jeg nettopp svar fra
3353 <a href=
"http://www.dss.dep.no/
">Departementenes servicesenter
</a
>
3355 <a href=
"http://people.skolelinux.org/pere/blog/Trenger_en_avtale_med_MPEG_LA_for___publisere_og_kringkaste_H_264_video_.html
">mitt
3356 spørsmål om avtale rundt bruk av H
.264</a
>. De har ingen avtale med
3357 MPEG LA eller dets representanter. Her er svaret.
3359 <p
><blockquote
>
3361 <p
>Date: Fri,
29 Jun
2012 07:
04:
42 +
0000
3362 <br
>From: Nielsen Mette Haga
&lt;Mette-Haga.Nielsen (at) dss.dep.no
&gt;
3363 <br
>To: Petter Reinholdtsen
&lt;petter.reinholdtsen (at) ...
&gt;
3364 <br
>CC: Postmottak
&lt;Postmottak (at) dss.dep.no
&gt;
3365 <br
>Subject: SV: Innsynsbegjæring om MPEG/H
.264-relaterte avtaler
</p
>
3367 <p
>DSS har ikke inngått noen egen lisensavtale med MPEG-LA eller noen som
3368 representerer MPEG-LA i Norge. Videoløsningen på regjeringen.no er
3369 levert av Smartcom:tv. Lisensforholdet rundt H
.264 er ikke omtalt i
3370 vår avtale med Smartcom.
</p
>
3372 <p
>Vennlig hilsen
</p
>
3374 <p
>Mette Haga Nielsen
3375 <br
>Fung. seksjonssjef
</p
>
3377 <p
>Departementenes servicesenter
</p
>
3379 <p
>Informasjonsforvaltning
3381 <p
>Mobil
93 09 83 51
3382 <br
>E-post mette-haga.nielsen (at) dss.dep.no
</p
>
3383 </blockquote
></p
>
3385 <p
>Hvis den norske regjeringen representert ved DSS ikke har slik
3386 avtale, så kan en kanskje konkludere med at det ikke trengs? Jeg er
3387 ikke trygg på at det er god juridisk grunn å stå på, men det er i det
3388 minste interessant å vite at hverken NRK eller DSS har funnet det
3389 nødvendig å ha avtale om bruk av H
.264.
</p
>
3391 <p
>Det forklarer ikke hvordan de kan ignorere bruksvilkårene knyttet
3392 til bruk av opphavsrettsbeskyttet materiale de bruker til
3393 videoproduksjon, med mindre slike vilkår kan ignoreres av selskaper og
3394 privatpersoner i Norge. Har de lov til å bryte vilkårene, eller har
3395 de brutt dem og så langt sluppet unna med det? Jeg aner ikke.
</p
>
3400 <title>MPEG-LA mener NRK må ha avtale med dem for å kringkaste og publisere H
.264-video
</title>
3401 <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>
3402 <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>
3403 <pubDate>Thu,
28 Jun
2012 20:
00:
00 +
0200</pubDate>
3404 <description><p
>Etter at NRK
3405 <a href=
"http://people.skolelinux.org/pere/blog/NRK_nekter___finne_og_utlevere_eventuell_avtale_med_MPEG_LA.html
">nektet
3406 å spore opp eventuell avtale med MPEG-LA
</a
> eller andre om bruk av
3407 MPEG/H
.264-video etter at jeg
<a
3408 href=
"http://people.skolelinux.org/pere/blog/Trenger_en_avtale_med_MPEG_LA_for___publisere_og_kringkaste_H_264_video_.html
">ba
3409 om innsyn i slike avtaler
</a
>, tenkte jeg at i stedet for å forsøke å
3410 få NRK til å finne en slik avtale, så burde det være like enkelt å
3411 spørre MPEG-LA om de hadde avtale med NRK. Spørsmålet ble sendt før
3412 jeg fikk tips fra Kieran Kunhya om hvor listen over lisensinnehavere
3413 "in Good Standing
" befant seg. MPEG-LA svarte meg i dag, og kan
3414 fortelle at NRK ikke har noen avtale med dem, så da er i det minste det
3415 slått fast. Ikke overraskende mener MPEG-LA at det trengs en avtale
3416 med MPEG-LA for å streame H
.264, men deres rammer er jo
3417 rettstilstanden i USA og ikke Norge. Jeg tar dermed den delen av
3418 svaret med en klype salt. Jeg er dermed fortsatt ikke klok på om det
3419 trengs en avtale, og hvis det trengs en avtale her i Norge, heller
3420 ikke sikker på om NRK har en avtale med noen andre enn MPEG-LA som
3421 gjør at de ikke trenger avtale direkte med MPEG-LA. Jeg håper NRKs
3422 jurister har vurdert dette, og at det er mulig å få tilgang til
3423 vurderingen uansett om de trenger en avtale eller ikke.
</p
>
3425 <p
>Her er epostutvekslingen med MPEG-LA så langt. Håper ikke
3426 utvekslingen fører til NRK plutselig får en litt uventet pakke fra
3429 <p
><blockquote
>
3430 <p
>Date: Mon,
25 Jun
2012 15:
29:
37 +
0200
3431 <br
>From: Petter Reinholdtsen
&lt;pere (at) hungry.com
&gt;
3432 <br
>To: licensing-web (at) mpegla.com
3433 <br
>Subject: Do NRK have a license agreement with MPEG-LA?
</p
>
3435 <p
>Hi. I have a small question for you, that I hope it is OK that I
3438 <p
>Is there any license agreements between MPEG-LA and NRK,
&lt;URL:
3439 <a href=
"http://www.nrk.no/
">http://www.nrk.no/
</a
> &gt;, the
3440 Norwegian national broadcasting cooperation? I am not sure if they
3441 need one, and am just curious if such agreeement exist.
</p
>
3443 <p
>The postal address is
</p
>
3445 <p
><blockquote
>
3447 <br
>Postbox
8500, Majorstuen
3450 </blockquote
></p
>
3452 <p
>if it make it easier for you to locate such agreement.
</p
>
3454 <p
>Can you tell me how many entities in Norway have an agreement with
3455 MPEG-LA, and the name of these entities?
</p
>
3458 <br
>Happy hacking
3459 <br
>Petter Reinholdtsen
3460 </blockquote
></p
>
3462 <p
>I dag, to dager senere, fikk jeg følgende svar:
</p
>
3464 <p
><blockquote
>
3465 <p
>Date: Thu,
28 Jun
2012 14:
11:
17 +
0000
3466 <br
>From: Ryan Rodriguez
&lt;RRodriguez (at) mpegla.com
>
3467 <br
>To: Petter Reinholdtsen
&lt;pere (at) hungry.com
>
3468 <br
>CC: MD Administration
&lt;MDAdministration (at) mpegla.com
>
3469 <br
>Subject: RE: Do NRK have a license agreement with MPEG-LA?
</p
>
3471 <p
>Dear Mr. Reinholdtsen,
</p
>
3473 <p
>Thank you for your message and for your interest in MPEG LA. We
3474 appreciate hearing from you and I will be happy to assist you.
</p
>
3476 <p
>To begin, I will assume that you are referring to AVC/H
.264
3477 technology in your message below, as this technology is commonly used
3478 in the transmission of video content. In that case, please allow me
3479 to briefly summarize the coverage provided by our AVC Patent Portfolio
3482 <P
>Our AVC License provides coverage for end products and video
3483 services that make use of AVC/H
.264 technology. Accordingly, the
3484 party offering such end products and video to End Users concludes the
3485 AVC License and is responsible for paying the applicable royalties
3486 associated with the end products/video they offer.
</p
>
3488 <p
>While the Norwegian Broadcast Corporation (NRK) is not currently a
3489 Licensee to MPEG LA
's AVC License (or any other Portfolio License
3490 offered by MPEG LA), if NRK offers AVC Video to End Users for
3491 remuneration (for example, Title-by-Title, Subscription, Free
3492 Television, or Internet Broadcast AVC Video), then NRK will need to
3493 conclude the AVC License and may be responsible for paying applicable
3494 royalties associated with the AVC Video it distributes.
</p
>
3496 <p
>Today I will send you a FedEx package containing a copy of our AVC
3497 License for your review. You should receive the License document
3498 within the next few days.
</p
>
3500 <p
>Meanwhile, MPEG LA currently has several Norwegian Licensees that
3501 can be found under the
"Licensees
" header within the respective
3502 portion of our website. For example, you may find our list of
3503 Licensees in Good Standing to our AVC License in the AVC portion of
3505 <a href=
"http://www.mpegla.com/main/programs/AVC/Pages/Licensees.aspx
">http://www.mpegla.com/main/programs/AVC/Pages/Licensees.aspx
</a
></p
>
3507 <p
>I hope the above information is helpful. If you have additional
3508 questions or need further assistance with the AVC License, please feel
3509 free to contact me directly. I look forward to hearing from you again
3512 <p
>Best regards,
</p
>
3514 <p
>Ryan
</p
>
3516 <p
>Ryan M. Rodriguez
3517 <br
>Licensing Associate
3519 <br
>5425 Wisconsin Avenue
3521 <br
>Chevy Chase, MD
20815
3523 <br
>Phone: +
1 (
301)
986-
6660 x211
3524 <br
>Fax: +
1 (
301)
986-
8575
3525 <br
>Email: rrodriguez (at) mpegla.com
</p
>
3527 </blockquote
></p
>
3529 <p
>Meldingen om utsendt FedEx-pakke var så merkelig at jeg
3530 øyeblikkelig sendte svar tilbake og spurte hva i alle dager han mente,
3531 da han jo ikke hadde fått noen postadresse som nådde meg.
</p
>
3533 <p
><blockquote
>
3535 <p
>Date: Thu,
28 Jun
2012 16:
36:
15 +
0200
3536 <br
>From: Petter Reinholdtsen
&lt;pere (at) hungry.com
&gt;
3537 <br
>To: Ryan Rodriguez
&lt;RRodriguez (at) mpegla.com
&gt;
3538 <br
>Cc: MD Administration
&lt;MDAdministration (at) mpegla.com
&gt;
3539 <br
>Subject: Re: Do NRK have a license agreement with MPEG-LA?
</p
>
3541 <p
>[Ryan Rodriguez]
3542 <br
>&gt; Dear Mr. Reinholdtsen,
</p
>
3544 <p
>Thank you for your quick reply.
</p
>
3546 <p
>&gt; Today I will send you a FedEx package containing a copy of our AVC
3547 <br
>&gt; License for your review. You should receive the License document
3548 <br
>&gt; within the next few days.
</p
>
3550 <p
>The part about sending a FedEx package confused me, though. I did not
3551 <br
>give you my address, nor am I associated with NRK in any way, so I hope
3552 <br
>you did not try to send me a package using the address of NRK. If you
3553 <br
>would send me the Internet address of to the document, it would be more
3554 <br
>useful to me to be able to download it as an electronic document.
</p
>
3556 <p
>&gt; Meanwhile, MPEG LA currently has several Norwegian Licensees that can
3557 <br
>&gt; be found under the
"Licensees
" header within the respective portion
3558 <br
>&gt; of our website. For example, you may find our list of Licensees in
3559 <br
>&gt; Good Standing to our AVC License in the AVC portion of our website,
3560 <br
>&gt; http://www.mpegla.com/main/programs/AVC/Pages/Licensees.aspx
</p
>
3562 <p
>How can I recognize the Norwegian licensees?
</p
>
3565 <br
>Happy hacking
3566 <br
>Petter Reinholdtsen
</p
>
3567 </blockquote
></p
>
3569 <p
>Selv om jeg svarte kun noen minutter etter at jeg fikk eposten fra
3570 MPEG-LA, fikk jeg eposten under som automatisk var beskjed på min
3571 siste epost. Får håpe noen likevel følger opp
"FedEx-pakken
". For å
3572 øke sjansen for at noen revurderer utsending av pakke uten mottaker,
3573 videresendte jeg min epost til swolf (at) mpegla.com, så får vi se.
3574 Har ikke hørt noe mer
3 timer senere, så jeg mistenker at ingen leste
3575 min epost tidsnok.
</p
>
3577 <p
><blockquote
>
3579 <p
>Date: Thu,
28 Jun
2012 14:
36:
20 +
0000
3580 <br
>From: Ryan Rodriguez
&lt;RRodriguez (at) mpegla.com
&gt;
3581 <br
>To: Petter Reinholdtsen
&lt;pere (at) hungry.com
&gt;
3582 <br
>Subject: Automatic reply: Do NRK have a license agreement with MPEG-LA?
</p
>
3584 <p
>Thank you for your message.
</p
>
3586 <p
>I will be out of the office until Thursday, July
5 and will respond
3587 to all messages upon my return. If this is a matter that requires
3588 immediate attention, please contact Sidney Wolf (swolf (at)
3589 mpegla.com)
</p
>
3591 <p
>Best regards,
</p
>
3593 <p
>Ryan
</p
>
3595 <p
>Ryan M. Rodriguez
3596 <br
>Licensing Associate
3597 <br
>MPEG LA
</p
>
3599 </blockquote
></p
>
3601 <p
>Litt klokere, men fortsatt ikke klok på mitt opprinnelige spørsmål,
3602 som er om en trenger avtale med MPEG-LA for å publisere eller
3603 kringkaste H
.264-video i Norge.
</p
>
3608 <title>NRK nekter å finne og utlevere eventuell avtale med MPEG-LA
</title>
3609 <link>http://people.skolelinux.org/pere/blog/NRK_nekter___finne_og_utlevere_eventuell_avtale_med_MPEG_LA.html
</link>
3610 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/NRK_nekter___finne_og_utlevere_eventuell_avtale_med_MPEG_LA.html
</guid>
3611 <pubDate>Mon,
25 Jun
2012 15:
10:
00 +
0200</pubDate>
3612 <description><p
>Jeg fikk nettopp svar fra NRK på
3613 <a href=
"http://people.skolelinux.org/pere/blog/Trenger_en_avtale_med_MPEG_LA_for___publisere_og_kringkaste_H_264_video_.html
">min
3614 forespørsel om kopi av avtale
</a
> med MPEG-LA eller andre om bruk av
3615 MPEG og/eller H
.264. Svaret har fått saksreferanse
2011/
371 (mon tro
3616 hva slags sak fra
2011 dette er?) hos NRK og lyder som følger:
</p
>
3618 <p
><blockquote
>
3620 <p
><strong
>Svar på innsynsbegjæring i MPEG / H
.264-relaterte
3621 avtaler
</strong
></p
>
3623 <p
>Viser til innsynsbegjæring av
19. juni
2012. Kravet om innsyn
3624 gjelder avtale som gjør at NRK «ikke er begrenset av de generelle
3625 bruksvilkårene som gjelder for utstyr som bruker MPEG og/eller
3628 <p
>I henhold til offentleglova §
28 annet ledd må innsynskravet gjelde
3629 en bestemt sak eller i rimelig utstrekning saker av en bestemt
3630 sak. Det er på det rene at det aktuelle innsynskravet ikke gjelder en
3631 bestemt sak. Spørsmålet som reiser seg er om identifiseringsgraden er
3632 tilstrekkelig. I Justisdepartementets «Rettleiar til offentleglova»
3633 står følgende:
</p
>
3635 <p
>«Kravet om at innsynskravet må gjelde ei bestemt sak er til hinder
3636 for at eit innsynskrav kan gjelde alle saker av ein bestemt art, utan
3637 at den enkelte saka blir identifisert. Ein kan med andre ord i
3638 utgangspunktet ikkje krevje innsyn i til dømes alle saker om
3639 utsleppsløyve hos Statens forureiningstilsyn frå dei siste tre åra,
3640 med mindre ein identifiserer kvar enkelt sak, til dømes med tilvising
3641 til dato, partar eller liknande.»
</p
>
3643 <p
>Vedrørende denne begrensningen har Justisdepartementet uttalt
3644 følgende (Lovavdelingens uttalelser JDLOV-
2010-
3295):
</p
>
3646 <p
><em
>«Bakgrunnen for avgrensinga av kva innsynskravet kan gjelde,
3647 er fyrst og fremst at meir generelle innsynskrav, utan noka form for
3648 identifikasjon av kva ein eigentleg ynskjer, ville vere svært
3649 vanskelege å handsame for forvaltninga.»
</em
></p
>
3651 <p
>I samme sak uttaler Lovavdelingen følgende:
</p
>
3653 <p
><em
>«Det følgjer vidare av offentleglova §
28 andre ledd at det `i
3654 rimeleg utstrekning
' kan krevjast innsyn i `saker av ein bestemt
3655 art
'. Vilkåret om at eit innsynskrav berre `i rimeleg utstrekning
' kan
3656 gjelde saker av ein bestemt art, er i hovudsak knytt til kor
3657 arbeidskrevjande det vil vere å finne fram til dei aktuelle
3658 dokumenta. I tillegg reknar vi med at vilkåret kan gje grunnlag for å
3659 nekte innsyn i tilfelle der innsynskravet er så omfattande (gjeld så
3660 mange dokument) at arbeidsmengda som ville gått med til å handsame
3661 det, er større enn det ein `i rimeleg utstrekning
' kan krevje (sjølv
3662 om det nok skal mykje til).»
</em
></p
>
3664 <p
>NRK har ikke noen egen sammenstilling over avtaler innenfor
3665 bestemte områder som omtales i innsynsbegjæringen. De måtte søkes på
3666 vanlig måte. I tillegg finnes ikke noen automatisert måte å finne
3667 avtaler som «ikke er begrenset av de generelle bruksvilkårene som
3668 gjelder for utstyr som bruker MPEG og/eller H
.264». En slik
3669 gjennomgang av avtaler måtte gjøres manuelt av en person med
3670 spesialistkunnskap. Dette vil kreve at NRK avsetter omfattende
3671 ressurser for å finne frem relevante avtaler og for deretter å vurdere
3672 om de dekkes av det innsynsbegjæringen omfattes.
</p
>
3674 <p
>På bakgrunn av dette nekter NRK innsyn, med den begrunnelsen at
3675 innsynskravet er så omfattende at arbeidsmengden for å håndtere kravet
3676 vil være langt større enn det som i rimelig utstrekning kan kreves i
3677 henhold til offentleglova §
28 annet ledd.
</p
>
3679 <p
>Avslag på deres innsynsbegjæring kan påklages til Kultur- og
3680 kirkedepartementet innen tre uker fra det tidspunkt avslaget kommer
3681 frem til mottakeren, i henhold til reglene i offentleglova §
32,
3682 jf. forvaltningsloven kapittel VI. Klagen skal stiles til Kultur- og
3683 kirkedepartementet, og sendes til NRK.
</p
>
3685 <p
>NRK er imidlertid etter Offentleglova forpliktet å gi ut journaler,
3686 slik at en eventuell søknad om innsyn kan tydeligere identifisere
3687 hvilke dokumenter som det ønskes innsyn i. NRKs offentlige journaler
3688 for inneværende og forrige måned ligger ute på
3689 NRK.no/innsyn. Journaler som går lengre tilbake i tid, kan sendes ut
3690 på forespørsel til innsyn (at) nrk.no.
</p
>
3693 <br
>Dokumentarkivet i NRK
3694 <br
>v/ Elin Brandsrud
3695 <br
>Tel. direkte:
23 04 29 29
3696 <br
>Post: RBM3, Postboks
8500 Majorstuen,
0340 Oslo
3697 <br
>innsyn (at) nrk.no
</p
>
3699 </blockquote
></p
>
3702 <a href=
"http://people.skolelinux.org/pere/blog/images/
2012-
06-
25-video-mpegla-nrk.pdf
">i
3703 PDF-form som vedlegg på epost
</a
>. Jeg er litt usikker på hvordan jeg
3704 best går videre for å bli klok, men jeg har jo i hvert fall tre uker
3705 på å vurdere om jeg skal klage. Enten må nok forespørselen
3706 reformuleres eller så må jeg vel klage. Synes jo det er merkelig at
3707 NRK ikke har bedre kontroll med hvilke avtaler de har inngått. Det
3708 burde jo være noen i ledelsen som vet om de har signert en avtale med
3709 MPEG-LA eller ikke...
</p
>
3711 <p
>Oppdatering
2012-
06-
25 20:
20: Et google-søk på
"2011/
371 nrk
"
3712 sendte meg til postjournalen for
3713 <a href=
"http://nrk.no/contentfile/file/
1.8212365!offentligjournal19062012.pdf
">2012-
06-
19</a
>
3715 <a href=
"http://nrk.no/contentfile/file/
1.8214156!offentligjournal20062012.pdf
">2012-
06-
20</a
>
3716 hos NRK som viser mine forespørsler og viser at sakens tittel hos NRK
3717 er
"Graphic Systems Regions MA
2378/
10E
". Videre søk etter
"Graphic
3718 Systems Regions
" viser at dette er saken til et anbud om
3719 "<a href=
"http://no.mercell.com/m/mts/Tender/
27179412.aspx
">a graphics
3720 system for
12 or
13 sites broadcasting regional news
</a
>" hos Mercell
3721 Sourcing Service, også omtalt på
3722 <a href=
"http://www.publictenders.net/tender/
595705">Public
3723 Tenders
</a
> og
3724 <a href=
"http://www.doffin.no/search/show/search_view.aspx?ID=JAN155521
">Doffin
</a
>.
3725 Jeg er dog usikker på hvordan dette er relatert til min
3726 forespørsel.
</p
>
3728 <p
>Oppdatering
2012-
06-
25 22:
40: Ble tipset av Kieran Kunhya, fra
3730 <a href=
"http://code.google.com/p/open-broadcast-encoder/
">Open
3731 Broadcast Encoder
</a
>, at listen over de som har lisensavtale med
3733 <a href=
"http://www.mpeg-la.com/main/programs/AVC/Pages/Licensees.aspx
">tilgjengelig
3734 på web
</a
>. Veldig fint å oppdage hvor den finnes, da jeg må ha lett
3735 etter feil ting da jeg forsøke å finne den. Der står ikke NRK, men
3736 flere andre
"Broadcasting Company
"-oppføringer. Lurer på om det betyr
3737 at NRK ikke trenger avtale, eller noe helt annet?
</p
>
3742 <title>Trenger en avtale med MPEG-LA for å publisere og kringkaste H
.264-video?
</title>
3743 <link>http://people.skolelinux.org/pere/blog/Trenger_en_avtale_med_MPEG_LA_for___publisere_og_kringkaste_H_264_video_.html
</link>
3744 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Trenger_en_avtale_med_MPEG_LA_for___publisere_og_kringkaste_H_264_video_.html
</guid>
3745 <pubDate>Thu,
21 Jun
2012 13:
40:
00 +
0200</pubDate>
3746 <description><p
>Trengs det avtale med MPEG-LA for å ha lovlig rett til å
3747 distribuere og kringkaste video i MPEG4 eller med videokodingen H
.264?
3748 <a href=
"http://webmink.com/essays/h-
264/
">H
.264 og MPEG4 er jo ikke en
3749 fri og åpen standard
</a
> i henhold til
3750 <a href=
"http://people.skolelinux.org/pere/blog/Fri_og__pen_standard__slik_Digistan_ser_det.html
">definisjonen
3751 til Digistan
</a
>, så i enkelte land er det ingen tvil om at du må ha
3752 en slik avtale, men jeg må innrømme at jeg ikke vet om det også
3753 gjelder Norge. Det ser uansett ut til å være en juridisk interessant
3754 problemstilling. Men jeg tenkte her om dagen som så, at hvis det er
3755 nødvendig, så har store aktører som
3756 <a href=
"http://www.nrk.no/
">NRK
</a
> og
3757 <a href=
"http://www.regjeringen.no/
">regjeringen
</a
> skaffet seg en
3758 slik avtale. Jeg har derfor sendt forespørsel til begge (for
3759 regjeringen sin del er det Departementenes Servicesenter som gjør
3760 jobben), og bedt om kopi av eventuelle avtaler de har om bruk av MPEG
3761 og/eller H
.264 med MPEG-LA eller andre aktører som opererer på vegne
3762 av MPEG-LA. Her er kopi av eposten jeg har sendt til
3763 <a href=
"http://www.dss.dep.no/
">Departementenes Servicesenter
</a
>.
3764 Forespørselen til NRK er veldig lik.
</p
>
3766 <p
><blockquote
>
3768 <p
>Date: Tue,
19 Jun
2012 15:
18:
33 +
0200
3769 <br
>From: Petter Reinholdtsen
3770 <br
>To: postmottak@dss.dep.no
3771 <br
>Subject: Innsynsbegjæring om MPEG/H
.264-relaterte avtaler
3773 <p
>Hei. Jeg ber herved om innsyn og kopi av dokumenter i DSS relatert
3774 til avtaler rundt bruk av videoformatene MPEG og H
.264. Jeg er
3775 spesielt interessert i å vite om DSS har lisensavtale med MPEG-LA
3776 eller noen som representerer MPEG-LA i Norge.
</p
>
3778 <p
>MPEG og H
.264 er videoformater som brukes både til kringkasting
3779 (f.eks. i bakkenett og kabel-TV) og videopublisering på web, deriblant
3780 via Adobe Flash. MPEG-LA,
&lt;URL:
3781 <a href=
"http://www.mpeg-la.com/
">http://www.mpeg-la.com/
</a
> &gt;, er
3782 en organisasjon som har fått oppgaven, av de kjente rettighetshavere
3783 av immaterielle rettigheter knyttet til MPEG og H
.264, å selge
3784 bruksrett for MPEG og H
.264.
</p
>
3786 <p
>Via regjeringen.no kringkastes med MPEG og H
.264-baserte
3787 videoformater, og dette ser ut til å være organisert av DSS. Jeg
3788 antar dermed at DSS har avtale med en eller annen aktør om dette.
</p
>
3790 <p
>F.eks. har Adobe Premiere Pro har følgende klausul i følge
&lt;URL:
3791 <a href=
"http://news.cnet.com/
8301-
30685_3-
20000101-
264.html
">http://news.cnet.com/
8301-
30685_3-
20000101-
264.html
</a
>
3794 <p
><blockquote
>
3796 <p
>6.17. AVC DISTRIBUTION. The following notice applies to software
3797 containing AVC import and export functionality: THIS PRODUCT IS
3798 LICENSED UNDER THE AVC PATENT PORTFOLIO LICENSE FOR THE PERSONAL AND
3799 NON-COMMERCIAL USE OF A CONSUMER TO (a) ENCODE VIDEO IN COMPLIANCE
3800 WITH THE AVC STANDARD (
"AVC VIDEO
") AND/OR (b) DECODE AVC VIDEO THAT
3801 WAS ENCODED BY A CONSUMER ENGAGED IN A PERSONAL AND NON-COMMERCIAL
3802 ACTIVITY AND/OR AVC VIDEO THAT WAS OBTAINED FROM A VIDEO PROVIDER
3803 LICENSED TO PROVIDE AVC VIDEO. NO LICENSE IS GRANTED OR SHALL BE
3804 IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE OBTAINED
3805 FROM MPEG LA L.L.C. SEE
3806 <a href=
"http://www.mpegla.com
">http://www.mpegla.com
</a
>.
</p
>
3808 </blockquote
></p
>
3810 <p
>Her er det kun
"non-commercial
" og
"personal and non-commercial
"
3811 aktivitet som er tillatt uten ekstra avtale med MPEG-LA.
</p
>
3813 <p
>Et annet tilsvarende eksempel er Apple Final Cut Pro, som har
3814 følgende klausul i følge
&lt;URL:
3815 <a href=
"http://images.apple.com/legal/sla/docs/finalcutstudio2.pdf
">http://images.apple.com/legal/sla/docs/finalcutstudio2.pdf
</a
>
3818 <p
><blockquote
>
3820 <p
>15. Merknad om H
.264/AVC. Hvis Apple-programvaren inneholder
3821 funksjonalitet for AVC-koding og/eller AVC-dekoding, krever
3822 kommersiell bruk ekstra lisensiering og følgende gjelder:
3823 AVC-FUNKSJONALITETEN I DETTE PRODUKTET KAN KUN ANVENDES AV
3824 FORBRUKERE OG KUN FOR PERSONLIG OG IKKE- KOMMERSIELL BRUK TIL (i)
3825 KODING AV VIDEO I OVERENSSTEMMELSE MED AVC-STANDARDEN (
"AVC-VIDEO
")
3826 OG/ELLER (ii) DEKODING AV AVC-VIDEO SOM ER KODET AV EN FORBRUKER TIL
3827 PERSONLIG OG IKKE-KOMMERSIELL BRUK OG/ELLER DEKODING AV AVC-VIDEO
3828 FRA EN VIDEOLEVERANDØR SOM HAR LISENS TIL Å TILBY
3829 AVC-VIDEO. INFORMASJON OM ANNEN BRUK OG LISENSIERING KAN INNHENTES
3830 FRA MPEG LA L.L.C. SE HTTP://WWW.MPEGLA.COM.
</p
>
3831 </blockquote
></p
>
3833 <p
>Tilsvarende gjelder for andre programvarepakker, kamera, etc som
3834 bruker MPEG og H
.264, at en må ha en avtale med MPEG-LA for å ha lov
3835 til å bruke programmet/utstyret hvis en skal lage noe annet enn
3836 private filmer og i ikke-kommersiell virksomhet.
</p
>
3838 <p
>Jeg er altså interessert i kopi av avtaler DSS har som gjør at en
3839 ikke er begrenset av de generelle bruksvilkårene som gjelder for
3840 utstyr som bruker MPEG og/eller H
.264.
</p
>
3841 </blockquote
></p
>
3843 <p
>Nå venter jeg spent på svaret. Jeg planlegger å blogge om svaret
3849 <title>HTC One X - Your video? What do you mean?
</title>
3850 <link>http://people.skolelinux.org/pere/blog/HTC_One_X___Your_video___What_do_you_mean_.html
</link>
3851 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/HTC_One_X___Your_video___What_do_you_mean_.html
</guid>
3852 <pubDate>Thu,
26 Apr
2012 13:
20:
00 +
0200</pubDate>
3853 <description><p
>In
<a href=
"http://www.idg.no/computerworld/article243690.ece
">an
3854 article today
</a
> published by Computerworld Norway, the photographer
3855 <a href=
"http://www.urke.com/eirik/
">Eirik Helland Urke
</a
> reports
3856 that the video editor application included with
3857 <a href=
"http://www.htc.com/www/smartphones/htc-one-x/#specs
">HTC One
3858 X
</a
> have some quite surprising terms of use. The article is mostly
3859 based on the twitter message from mister Urke, stating:
3861 <p
><blockquote
>
3862 "<a href=
"http://twitter.com/urke/status/
194062269724897280">Drøy
3863 brukeravtale: HTC kan bruke MINE redigerte videoer kommersielt. Selv
3864 kan jeg KUN bruke dem privat.
</a
>"
3865 </blockquote
></p
>
3867 <p
>I quickly translated it to this English message:
</p
>
3869 <p
><blockquote
>
3870 "Arrogant user agreement: HTC can use MY edited videos
3871 commercially. Although I can ONLY use them privately.
"
3872 </blockquote
></p
>
3874 <p
>I
've been unable to find the text of the license term myself, but
3875 suspect it is a variation of the MPEG-LA terms I
3876 <a href=
"http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html
">discovered
3877 with my Canon IXUS
130</a
>. The HTC One X specification specifies that
3878 the recording format of the phone is .amr for audio and .mp3 for
3880 <a href=
"http://en.wikipedia.org/wiki/Adaptive_Multi-Rate_audio_codec#Licensing_and_patent_issues
">Adaptive
3881 Multi-Rate audio codec
</a
> with patents which according to the
3882 Wikipedia article require an license agreement with
3883 <a href=
"http://www.voiceage.com/
">VoiceAge
</a
>. MP4 is
3884 <a href=
"http://en.wikipedia.org/wiki/H
.264/MPEG-
4_AVC#Patent_licensing
">MPEG4 with
3885 H
.264</a
>, which according to Wikipedia require a licence agreement
3886 with
<a href=
"http://www.mpegla.com/
">MPEG-LA
</a
>.
</p
>
3888 <p
>I know why I prefer
3889 <a href=
"http://www.digistan.org/open-standard:definition
">free and open
3890 standards
</a
> also for video.
</p
>
3895 <title>RAND terms - non-reasonable and discriminatory
</title>
3896 <link>http://people.skolelinux.org/pere/blog/RAND_terms___non_reasonable_and_discriminatory.html
</link>
3897 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/RAND_terms___non_reasonable_and_discriminatory.html
</guid>
3898 <pubDate>Thu,
19 Apr
2012 22:
20:
00 +
0200</pubDate>
3899 <description><p
>Here in Norway, the
3900 <a href=
"http://www.regjeringen.no/nb/dep/fad.html?id=
339"> Ministry of
3901 Government Administration, Reform and Church Affairs
</a
> is behind
3902 a
<a href=
"http://standard.difi.no/forvaltningsstandarder
">directory of
3903 standards
</a
> that are recommended or mandatory for use by the
3904 government. When the directory was created, the people behind it made
3905 an effort to ensure that everyone would be able to implement the
3906 standards and compete on equal terms to supply software and solutions
3907 to the government. Free software and non-free software could compete
3908 on the same level.
</p
>
3910 <p
>But recently, some standards with RAND
3911 (
<a href=
"http://en.wikipedia.org/wiki/Reasonable_and_non-discriminatory_licensing
">Reasonable
3912 And Non-Discriminatory
</a
>) terms have made their way into the
3913 directory. And while this might not sound too bad, the fact is that
3914 standard specifications with RAND terms often block free software from
3915 implementing them. The reasonable part of RAND mean that the cost per
3916 user/unit is low,and the non-discriminatory part mean that everyone
3917 willing to pay will get a license. Both sound great in theory. In
3918 practice, to get such license one need to be able to count users, and
3919 be able to pay a small amount of money per unit or user. By
3920 definition, users of free software do not need to register their use.
3921 So counting users or units is not possible for free software projects.
3922 And given that people will use the software without handing any money
3923 to the author, it is not really economically possible for a free
3924 software author to pay a small amount of money to license the rights
3925 to implement a standard when the income available is zero. The result
3926 in these situations is that free software are locked out from
3927 implementing standards with RAND terms.
</p
>
3929 <p
>Because of this, when I see someone claiming the terms of a
3930 standard is reasonable and non-discriminatory, all I can think of is
3931 how this really is non-reasonable and discriminatory. Because free
3932 software developers are working in a global market, it does not really
3933 help to know that software patents are not supposed to be enforceable
3934 in Norway. The patent regimes in other countries affect us even here.
3935 I really hope the people behind the standard directory will pay more
3936 attention to these issues in the future.
</p
>
3938 <p
>You can find more on the issues with RAND, FRAND and RAND-Z terms
3940 (
<a href=
"http://blogs.computerworlduk.com/simon-says/
2010/
11/rand-not-so-reasonable/
">RAND:
3941 Not So Reasonable?
</a
>).
</p
>
3943 <p
>Update
2012-
04-
21: Just came across a
3944 <a href=
"http://blogs.computerworlduk.com/open-enterprise/
2012/
04/of-microsoft-netscape-patents-and-open-standards/index.htm
">blog
3945 post from Glyn Moody
</a
> over at Computer World UK warning about the
3946 same issue, and urging people to speak out to the UK government. I
3947 can only urge Norwegian users to do the same for
3948 <a href=
"http://www.standard.difi.no/hoyring/hoyring-om-nye-anbefalte-it-standarder
">the
3949 hearing taking place at the moment
</a
> (respond before
2012-
04-
27).
3950 It proposes to require video conferencing standards including
3951 specifications with RAND terms.
</p
>
3956 <title>Stopmotion for making stop motion animations on Linux - reloaded
</title>
3957 <link>http://people.skolelinux.org/pere/blog/Stopmotion_for_making_stop_motion_animations_on_Linux___reloaded.html
</link>
3958 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Stopmotion_for_making_stop_motion_animations_on_Linux___reloaded.html
</guid>
3959 <pubDate>Sat,
3 Mar
2012 12:
50:
00 +
0100</pubDate>
3960 <description><p
>Many years ago, the
<a href=
"http://www.skolelinux.org/
">Skolelinux
3961 / Debian Edu project
</a
> initiated a student project to create a tool
3962 for making stop motion movies. The proposal came from a teacher
3963 needing such tool on Skolelinux. The project, called
"stopmotion
",
3964 was manned by two extraordinary students and won a school award and a
3965 national aware with this great project. The project was initiated and
3966 mentored by Herman Robak, and manned by the students Bjørn Erik Nilsen
3967 and Fredrik Berg Kjølstad. They got in touch with people at Aardman
3968 Animation studio and received feedback on how professionals would like
3969 such stopmotion tool to work, and the end result was and is used by
3970 animators around the globe. But as is usual after studying, both got
3971 jobs and went elsewhere, and did not have time to properly tend to the
3972 project, and it has been lingering for a few years now. Until last
3975 <p
>Last year some of the users got together with Herman, and moved the
3976 project to Sourceforge and in effect restarted the project under a new
3978 <a href=
"http://sourceforge.net/projects/linuxstopmotion/
">linuxstopmotion
</a
>.
3979 The name change was done to make it possible to find the project using
3980 Internet search engines (try to search for
'stopmotion
' to see what I
3981 mean). I
've been following
3982 <a href=
"https://lists.sourceforge.net/lists/listinfo/linuxstopmotion-community
">the
3983 mailing list
</a
> and the improvement already in place and planned for
3984 the future is encouraging. If you want to make stop motion movies.
3985 Check it out. :)
</p
>
3990 <title>Hvordan enkelt laste ned filmer fra NRK
</title>
3991 <link>http://people.skolelinux.org/pere/blog/Hvordan_enkelt_laste_ned_filmer_fra_NRK.html
</link>
3992 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Hvordan_enkelt_laste_ned_filmer_fra_NRK.html
</guid>
3993 <pubDate>Sat,
5 Nov
2011 15:
20:
00 +
0100</pubDate>
3994 <description><p
>Ofte har jeg lyst til å laste ned et innslag fra NRKs nettsted for
3995 å se det senere når jeg ikke er på nett, eller for å ha det
3996 tilgjengelig når jeg en gang i fremtiden ønsker å referere til
3997 innslaget selv om NRK har fjernet det fra sine nettsider. I dag fant
3998 jeg et lite script som fikser jobben.
</p
>
4000 <p
>Scriptet er laget av Jan Henning Thorsen og tilgjengelig fra
4001 <a href=
"http://jhthorsen.github.com/snippets/nrk-downloader/
">github
</a
>,
4002 og gjør det veldig enkelt å laste ned. Kjør
<tt
>nrk-downloader.sh
4003 http://www1.nrk.no/nett-tv/klipp/
582810</tt
> for å hente ned et enkelt
4004 innslag eller
<tt
>nrk-downloader.sh
4005 http://www1.nrk.no/nett-tv/kategori/
3521</tt
> for å laste ned alle
4006 episodene i en serie.
</p
>
4008 <p
>Det er ikke rakettforskning å laste ned NRK-
"strømmer
", og
4009 tidligere gjorde jeg dette manuelt med mplayer. Scriptet til
4010 Hr. Thorsen gjør det raskere og enklere for meg, men jeg vil ikke si
4011 at det er en revolusjonerende løsning. Jeg mener jo fortsatt at
4012 påstanden fra NRKs ansatte om at det er
4013 <a href=
"http://people.skolelinux.org/pere/blog/Best___ikke_fortelle_noen_at_streaming_er_nedlasting___.html
">vesensforskjellig
4014 å legge tilgjengelig for nedlasting og for streaming
</a
> er
4015 meningsløs.
</p
>
4020 <title>Ripping problematic DVDs using dvdbackup and genisoimage
</title>
4021 <link>http://people.skolelinux.org/pere/blog/Ripping_problematic_DVDs_using_dvdbackup_and_genisoimage.html
</link>
4022 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Ripping_problematic_DVDs_using_dvdbackup_and_genisoimage.html
</guid>
4023 <pubDate>Sat,
17 Sep
2011 20:
20:
00 +
0200</pubDate>
4024 <description><p
>For convenience, I want to store copies of all my DVDs on my file
4025 server. It allow me to save shelf space flat while still having my
4026 movie collection easily available. It also make it possible to let
4027 the kids see their favourite DVDs without wearing the physical copies
4028 down. I prefer to store the DVDs as ISOs to keep the DVD menu and
4029 subtitle options intact. It also ensure that the entire film is one
4030 file on the disk. As this is for personal use, the ripping is
4031 perfectly legal here in Norway.
</p
>
4033 <p
>Normally I rip the DVDs using dd like this:
</p
>
4035 <blockquote
><pre
>
4037 # apt-get install lsdvd
4038 title=$(lsdvd
2>/dev/null|awk
'/Disc Title: / {print $
3}
')
4039 dd if=/dev/dvd of=/storage/dvds/$title.iso bs=
1M
4040 </pre
></blockquote
>
4042 <p
>But some DVDs give a input/output error when I read it, and I have
4043 been looking for a better alternative. I have no idea why this I/O
4044 error occur, but suspect my DVD drive, the Linux kernel driver or
4045 something fishy with the DVDs in question. Or perhaps all three.
</p
>
4047 <p
>Anyway, I believe I found a solution today using dvdbackup and
4048 genisoimage. This script gave me a working ISO for a problematic
4049 movie by first extracting the DVD file system and then re-packing it
4052 <blockquote
><pre
>
4054 # apt-get install lsdvd dvdbackup genisoimage
4056 tmpdir=/storage/dvds/
4057 title=$(lsdvd
2>/dev/null|awk
'/Disc Title: / {print $
3}
')
4058 dvdbackup -i /dev/dvd -M -o $tmpdir -n$title
4059 genisoimage -dvd-video -o $tmpdir/$title.iso $tmpdir/$title
4060 rm -rf $tmpdir/$title
4061 </pre
></blockquote
>
4063 <p
>Anyone know of a better way available in Debian/Squeeze?
</p
>
4065 <p
>Update
2011-
09-
18: I got a tip from Konstantin Khomoutov about the
4066 readom program from the wodim package. It is specially written to
4067 read optical media, and is called like this:
<tt
>readom dev=/dev/dvd
4068 f=image.iso
</tt
>. It got
6 GB along with the problematic Cars DVD
4069 before it failed, and failed right away with a Timmy Time DVD.
</p
>
4071 <p
>Next, I got a tip from Bastian Blank about
4072 <a href=
"http://bblank.thinkmo.de/blog/new-software-python-dvdvideo
">his
4073 program python-dvdvideo
</a
>, which seem to be just what I am looking
4074 for. Tested it with my problematic Timmy Time DVD, and it succeeded
4075 creating a ISO image. The git source built and installed just fine in
4076 Squeeze, so I guess this will be my tool of choice in the future.
</p
>
4081 <title>Gnash enteres Google Summer of Code
2011</title>
4082 <link>http://people.skolelinux.org/pere/blog/Gnash_enteres_Google_Summer_of_Code_2011.html
</link>
4083 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Gnash_enteres_Google_Summer_of_Code_2011.html
</guid>
4084 <pubDate>Wed,
6 Apr
2011 09:
00:
00 +
0200</pubDate>
4085 <description><p
><a href=
"http://www.getgnash.org/
">The Gnash project
</a
> is still
4086 the most promising solution for a Free Software Flash implementation.
4087 A few days ago the project
4088 <a href=
"http://lists.gnu.org/archive/html/gnash-dev/
2011-
04/msg00011.html
">announced
</a
>
4089 that it will participate in Google Summer of Code. I hope many
4090 students apply, and that some of them succeed in getting AVM2 support
4091 into Gnash.
</p
>
4096 <title>The video format most supported in web browsers?
</title>
4097 <link>http://people.skolelinux.org/pere/blog/The_video_format_most_supported_in_web_browsers_.html
</link>
4098 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/The_video_format_most_supported_in_web_browsers_.html
</guid>
4099 <pubDate>Sun,
16 Jan
2011 00:
20:
00 +
0100</pubDate>
4100 <description><p
>The video format struggle on the web continues, and the three
4101 contenders seem to be Ogg Theora, H
.264 and WebM. Most video sites
4102 seem to use H
.264, while others use Ogg Theora. Interestingly enough,
4103 the comments I see give me the feeling that a lot of people believe
4104 H
.264 is the most supported video format in browsers, but according to
4105 the Wikipedia article on
4106 <a href=
"http://en.wikipedia.org/wiki/HTML5_video
">HTML5 video
</a
>,
4107 this is not true. Check out the nice table of supprted formats in
4108 different browsers there. The format supported by most browsers is
4109 Ogg Theora, supported by released versions of Mozilla Firefox, Google
4110 Chrome, Chromium, Opera, Konqueror, Epiphany, Origyn Web Browser and
4111 BOLT browser, while not supported by Internet Explorer nor Safari.
4112 The runner up is WebM supported by released versions of Google Chrome
4113 Chromium Opera and Origyn Web Browser, and test versions of Mozilla
4114 Firefox. H
.264 is supported by released versions of Safari, Origyn
4115 Web Browser and BOLT browser, and the test version of Internet
4116 Explorer. Those wanting Ogg Theora support in Internet Explorer and
4117 Safari can install plugins to get it.
</p
>
4119 <p
>To me, the simple conclusion from this is that to reach most users
4120 without any extra software installed, one uses Ogg Theora with the
4121 HTML5 video tag. Of course to reach all those without a browser
4122 handling HTML5, one need fallback mechanisms. In
4123 <a href=
"http://www.nuug.no/
">NUUG
</a
>, we provide first fallback to a
4124 plugin capable of playing MPEG1 video, and those without such support
4125 we have a second fallback to the Cortado java applet playing Ogg
4126 Theora. This seem to work quite well, as can be seen in an
<a
4127 href=
"http://www.nuug.no/aktiviteter/
20110111-semantic-web/
">example
4128 from last week
</a
>.
</p
>
4130 <p
>The reason Ogg Theora is the most supported format, and H
.264 is
4131 the least supported is simple. Implementing and using H
.264
4132 require royalty payment to MPEG-LA, and the terms of use from MPEG-LA
4133 are incompatible with free software licensing. If you believed H
.264
4134 was without royalties and license terms, check out
4135 "<a href=
"http://webmink.com/essays/h-
264/
">H
.264 – Not The Kind Of
4136 Free That Matters
</a
>" by Simon Phipps.
</p
>
4138 <p
>A incomplete list of sites providing video in Ogg Theora is
4140 <a href=
"http://wiki.xiph.org/index.php/List_of_Theora_videos
">the
4141 Xiph.org wiki
</a
>, if you want to have a look. I
'm not aware of a
4142 similar list for WebM nor H
.264.
</p
>
4144 <p
>Update
2011-
01-
16 09:
40: A question from Tollef on IRC made me
4145 realise that I failed to make it clear enough this text is about the
4146 &lt;video
&gt; tag support in browsers and not the video support
4147 provided by external plugins like the Flash plugins.
</p
>
4152 <title>Chrome plan to drop H
.264 support for HTML5
&lt;video
&gt;
</title>
4153 <link>http://people.skolelinux.org/pere/blog/Chrome_plan_to_drop_H_264_support_for_HTML5__lt_video_gt_.html
</link>
4154 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Chrome_plan_to_drop_H_264_support_for_HTML5__lt_video_gt_.html
</guid>
4155 <pubDate>Wed,
12 Jan
2011 22:
10:
00 +
0100</pubDate>
4156 <description><p
>Today I discovered
4157 <a href=
"http://www.digi.no/
860070/google-dropper-h264-stotten-i-chrome
">via
4158 digi.no
</a
> that the Chrome developers, in a surprising announcement,
4159 <a href=
"http://blog.chromium.org/
2011/
01/html-video-codec-support-in-chrome.html
">yesterday
4160 announced
</a
> plans to drop H
.264 support for HTML5
&lt;video
&gt; in
4161 the browser. The argument used is that H
.264 is not a
"completely
4162 open
" codec technology. If you believe H
.264 was free for everyone
4163 to use, I recommend having a look at the essay
4164 "<a href=
"http://webmink.com/essays/h-
264/
">H
.264 – Not The Kind Of
4165 Free That Matters
</a
>". It is not free of cost for creators of video
4166 tools, nor those of us that want to publish on the Internet, and the
4167 terms provided by MPEG-LA excludes free software projects from
4168 licensing the patents needed for H
.264. Some background information
4169 on the Google announcement is available from
4170 <a href=
"http://www.osnews.com/story/
24243/Google_To_Drop_H264_Support_from_Chrome
">OSnews
</a
>.
4171 A good read. :)
</p
>
4173 <p
>Personally, I believe it is great that Google is taking a stand to
4174 promote equal terms for everyone when it comes to video publishing on
4175 the Internet. This can only be done by publishing using free and open
4176 standards, which is only possible if the web browsers provide support
4177 for these free and open standards. At the moment there seem to be two
4178 camps in the web browser world when it come to video support. Some
4179 browsers support H
.264, and others support
4180 <a href=
"http://www.theora.org/
">Ogg Theora
</a
> and
4181 <a href=
"http://www.webmproject.org/
">WebM
</a
>
4182 (
<a href=
"http://www.diracvideo.org/
">Dirac
</a
> is not really an option
4183 yet), forcing those of us that want to publish video on the Internet
4184 and which can not accept the terms of use presented by MPEG-LA for
4185 H
.264 to not reach all potential viewers.
4186 Wikipedia keep
<a href=
"http://en.wikipedia.org/wiki/HTML5_video
">an
4187 updated summary
</a
> of the current browser support.
</p
>
4189 <p
>Not surprising, several people would prefer Google to keep
4190 promoting H
.264, and John Gruber
4191 <a href=
"http://daringfireball.net/
2011/
01/simple_questions
">presents
4192 the mind set
</a
> of these people quite well. His rhetorical questions
4193 provoked a reply from Thom Holwerda with another set of questions
4194 <a href=
"http://www.osnews.com/story/
24245/
10_Questions_for_John_Gruber_Regarding_H_264_WebM
">presenting
4195 the issues with H
.264</a
>. Both are worth a read.
</p
>
4197 <p
>Some argue that if Google is dropping H
.264 because it isn
't free,
4198 they should also drop support for the Adobe Flash plugin. This
4199 argument was covered by Simon Phipps in
4200 <a href=
"http://blogs.computerworlduk.com/simon-says/
2011/
01/google-and-h264---far-from-hypocritical/index.htm
">todays
4201 blog post
</a
>, which I find to put the issue in context. To me it
4202 make perfect sense to drop native H
.264 support for HTML5 in the
4203 browser while still allowing plugins.
</p
>
4205 <p
>I suspect the reason this announcement make so many people protest,
4206 is that all the users and promoters of H
.264 suddenly get an uneasy
4207 feeling that they might be backing the wrong horse. A lot of TV
4208 broadcasters have been moving to H
.264 the last few years, and a lot
4209 of money has been invested in hardware based on the belief that they
4210 could use the same video format for both broadcasting and web
4211 publishing. Suddenly this belief is shaken.
</p
>
4213 <p
>An interesting question is why Google is doing this. While the
4214 presented argument might be true enough, I believe Google would only
4215 present the argument if the change make sense from a business
4216 perspective. One reason might be that they are currently negotiating
4217 with MPEG-LA over royalties or usage terms, and giving MPEG-LA the
4218 feeling that dropping H
.264 completely from Chroome, Youtube and
4219 Google Video would improve the negotiation position of Google.
4220 Another reason might be that Google want to save money by not having
4221 to pay the video tax to MPEG-LA at all, and thus want to move to a
4222 video format not requiring royalties at all. A third reason might be
4223 that the Chrome development team simply want to avoid the
4224 Chrome/Chromium split to get more help with the development of Chrome.
4225 I guess time will tell.
</p
>
4227 <p
>Update
2011-
01-
15: The Google Chrome team provided
4228 <a href=
"http://blog.chromium.org/
2011/
01/more-about-chrome-html-video-codec.html
">more
4229 background and information on the move
</a
> it a blog post yesterday.
</p
>
4234 <title>Is Ogg Theora a free and open standard?
</title>
4235 <link>http://people.skolelinux.org/pere/blog/Is_Ogg_Theora_a_free_and_open_standard_.html
</link>
4236 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Is_Ogg_Theora_a_free_and_open_standard_.html
</guid>
4237 <pubDate>Sat,
25 Dec
2010 20:
25:
00 +
0100</pubDate>
4238 <description><p
><a href=
"http://www.digistan.org/open-standard:definition
">The
4239 Digistan definition
</a
> of a free and open standard reads like this:
</p
>
4243 <p
>The Digital Standards Organization defines free and open standard
4244 as follows:
</p
>
4248 <li
>A free and open standard is immune to vendor capture at all stages
4249 in its life-cycle. Immunity from vendor capture makes it possible to
4250 freely use, improve upon, trust, and extend a standard over time.
</li
>
4252 <li
>The standard is adopted and will be maintained by a not-for-profit
4253 organisation, and its ongoing development occurs on the basis of an
4254 open decision-making procedure available to all interested
4257 <li
>The standard has been published and the standard specification
4258 document is available freely. It must be permissible to all to copy,
4259 distribute, and use it freely.
</li
>
4261 <li
>The patents possibly present on (parts of) the standard are made
4262 irrevocably available on a royalty-free basis.
</li
>
4264 <li
>There are no constraints on the re-use of the standard.
</li
>
4268 <p
>The economic outcome of a free and open standard, which can be
4269 measured, is that it enables perfect competition between suppliers of
4270 products based on the standard.
</p
>
4273 <p
>For a while now I have tried to figure out of Ogg Theora is a free
4274 and open standard according to this definition. Here is a short
4275 writeup of what I have been able to gather so far. I brought up the
4276 topic on the Xiph advocacy mailing list
4277 <a href=
"http://lists.xiph.org/pipermail/advocacy/
2009-July/
001632.html
">in
4278 July
2009</a
>, for those that want to see some background information.
4279 According to Ivo Emanuel Gonçalves and Monty Montgomery on that list
4280 the Ogg Theora specification fulfils the Digistan definition.
</p
>
4282 <p
><strong
>Free from vendor capture?
</strong
></p
>
4284 <p
>As far as I can see, there is no single vendor that can control the
4285 Ogg Theora specification. It can be argued that the
4286 <a href=
"http://www.xiph.org/
">Xiph foundation
</A
> is such vendor, but
4287 given that it is a non-profit foundation with the expressed goal
4288 making free and open protocols and standards available, it is not
4289 obvious that this is a real risk. One issue with the Xiph
4290 foundation is that its inner working (as in board member list, or who
4291 control the foundation) are not easily available on the web. I
've
4292 been unable to find out who is in the foundation board, and have not
4293 seen any accounting information documenting how money is handled nor
4294 where is is spent in the foundation. It is thus not obvious for an
4295 external observer who control The Xiph foundation, and for all I know
4296 it is possible for a single vendor to take control over the
4297 specification. But it seem unlikely.
</p
>
4299 <p
><strong
>Maintained by open not-for-profit organisation?
</strong
></p
>
4301 <p
>Assuming that the Xiph foundation is the organisation its web pages
4302 claim it to be, this point is fulfilled. If Xiph foundation is
4303 controlled by a single vendor, it isn
't, but I have not found any
4304 documentation indicating this.
</p
>
4306 <p
>According to
4307 <a href=
"http://media.hiof.no/diverse/fad/rapport_4.pdf
">a report
</a
>
4308 prepared by Audun Vaaler og Børre Ludvigsen for the Norwegian
4309 government, the Xiph foundation is a non-commercial organisation and
4310 the development process is open, transparent and non-Discrimatory.
4311 Until proven otherwise, I believe it make most sense to believe the
4312 report is correct.
</p
>
4314 <p
><strong
>Specification freely available?
</strong
></p
>
4316 <p
>The specification for the
<a href=
"http://www.xiph.org/ogg/doc/
">Ogg
4317 container format
</a
> and both the
4318 <a href=
"http://www.xiph.org/vorbis/doc/
">Vorbis
</a
> and
4319 <a href=
"http://theora.org/doc/
">Theora
</a
> codeces are available on
4320 the web. This are the terms in the Vorbis and Theora specification:
4324 Anyone may freely use and distribute the Ogg and [Vorbis/Theora]
4325 specifications, whether in private, public, or corporate
4326 capacity. However, the Xiph.Org Foundation and the Ogg project reserve
4327 the right to set the Ogg [Vorbis/Theora] specification and certify
4328 specification compliance.
4332 <p
>The Ogg container format is specified in IETF
4333 <a href=
"http://www.xiph.org/ogg/doc/rfc3533.txt
">RFC
3533</a
>, and
4334 this is the term:
<p
>
4338 <p
>This document and translations of it may be copied and furnished to
4339 others, and derivative works that comment on or otherwise explain it
4340 or assist in its implementation may be prepared, copied, published and
4341 distributed, in whole or in part, without restriction of any kind,
4342 provided that the above copyright notice and this paragraph are
4343 included on all such copies and derivative works. However, this
4344 document itself may not be modified in any way, such as by removing
4345 the copyright notice or references to the Internet Society or other
4346 Internet organizations, except as needed for the purpose of developing
4347 Internet standards in which case the procedures for copyrights defined
4348 in the Internet Standards process must be followed, or as required to
4349 translate it into languages other than English.
</p
>
4351 <p
>The limited permissions granted above are perpetual and will not be
4352 revoked by the Internet Society or its successors or assigns.
</p
>
4355 <p
>All these terms seem to allow unlimited distribution and use, an
4356 this term seem to be fulfilled. There might be a problem with the
4357 missing permission to distribute modified versions of the text, and
4358 thus reuse it in other specifications. Not quite sure if that is a
4359 requirement for the Digistan definition.
</p
>
4361 <p
><strong
>Royalty-free?
</strong
></p
>
4363 <p
>There are no known patent claims requiring royalties for the Ogg
4365 <a href=
"http://www.streamingmedia.com/Articles/ReadArticle.aspx?ArticleID=
65782">MPEG-LA
</a
>
4367 <a href=
"http://yro.slashdot.org/story/
10/
04/
30/
237238/Steve-Jobs-Hints-At-Theora-Lawsuit
">Steve
4368 Jobs
</a
> in Apple claim to know about some patent claims (submarine
4369 patents) against the Theora format, but no-one else seem to believe
4370 them. Both Opera Software and the Mozilla Foundation have looked into
4371 this and decided to implement Ogg Theora support in their browsers
4372 without paying any royalties. For now the claims from MPEG-LA and
4373 Steve Jobs seem more like FUD to scare people to use the H
.264 codec
4374 than any real problem with Ogg Theora.
</p
>
4376 <p
><strong
>No constraints on re-use?
</strong
></p
>
4378 <p
>I am not aware of any constraints on re-use.
</p
>
4380 <p
><strong
>Conclusion
</strong
></p
>
4382 <p
>3 of
5 requirements seem obviously fulfilled, and the remaining
2
4383 depend on the governing structure of the Xiph foundation. Given the
4384 background report used by the Norwegian government, I believe it is
4385 safe to assume the last two requirements are fulfilled too, but it
4386 would be nice if the Xiph foundation web site made it easier to verify
4389 <p
>It would be nice to see other analysis of other specifications to
4390 see if they are free and open standards.
</p
>
4395 <title>Why isn
't Debian Edu using VLC?
</title>
4396 <link>http://people.skolelinux.org/pere/blog/Why_isn_t_Debian_Edu_using_VLC_.html
</link>
4397 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Why_isn_t_Debian_Edu_using_VLC_.html
</guid>
4398 <pubDate>Sat,
27 Nov
2010 11:
30:
00 +
0100</pubDate>
4399 <description><p
>In the latest issue of Linux Journal, the readers choices were
4400 presented, and the winner among the multimedia player were VLC.
4401 Personally, I like VLC, and it is my player of choice when I first try
4402 to play a video file or stream. Only if VLC fail will I drag out
4403 gmplayer to see if it can do better. The reason is mostly the failure
4404 model and trust. When VLC fail, it normally pop up a error message
4405 reporting the problem. When mplayer fail, it normally segfault or
4406 just hangs. The latter failure mode drain my trust in the program.
<p
>
4408 <p
>But even if VLC is my player of choice, we have choosen to use
4409 mplayer in
<a href=
"http://www.skolelinux.org/
">Debian
4410 Edu/Skolelinux
</a
>. The reason is simple. We need a good browser
4411 plugin to play web videos seamlessly, and the VLC browser plugin is
4412 not very good. For example, it lack in-line control buttons, so there
4413 is no way for the user to pause the video. Also, when I
4414 <a href=
"http://wiki.debian.org/DebianEdu/BrowserMultimedia
">last
4415 tested the browser plugins
</a
> available in Debian, the VLC plugin
4416 failed on several video pages where mplayer based plugins worked. If
4417 the browser plugin for VLC was as good as the gecko-mediaplayer
4418 package (which uses mplayer), we would switch.
</P
>
4420 <p
>While VLC is a good player, its user interface is slightly
4421 annoying. The most annoying feature is its inconsistent use of
4422 keyboard shortcuts. When the player is in full screen mode, its
4423 shortcuts are different from when it is playing the video in a window.
4424 For example, space only work as pause when in full screen mode. I
4425 wish it had consisten shortcuts and that space also would work when in
4426 window mode. Another nice shortcut in gmplayer is [enter] to restart
4427 the current video. It is very nice when playing short videos from the
4428 web and want to restart it when new people arrive to have a look at
4429 what is going on.
</p
>
4434 <title>Best å ikke fortelle noen at streaming er nedlasting...
</title>
4435 <link>http://people.skolelinux.org/pere/blog/Best___ikke_fortelle_noen_at_streaming_er_nedlasting___.html
</link>
4436 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Best___ikke_fortelle_noen_at_streaming_er_nedlasting___.html
</guid>
4437 <pubDate>Sat,
30 Oct
2010 11:
20:
00 +
0200</pubDate>
4438 <description><p
>I dag la jeg inn en kommentar på en sak hos NRKBeta
4439 <a href=
"http://nrkbeta.no/
2010/
10/
27/bakom-blindpassasjer-del-
1/
">om
4440 hvordan TV-serien Blindpassasjer ble laget
</a
> i forbindelse med at
4441 filmene NRK la ut ikke var tilgjengelig i et
4442 <a href=
"http://www.digistan.org/open-standard:definition
">fritt og
4443 åpent format
</a
>. Dette var det jeg skrev publiserte der
07:
39.
</p
>
4445 <p
><blockquote
>
4446 <p
>"Vi fikk en kommentar rundt måten streamet innhold er beskyttet fra
4447 nedlasting. Mange av oss som kan mer enn gjennomsnittet om systemer
4448 som dette, vet at det stort sett er mulig å lure ut ting med den
4449 nødvendige forkunnskapen.
"</p
>
4451 <p
>Haha. Å streame innhold er det samme som å laste ned innhold, så å
4452 beskytte en stream mot nedlasting er ikke mulig. Å skrive noe slikt
4453 er å forlede leseren.
</p
>
4455 <p
>Med den bakgrunn blir forklaringen om at noen rettighetshavere kun
4456 vil tillate streaming men ikke nedlasting meningsløs.
</p
>
4458 <p
>Anbefaler forresten å lese
4459 <a href=
"http://blogs.computerworlduk.com/simon-says/
2010/
10/drm-is-toxic-to-culture/index.htm
">http://blogs.computerworlduk.com/simon-says/
2010/
10/drm-is-toxic-to-culture/index.htm
</a
>
4460 om hva som ville være konsekvensen hvis digitale avspillingssperrer
4461 (DRM) fungerte. Det gjør de naturligvis ikke teknisk - det er jo
4462 derfor de må ha totalitære juridiske beskyttelsesmekanismer på plass,
4463 men det er skremmende hva samfunnet tillater og NRK er med på å bygge
4464 opp under.
</p
>
4465 </blockquote
></p
>
4467 <p
>Ca.
20 minutter senere får jeg følgende epost fra Anders Hofseth i
4470 <p
><blockquote
>
4471 <p
>From: Anders Hofseth
&lt;XXX@gmail.com
>
4472 <br
>To:
"pere@hungry.com
" &lt;pere@hungry.com
>
4473 <br
>Cc: Eirik Solheim
&lt;XXX@gmail.com
>, Jon Ståle Carlsen
&lt;XXX@gmail.com
>, Henrik Lied
&lt;XXX@gmail.com
>
4474 <br
>Subject: Re: [NRKbeta] Kommentar:
"Bakom Blindpassasjer: del
1"
4475 <br
>Date: Sat,
30 Oct
2010 07:
58:
44 +
0200</p
>
4477 <p
>Hei Petter.
4478 <br
>Det du forsøker dra igang er egentlig en interessant diskusjon,
4479 men om vi skal kjøre den i kommentarfeltet her, vil vi kunne bli bedt
4480 om å fjerne blindpassasjer fra nett- tv og det vil heller ikke bli
4481 særlig lett å klarere ut noe annet arkivmateriale på lang tid.
</p
>
4483 <p
>Dette er en situasjon NRKbeta ikke ønsker, så kommentaren er
4484 fjernet og den delen av diskusjonen er avsluttet på nrkbeta, vi antar
4485 konsekvensene vi beskriver ikke er noe du ønsker heller...
</p
>
4487 <p
>Med hilsen,
4488 <br
>-anders
</p
>
4490 <p
>Ring meg om noe er uklart:
95XXXXXXX
</p
>
4491 </blockquote
></p
>
4493 <p
>Ble så fascinert over denne holdningen, at jeg forfattet og sendte
4494 over følgende svar. I og med at debatten er fjernet fra NRK Betas
4495 kommentarfelt, så velger jeg å publisere her på bloggen min i stedet.
4496 Har fjernet epostadresser og telefonnummer til de involverte, for å
4497 unngå at de tiltrekker seg uønskede direkte kontaktforsøk.
</p
>
4499 <p
><blockquote
>
4500 <p
>From: Petter Reinholdtsen
&lt;pere@hungry.com
>
4501 <br
>To: Anders Hofseth
&lt;XXX@gmail.com
>
4502 <br
>Cc: Eirik Solheim
&lt;XXX@gmail.com
>,
4503 <br
> Jon Ståle Carlsen
&lt;XXX@gmail.com
>,
4504 <br
> Henrik Lied
&lt;XXX@gmail.com
>
4505 <br
>Subject: Re: [NRKbeta] Kommentar:
"Bakom Blindpassasjer: del
1"
4506 <br
>Date: Sat,
30 Oct
2010 08:
24:
34 +
0200</p
>
4508 <p
>[Anders Hofseth]
4509 <br
>> Hei Petter.
</p
>
4511 <p
>Hei.
</p
>
4513 <p
>> Det du forsøker dra igang er egentlig en interessant diskusjon, men
4514 <br
>> om vi skal kjøre den i kommentarfeltet her, vil vi kunne bli bedt om
4515 <br
>> å fjerne blindpassasjer fra nett- tv og det vil heller ikke bli
4516 <br
>> særlig lett å klarere ut noe annet arkivmateriale på lang tid.
</p
>
4518 <p
>Godt å se at du er enig i at dette er en interessant diskusjon. Den
4519 vil nok fortsette en stund til. :)
</p
>
4521 <p
>Må innrømme at jeg synes det er merkelig å lese at dere i NRK med
4522 vitende og vilje ønsker å forlede rettighetshaverne for å kunne
4523 fortsette å legge ut arkivmateriale.
</p
>
4525 <p
>Kommentarer og diskusjoner i bloggene til NRK Beta påvirker jo ikke
4526 faktum, som er at streaming er det samme som nedlasting, og at innhold
4527 som er lagt ut på nett kan lagres lokalt for avspilling når en ønsker
4530 <p
>Det du sier er jo at klarering av arkivmateriale for publisering på
4531 web krever at en holder faktum skjult fra debattfeltet på NRKBeta.
4532 Det er ikke et argument som holder vann. :)
</p
>
4534 <p
>> Dette er en situasjon NRKbeta ikke ønsker, så kommentaren er fjernet
4535 <br
>> og den delen av diskusjonen er avsluttet på nrkbeta, vi antar
4536 <br
>> konsekvensene vi beskriver ikke er noe du ønsker heller...
</p
>
4538 <p
>Personlig ønsker jeg at NRK skal slutte å stikke hodet i sanden og
4539 heller være åpne på hvordan virkeligheten fungerer, samt ta opp kampen
4540 mot de som vil låse kulturen inne. Jeg synes det er en skam at NRK
4541 godtar å forlede publikum. Ville heller at NRK krever at innhold som
4542 skal sendes skal være uten bruksbegresninger og kan publiseres i
4543 formater som heller ikke har bruksbegresninger (bruksbegresningene til
4544 H
.264 burde få varselbjellene i NRK til å ringe).
</p
>
4546 <p
>At NRK er med på DRM-tåkeleggingen og at det kommer feilaktive
4547 påstander om at
"streaming beskytter mot nedlasting
" som bare er egnet
4548 til å bygge opp om en myte som er skadelig for samfunnet som helhet.
</p
>
4550 <p
>Anbefaler
&lt;URL:
<a href=
"http://webmink.com/
2010/
09/
03/h-
264-and-foss/
">http://webmink.com/
2010/
09/
03/h-
264-and-foss/
</a
>> og en
4552 &lt;URL:
<a href=
"http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html
">http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html
</a
> >.
4553 for å se hva slags bruksbegresninger H
.264 innebærer.
</p
>
4555 <p
>Hvis dette innebærer at NRK må være åpne med at arkivmaterialet ikke
4556 kan brukes før rettighetshaverene også innser at de er med på å skade
4557 samfunnets kultur og kollektive hukommelse, så får en i hvert fall
4558 synliggjort konsekvensene og antagelig mer flammer på en debatt som er
4559 langt på overtid.
</p
>
4561 <p
>> Ring meg om noe er uklart: XXX
</p
>
4563 <p
>Intet uklart, men ikke imponert over måten dere håndterer debatten på.
4564 Hadde du i stedet kommet med et tilsvar i kommentarfeltet der en
4565 gjorde det klart at blindpassasjer-blogpostingen ikke var riktig sted
4566 for videre diskusjon hadde dere i mine øyne kommet fra det med
4567 ryggraden på plass.
</p
>
4569 <p
>PS: Interessant å se at NRK-ansatte ikke bruker NRK-epostadresser.
</p
>
4571 <p
>Som en liten avslutning, her er noen litt morsomme innslag om temaet.
4572 &lt;URL:
<a href=
"http://www.archive.org/details/CopyingIsNotTheft
">http://www.archive.org/details/CopyingIsNotTheft
</a
> > og
4573 &lt;URL:
<a href=
"http://patentabsurdity.com/
">http://patentabsurdity.com/
</a
> > hadde vært noe å kringkaste på
4576 <p
>Vennlig hilsen,
4578 <br
>Petter Reinholdtsen
</p
>
4583 <title>Pledge for funding to the Gnash project to get AVM2 support
</title>
4584 <link>http://people.skolelinux.org/pere/blog/Pledge_for_funding_to_the_Gnash_project_to_get_AVM2_support.html
</link>
4585 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Pledge_for_funding_to_the_Gnash_project_to_get_AVM2_support.html
</guid>
4586 <pubDate>Tue,
19 Oct
2010 14:
45:
00 +
0200</pubDate>
4587 <description><p
><a href=
"http://www.getgnash.org/
">The Gnash project
</a
> is the
4588 most promising solution for a Free Software Flash implementation. It
4589 has done great so far, but there is still far to go, and recently its
4590 funding has dried up. I believe AVM2 support in Gnash is vital to the
4591 continued progress of the project, as more and more sites show up with
4592 AVM2 flash files.
</p
>
4594 <p
>To try to get funding for developing such support, I have started
4595 <a href=
"http://www.pledgebank.com/gnash-avm2
">a pledge
</a
> with the
4596 following text:
</P
>
4598 <p
><blockquote
>
4600 <p
>"I will pay
100$ to the Gnash project to develop AVM2 support but
4601 only if
10 other people will do the same.
"</p
>
4603 <p
>- Petter Reinholdtsen, free software developer
</p
>
4605 <p
>Deadline to sign up by:
24th December
2010</p
>
4607 <p
>The Gnash project need to get support for the new Flash file
4608 format AVM2 to work with a lot of sites using Flash on the
4609 web. Gnash already work with a lot of Flash sites using the old AVM1
4610 format, but more and more sites are using the AVM2 format these
4611 days. The project web page is available from
4612 http://www.getgnash.org/ . Gnash is a free software implementation
4613 of Adobe Flash, allowing those of us that do not accept the terms of
4614 the Adobe Flash license to get access to Flash sites.
</p
>
4616 <p
>The project need funding to get developers to put aside enough
4617 time to develop the AVM2 support, and this pledge is my way to try
4618 to get this to happen.
</p
>
4620 <p
>The project accept donations via the OpenMediaNow foundation,
4621 <a href=
"http://www.openmedianow.org/?q=node/
32">http://www.openmedianow.org/?q=node/
32</a
> .
</p
>
4623 </blockquote
></p
>
4625 <p
>I hope you will support this effort too. I hope more than
10
4626 people will participate to make this happen. The more money the
4627 project gets, the more features it can develop using these funds.
4633 <title>TED talks på norsk og NUUG-foredrag - frivillige trengs til teksting
</title>
4634 <link>http://people.skolelinux.org/pere/blog/TED_talks_p__norsk_og_NUUG_foredrag___frivillige_trengs_til_teksting.html
</link>
4635 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/TED_talks_p__norsk_og_NUUG_foredrag___frivillige_trengs_til_teksting.html
</guid>
4636 <pubDate>Fri,
1 Oct
2010 11:
00:
00 +
0200</pubDate>
4637 <description><p
>Frikanalen og NUUG jobber for å få
<a href=
"http://www.ted.com
">TED
4638 talks
</a
> kringkastet på
4639 <a href=
"http://www.frikanalen.no/
">Frikanalen
</a
>, for å gi et mer
4640 variert innhold på kanalen som i dag sendes på RiksTV, Lyse og
4641 Uninett. Før innslagene kan sendes må det lages norske undertekster,
4642 og dette her trengs det frivillige. Det er hundrevis av innslag, men
4644 <a href=
"http://www.ted.com/talks/james_randi.html
">James Randi
</a
> og
4645 <a href=
"http://www.ted.com/talks/lang/eng/michael_specter_the_danger_of_science_denial.html
">Michael
4646 Specter
</a
>. Hvis du har litt tid til overs, bli med på å oversette
4647 TED-foredragene til norsk og få på plass undertekster. TED har
4648 allerede opplegg på plass for å håndtere oversettelser og
4649 undertekster. Registrer deg på
4650 <a href=
"http://www.ted.com/translate/forted
">sidene til TED
</a
> i
4653 <p
>NUUG holder også på å få alle opptakene fra NUUG-presentasjonene
4654 <a href=
"http://www.nuug.no/pub/video/frikanalen/frontpage.cgi?organization=NUUG
">publisert
4655 på Frikanalen
</a
>. Foredrag på engelsk må også her tekstes og
4656 oversettes. Ta kontakt med video@nuug.no hvis du vil bidra med
4657 teksting og oversetting. Arbeidet koordineres på epostlisten og på
4658 IRC (#nuug-video på irc.oftc.org), og
<a
4659 href=
"http://wiki.nuug.no/grupper/video/frikanalen
">en wikiside
</a
>
4660 brukes som notatblokk for arbeidet. Mest lovende verktøy for dette
4661 ser i dag ut til å være
4662 <a href=
"http://universalsubtitles.org/
">Universal Subtitles
</a
>, som
4663 lar en bidra med teksting via en nettleser.
</p
>
4668 <title>Terms of use for video produced by a Canon IXUS
130 digital camera
</title>
4669 <link>http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html
</link>
4670 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html
</guid>
4671 <pubDate>Thu,
9 Sep
2010 23:
55:
00 +
0200</pubDate>
4672 <description><p
>A few days ago I had the mixed pleasure of bying a new digital
4673 camera, a Canon IXUS
130. It was instructive and very disturbing to
4674 be able to verify that also this camera producer have the nerve to
4675 specify how I can or can not use the videos produced with the camera.
4676 Even thought I was aware of the issue, the options with new cameras
4677 are limited and I ended up bying the camera anyway. What is the
4678 problem, you might ask? It is software patents, MPEG-
4, H
.264 and the
4679 MPEG-LA that is the problem, and our right to record our experiences
4680 without asking for permissions that is at risk.
4682 <p
>On page
27 of the Danish instruction manual, this section is
4686 <p
>This product is licensed under AT
&T patents for the MPEG-
4 standard
4687 and may be used for encoding MPEG-
4 compliant video and/or decoding
4688 MPEG-
4 compliant video that was encoded only (
1) for a personal and
4689 non-commercial purpose or (
2) by a video provider licensed under the
4690 AT
&T patents to provide MPEG-
4 compliant video.
</p
>
4692 <p
>No license is granted or implied for any other use for MPEG-
4
4696 <p
>In short, the camera producer have chosen to use technology
4697 (MPEG-
4/H
.264) that is only provided if I used it for personal and
4698 non-commercial purposes, or ask for permission from the organisations
4699 holding the knowledge monopoly (patent) for technology used.
</p
>
4701 <p
>This issue has been brewing for a while, and I recommend you to
4703 "<a href=
"http://www.osnews.com/story/
23236/Why_Our_Civilization_s_Video_Art_and_Culture_is_Threatened_by_the_MPEG-LA
">Why
4704 Our Civilization
's Video Art and Culture is Threatened by the
4705 MPEG-LA
</a
>" by Eugenia Loli-Queru and
4706 "<a href=
"http://webmink.com/
2010/
09/
03/h-
264-and-foss/
">H
.264 Is Not
4707 The Sort Of Free That Matters
</a
>" by Simon Phipps to learn more about
4708 the issue. The solution is to support the
4709 <a href=
"http://www.digistan.org/open-standard:definition
">free and
4710 open standards
</a
> for video, like
<a href=
"http://www.theora.org/
">Ogg
4711 Theora
</a
>, and avoid MPEG-
4 and H
.264 if you can.
</p
>
4716 <title>Some notes on Flash in Debian and Debian Edu
</title>
4717 <link>http://people.skolelinux.org/pere/blog/Some_notes_on_Flash_in_Debian_and_Debian_Edu.html
</link>
4718 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Some_notes_on_Flash_in_Debian_and_Debian_Edu.html
</guid>
4719 <pubDate>Sat,
4 Sep
2010 10:
10:
00 +
0200</pubDate>
4720 <description><p
>In the
<a href=
"http://popcon.debian.org/unknown/by_vote
">Debian
4721 popularity-contest numbers
</a
>, the adobe-flashplugin package the
4722 second most popular used package that is missing in Debian. The sixth
4723 most popular is flashplayer-mozilla. This is a clear indication that
4724 working flash is important for Debian users. Around
10 percent of the
4725 users submitting data to popcon.debian.org have this package
4726 installed.
</p
>
4728 <p
>In the report written by Lars Risan in August
2008
4729 («
<a href=
"http://wiki.skolelinux.no/Dokumentasjon/Rapporter?action=AttachFile
&do=view
&target=Skolelinux_i_bruk_rapport_1.0.pdf
">Skolelinux
4730 i bruk – Rapport for Hurum kommune, Universitetet i Agder og
4731 stiftelsen SLX Debian Labs
</a
>»), one of the most important problems
4732 schools experienced with
<a href=
"http://www.skolelinux.org/
">Debian
4733 Edu/Skolelinux
</a
> was the lack of working Flash. A lot of educational
4734 web sites require Flash to work, and lacking working Flash support in
4735 the web browser and the problems with installing it was perceived as a
4736 good reason to stay with Windows.
</p
>
4738 <p
>I once saw a funny and sad comment in a web forum, where Linux was
4739 said to be the retarded cousin that did not really understand
4740 everything you told him but could work fairly well. This was a
4741 comment regarding the problems Linux have with proprietary formats and
4742 non-standard web pages, and is sad because it exposes a fairly common
4743 understanding of whose fault it is if web pages that only work in for
4744 example Internet Explorer
6 fail to work on Firefox, and funny because
4745 it explain very well how annoying it is for users when Linux
4746 distributions do not work with the documents they receive or the web
4747 pages they want to visit.
</p
>
4749 <p
>This is part of the reason why I believe it is important for Debian
4750 and Debian Edu to have a well working Flash implementation in the
4751 distribution, to get at least popular sites as Youtube and Google
4752 Video to working out of the box. For Squeeze, Debian have the chance
4753 to include the latest version of Gnash that will make this happen, as
4754 the new release
0.8.8 was published a few weeks ago and is resting in
4755 unstable. The new version work with more sites that version
0.8.7.
4756 The Gnash maintainers have asked for a freeze exception, but the
4757 release team have not had time to reply to it yet. I hope they agree
4758 with me that Flash is important for the Debian desktop users, and thus
4759 accept the new package into Squeeze.
</p
>
4764 <title>Første NUUG-fordrag sendt på TV
</title>
4765 <link>http://people.skolelinux.org/pere/blog/F_rste_NUUG_fordrag_sendt_p__TV.html
</link>
4766 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/F_rste_NUUG_fordrag_sendt_p__TV.html
</guid>
4767 <pubDate>Tue,
8 Dec
2009 12:
00:
00 +
0100</pubDate>
4768 <description><p
>Endelig har NUUG klart å få kringkastet ut et av sine fordrag på
4770 <a href=
"http://www.nuug.no/aktiviteter/
20090512-bifrost/
">utskriftsløsningen
4771 Biforst
</a
> var først ute, pga. at det var det nyeste foredraget som
4772 var holdt på norsk, og dermed slapp vi å finne ut av hvordan
4773 teksting av video skulle gjøres.
</p
>
4775 <p
>NUUG har vært involvert i
4776 <a href=
"http://www.frikanalen.no/
">Frikanalen
</a
> en stund nå, for å
4777 forsøke å få ut budskapet vårt også på TV, og dette første foredraget
4778 er en sped start på det vi har planlagt.
</p
>
4780 <p
>NUUGs første foredrag sendes ut via frikanelen på digitalt
4781 bakkenett, og alle abonnenter av riks-TV skal dermed ha mulighet til å
4782 ta inn sendingen. Slå på TVen
5/
12 16:
05 (for sent),
12/
12 14:
00,
4783 19/
12 16:
00,
24/
12 15:
37 eller
26/
12 16:
11 i år, så skal du få se
4784 meg, Tollef og alle andre de som deltok på møtet på TV.
<p
>
4789 <title>Regjerningens oppsummering av høringen om standardkatalogen versjon
2</title>
4790 <link>http://people.skolelinux.org/pere/blog/Regjerningens_oppsummering_av_h_ringen_om_standardkatalogen_versjon_2.html
</link>
4791 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Regjerningens_oppsummering_av_h_ringen_om_standardkatalogen_versjon_2.html
</guid>
4792 <pubDate>Thu,
9 Jul
2009 14:
40:
00 +
0200</pubDate>
4793 <description><p
>For å forstå mer om hvorfor standardkatalogens versjon
2 ble som
4794 den ble, har jeg bedt om kopi fra FAD av dokumentene som ble lagt frem
4795 for regjeringen da de tok sin avgjørelse. De er nå lagt ut på NUUGs
4796 wiki, direkte tilgjengelig via
"<a
4797 href=
"http://wiki.nuug.no/uttalelser/
200901-standardkatalog-v2?action=AttachFile
&do=get
&target=kongelig-resolusjon.pdf
">Referansekatalogen
4798 v2.0 - Oppsummering av høring
</a
>" og
"<a
4799 href=
"http://wiki.nuug.no/uttalelser/
200901-standardkatalog-v2?action=AttachFile
&do=get
&target=kongelig-resolusjon-katalogutkast.pdf
">Referansekatalog
4800 for IT-standarder i offentlig sektor Versjon
2.0, dd.mm.åååå -
4801 UTKAST
</a
>".
</p
>
4803 <p
>Det er tre ting jeg merker meg i oppsummeringen fra
4804 høringsuttalelsen da jeg skummet igjennom den. Det første er at
4805 forståelsen av hvordan programvarepatenter påvirker fri
4806 programvareutvikling også i Norge når en argumenterer med at
4807 royalty-betaling ikke er et relevant problem i Norge. Det andre er at
4808 FAD ikke har en prinsipiell forståelse av verdien av en enkelt
4809 standard innenfor hvert område. Det siste er at påstander i
4810 høringsuttalelsene ikke blir etterprøvd (f.eks. påstanden fra
4811 Microsoft om hvordan Ogg blir standardisert og påstanden fra
4812 politidirektoratet om patentproblemer i Theora).
</p
>
4817 <title>Regjerningen forlater prinsippet om ingen royalty-betaling i standardkatalogen versjon
2</title>
4818 <link>http://people.skolelinux.org/pere/blog/Regjerningen_forlater_prinsippet_om_ingen_royalty_betaling_i_standardkatalogen_versjon_2.html
</link>
4819 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Regjerningen_forlater_prinsippet_om_ingen_royalty_betaling_i_standardkatalogen_versjon_2.html
</guid>
4820 <pubDate>Mon,
6 Jul
2009 21:
00:
00 +
0200</pubDate>
4821 <description><p
>Jeg ble glad da regjeringen
4822 <a href=
"http://www.digi.no/
817635/her-er-statens-nye-it-standarder
">annonserte
</a
>
4824 <a href=
"http://www.regjeringen.no/upload/FAD/Vedlegg/IKT-politikk/Referansekatalogen_versjon2.pdf
">statens
4825 referansekatalog over standarder
</a
>, men trist da jeg leste hva som
4826 faktisk var vedtatt etter
4827 <a href=
"http://www.regjeringen.no/nb/dep/fad/dok/horinger/horingsdokumenter/
2009/horing---referansekatalog-versjon-
2.html
">høringen
</a
>.
4828 De fleste av de valgte åpne standardene er gode og vil bidra til at
4829 alle kan delta på like vilkår i å lage løsninger for staten, men
4830 noen av dem blokkerer for de som ikke har anledning til å benytte
4831 spesifikasjoner som krever betaling for bruk (såkalt
4832 royalty-betaling). Det gjelder spesifikt for H
.264 for video og MP3
4833 for lyd. Så lenge bruk av disse var valgfritt mens Ogg Theora og Ogg
4834 Vorbis var påkrevd, kunne alle som ønsket å spille av video og lyd
4835 fra statens websider gjøre dette uten å måtte bruke programmer der
4836 betaling for bruk var nødvendig. Når det nå er gjort valgfritt for
4837 de statlige etatene å bruke enten H
.264 eller Theora (og MP3 eler
4838 Vorbis), så vil en bli tvunget til å forholde seg til
4839 royalty-belastede standarder for å få tilgang til videoen og
4842 <p
>Det gjør meg veldig trist at regjeringen har forlatt prinsippet om
4843 at alle standarder som ble valgt til å være påkrevd i katalogen skulle
4844 være uten royalty-betaling. Jeg håper det ikke betyr at en har mistet
4845 all forståelse for hvilke prinsipper som må følges for å oppnå
4846 likeverdig konkurranse mellom aktørene i IT-bransjen. NUUG advarte
4848 <a href=
"http://wiki.nuug.no/uttalelser/
200901-standardkatalog-v2
">sin
4849 høringsuttalelse
</a
>, men ser ut til å ha blitt ignorert.
</p
>
4851 <p
>Oppdatering
2012-
06-
29: Kom over
<a href=
"http://www.regjeringen.no/upload/FAD/Vedlegg/IKT-politikk/Refkat_v2.pdf
">en
4852 rapport til FAD
</a
> fra da versjon
1 av katalogen ble vedtatt, og der
4853 er det tydelig at problemstillingen var kjent og forstått.
</p
>
4858 <title>Microsofts misvisende argumentasjon rundt multimediaformater
</title>
4859 <link>http://people.skolelinux.org/pere/blog/Microsofts_misvisende_argumentasjon_rundt_multimediaformater.html
</link>
4860 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Microsofts_misvisende_argumentasjon_rundt_multimediaformater.html
</guid>
4861 <pubDate>Fri,
26 Jun
2009 13:
30:
00 +
0200</pubDate>
4862 <description><p
>I
4863 <a href=
"http://www.regjeringen.no/upload/FAD/Vedlegg/Hoeringer/Refkat_V2/MicrosoftNorge.pdf
">Microsoft
4864 sin høringsuttalelse
</a
> til
4865 <a href=
"http://www.regjeringen.no/nb/dep/fad/dok/horinger/horingsdokumenter/
2009/horing---referansekatalog-versjon-
2.html?id=
549422">forslag
4866 til versjon
2 av statens referansekatalog over standarder
</a
>, lirer
4867 de av seg følgende FUD-perle:
</p
>
4869 <p
><blockquote
>"Vorbis, OGG, Theora og FLAC er alle tekniske
4870 spesifikasjoner overordnet styrt av xiph.org, som er en
4871 ikke-kommersiell organisasjon. Etablerte og anerkjente
4872 standardiseringsorganisasjoner, som Oasis, W3C og Ecma, har en godt
4873 innarbeidet vedlikeholds- og forvaltningsprosess av en standard.
4874 Det er derimot helt opp til hver enkelt organisasjon å bestemme
4875 hvordan tekniske spesifikasjoner videreutvikles og endres, og disse
4876 spesifikasjonene bør derfor ikke defineres som åpne
4877 standarder.
"</blockquote
></p
>
4879 <p
>De vokter seg vel for å nevne den anerkjente
4880 standardiseringsorganisasjonen IETF, som er organisasjonen bak HTTP,
4881 IP og det meste av protokoller på Internet, og RFC-standardene som
4882 IETF står bak. Ogg er spesifisert i
4883 <a href=
"http://ietf.org/rfc/rfc3533.txt
">RFC
3533</a
>, og er uten
4884 tvil å anse som en åpen standard. Vorbis er
4885 <a href=
"http://ietf.org/rfc/rfc5215.txt
">RFC
5215</a
>. Theora er
4887 under standardisering via IETF, med
4888 <a href=
"http://svn.xiph.org/trunk/theora/doc/draft-ietf-avt-rtp-theora-
00.txt
">siste
4889 utkast publisert
2006-
07-
21</a
> (riktignok er dermed teksten ikke
4890 skrevet i stein ennå, men det blir neppe endringer som ikke er
4891 bakoverkompatibel). De kan være inne på noe når det gjelder FLAC da
4892 jeg ikke finner tegn til at
<a
4893 href=
"http://flac.sourceforge.net/format.html
">spesifikasjonen
4894 tilgjengelig på web
</a
> er på tur via noen
4895 standardiseringsorganisasjon, men i og med at folkene bak Ogg, Theora
4896 og Vorbis også har involvert seg i Flac siden
2003, så ser jeg ikke
4897 bort fra at også den organiseres via IETF. Jeg kjenner personlig lite
4900 <p
>Uredelig argumentasjon bør en holde seg for god til å komme med,
4901 spesielt når det er så enkelt i dagens Internet-hverdag å gå
4902 misvisende påstander etter i sømmene.
</p
>
4907 <title>Recording video from cron using VLC
</title>
4908 <link>http://people.skolelinux.org/pere/blog/Recording_video_from_cron_using_VLC.html
</link>
4909 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Recording_video_from_cron_using_VLC.html
</guid>
4910 <pubDate>Sun,
5 Apr
2009 10:
00:
00 +
0200</pubDate>
4911 <description><p
>One think I have wanted to figure out for a along time is how to
4912 run vlc from cron to do recording of video streams on the net. The
4913 task is trivial with mplayer, but I do not really trust the security
4914 of mplayer (it crashes too often on strange input), and thus prefer
4915 vlc. I finally found a way to do it today. I spent an hour or so
4916 searching the web for recipes and reading the documentation. The
4917 hardest part was to get rid of the GUI window, but after finding the
4918 dummy interface, the command line finally presented itself:
</p
>
4920 <blockquote
><pre
>URL=http://www.ping.uio.no/video/rms-oslo_2009.ogg
4922 DISPLAY= vlc -q $URL \
4923 --sout=
"#duplicate{dst=std{access=file,url=
'$SAVEFILE
'},dst=nodisplay}
" \
4924 --intf=dummy
</pre
></blockquote
>
4926 <p
>The command stream the URL and store it in the SAVEFILE by
4927 duplicating the output stream to
"nodisplay
" and the file, using the
4928 dummy interface. The dummy interface and the nodisplay output make
4929 sure no X interface is needed.
</p
>
4931 <p
>The cron job then need to start this job with the appropriate URL
4932 and file name to save, sleep for the duration wanted, and then kill
4933 the vlc process with SIGTERM. Here is a complete script
4934 <tt
>vlc-record
</tt
> to use from
<tt
>at
</tt
> or
<tt
>cron
</tt
>:
</p
>
4936 <blockquote
><pre
>#!/bin/sh
4939 SAVEFILE=
"$
2"
4940 DURATION=
"$
3"
4941 DISPLAY= vlc -q
"$URL
" \
4942 --sout=
"#duplicate{dst=std{access=file,url=
'$SAVEFILE
'},dst=nodisplay}
" \
4943 --intf=dummy
< /dev/null
> /dev/null
2>&1 &
4947 wait $pid
</pre
></blockquote
>
4952 <title>Frikanalen og jul i studentrådet
</title>
4953 <link>http://people.skolelinux.org/pere/blog/Frikanalen_og_jul_i_studentr_det.html
</link>
4954 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Frikanalen_og_jul_i_studentr_det.html
</guid>
4955 <pubDate>Wed,
11 Mar
2009 23:
40:
00 +
0100</pubDate>
4956 <description><p
>I går
4957 <a href=
"http://lists.nuug.no/pipermail/interesserte/
2009-March/
000387.html
">lanserte
</a
>
4959 <a href=
"http://www.frikanalen.no
">Frikanalen
</a
> med
4960 <a href=
"http://www.nuug.no/pub/video/frikanalen/frontpage.cgi
">åpne
4961 standarder
</a
>, og resultatet av noen intense uker med arbeide kunne
4962 endelig presenteres. Jeg har tro på åpen kanalkonseptet som
4963 Frikanalen er et eksempel på, der borgerne får anledning til å
4964 kringkaste sitt syn på en åpen og demokratisk måte. Jeg er veldig
4965 glad vi har fått gjort kanalen tilgjengelig i Ogg Theora, slik at alle
4966 kan få tilgang til opptakene på web, og slipper å måtte installere MS
4967 Silverlight for å spille av opptakene.
</p
>
4969 <p
>Frikanalen har en brokete historie, og dagens inkarnasjon er ikke
4970 helt slik foreningen Åpen kanal planla det for mange år siden, noe som
4971 er bakgrunnen for at det fredag
13. mars
2009 kl
09:
00 starter en
4972 rettsak i Oslo tingrett der Kringkasterforeningen (tidligere
4973 foreningen Åpen kanal) har saksøkt kulturdepartementet over
4974 konsesjonsvilkårene til Frikanalen. Jeg er spent på resultatet.
</p
>
4976 <p
>I arbeidet med Frikanalen med åpne standarder, så har vi hatt glede
4977 av å se en rekke av innslagene som er tilgjengelig. Her er mye
4978 religiøst sludder, fra
4979 <a href=
"http://www.nuug.no/pub/video/frikanalen/fetchvideo.cgi?videoId=
720">vandring
4980 i jerusalem
</a
> via
4981 <a href=
"http://www.nuug.no/pub/video/frikanalen/fetchvideo.cgi?videoId=
779">religiøst
4982 vinklede nyheter
</a
> til
4984 href=
"http://www.nuug.no/pub/video/frikanalen/fetchvideo.cgi?videoId=
2077">kreasjonisk
4985 retorikk
</a
>, men også fine
4986 <a href=
"http://www.nuug.no/pub/video/frikanalen/fetchvideo.cgi?videoId=
407">dokumentarer
4987 om redningsselskapet
</a
> og
4988 <a href=
"http://www.nuug.no/pub/video/frikanalen/fetchvideo.cgi?videoId=
2204">interessante
4989 tegneserieanmeldelser
</a
>. Det jeg derimot har hatt størst glede av,
4992 <a href=
"http://www.nuug.no/pub/video/frikanalen/fetchvideo.cgi?videoId=
1556">jul
4993 i studentrådet
</a
>, der hver episode var en fest å se på. Jeg håper
4994 NUUG lykkes med å få ut sine opptak med like stor suksess.
</p
>
4999 <title>Lisensvalg for NUUG-opptakene endelig på plass
</title>
5000 <link>http://people.skolelinux.org/pere/blog/Lisensvalg_for_NUUG_opptakene_endelig_p__plass.html
</link>
5001 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Lisensvalg_for_NUUG_opptakene_endelig_p__plass.html
</guid>
5002 <pubDate>Fri,
6 Mar
2009 21:
20:
00 +
0100</pubDate>
5003 <description><p
>Etter mange års meditasjon over temaet, har NUUG endelig klart å
5004 bestemme seg for hvilken lisens vi skal bruke på videoopptakene som
5005 gjøres av NUUGs videogruppe. Ole Kristian har annonsert at lisensen
5006 blir
<a href=
"http://creativecommons.org/licenses/by-sa/
3.0/no/
">Creative
5007 Commons Navngivelse-Del på samme vilkår
3.0 Norge
</a
>. Jeg er veldig
5008 glad for at denne saken endelig er landet. Lisensen for opptaket til
5009 Stallman-foredraget ble en annen pga. at lisensvalget ikke var avklart
5010 på forhånd og IFI og PING ønsket CC-BY-ND, og må ses på som et unntak
5011 i denne sammenhengen.
</p
>
5016 <title>Første vellykkede videostrøm fra NUUG
</title>
5017 <link>http://people.skolelinux.org/pere/blog/F_rste_vellykkede_videostr_m_fra_NUUG.html
</link>
5018 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/F_rste_vellykkede_videostr_m_fra_NUUG.html
</guid>
5019 <pubDate>Wed,
11 Feb
2009 06:
30:
00 +
0100</pubDate>
5020 <description><p
>Jeg ble glad for å se under
5021 <a href=
"http://www.nuug.no/aktiviteter/
20090210-compiz/
">gårdagens
5022 medlemsmøte
</a
> i NUUG Oslo at utsending av live-video fra møtet
5023 fungerte for første gang. Forrige gang ble det ved en teknisk tabbe
5024 sendt video uten lyd. Vi kan takke Ole Kristian Lien og resten av
5025 videogruppen i NUUG for at nå NUUG-medlemmer over det ganske land
5026 kunne se foredraget samtidig med oss i Oslo. Vi opplevde til og med
5027 under møtet å motta spørsmål via IRC som ble besvart der og da.
5028 Opptaket publiseres så snart det er kopiert over til NUUGs
5029 webserver og komprimert.
</p
>
5034 <title>When web browser developers make a video player...
</title>
5035 <link>http://people.skolelinux.org/pere/blog/When_web_browser_developers_make_a_video_player___.html
</link>
5036 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/When_web_browser_developers_make_a_video_player___.html
</guid>
5037 <pubDate>Sat,
17 Jan
2009 18:
50:
00 +
0100</pubDate>
5038 <description><p
>As part of the work we do in
<a href=
"http://www.nuug.no
">NUUG
</a
>
5039 to publish video recordings of our monthly presentations, we provide a
5040 page with embedded video for easy access to the recording. Putting a
5041 good set of HTML tags together to get working embedded video in all
5042 browsers and across all operating systems is not easy. I hope this
5043 will become easier when the
&lt;video
&gt; tag is implemented in all
5044 browsers, but I am not sure. We provide the recordings in several
5045 formats, MPEG1, Ogg Theora, H
.264 and Quicktime, and want the
5046 browser/media plugin to pick one it support and use it to play the
5047 recording, using whatever embed mechanism the browser understand.
5048 There is at least four different tags to use for this, the new HTML5
5049 &lt;video
&gt; tag, the
&lt;object
&gt; tag, the
&lt;embed
&gt; tag and
5050 the
&lt;applet
&gt; tag. All of these take a lot of options, and
5051 finding the best options is a major challenge.
</p
>
5053 <p
>I just tested the experimental Opera browser available from
<a
5054 href=
"http://labs.opera.com
">labs.opera.com
</a
>, to see how it handled
5055 a
&lt;video
&gt; tag with a few video sources and no extra attributes.
5056 I was not very impressed. The browser start by fetching a picture
5057 from the video stream. Not sure if it is the first frame, but it is
5058 definitely very early in the recording. So far, so good. Next,
5059 instead of streaming the
76 MiB video file, it start to download all
5060 of it, but do not start to play the video. This mean I have to wait
5061 for several minutes for the downloading to finish. When the download
5062 is done, the playing of the video do not start! Waiting for the
5063 download, but I do not get to see the video? Some testing later, I
5064 discover that I have to add the controls=
"true
" attribute to be able
5065 to get a play button to pres to start the video. Adding
5066 autoplay=
"true
" did not help. I sure hope this is a misfeature of the
5067 test version of Opera, and that future implementations of the
5068 &lt;video
&gt; tag will stream recordings by default, or at least start
5069 playing when the download is done.
</p
>
5071 <p
>The test page I used (since changed to add more attributes) is
5072 <a href=
"http://www.nuug.no/aktiviteter/
20090113-foredrag-om-foredrag/
">available
5073 from the nuug site
</a
>. Will have to test it with the new Firefox
5076 <p
>In the test process, I discovered a missing feature. I was unable
5077 to find a way to get the URL of the playing video out of Opera, so I
5078 am not quite sure it picked the Ogg Theora version of the video. I
5079 sure hope it was using the announced Ogg Theora support. :)
</p
>
5084 <title>Software video mixer on a USB stick
</title>
5085 <link>http://people.skolelinux.org/pere/blog/Software_video_mixer_on_a_USB_stick.html
</link>
5086 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Software_video_mixer_on_a_USB_stick.html
</guid>
5087 <pubDate>Sun,
28 Dec
2008 15:
40:
00 +
0100</pubDate>
5088 <description><p
>The
<a href=
"http://www.nuug.no/
">Norwegian Unix User Group
</a
> is
5089 recording our montly presentation on video, and recently we have
5090 worked on improving the quality of the recordings by mixing the slides
5091 directly with the video stream. For this, we use the
5092 <a href=
"http://dvswitch.alioth.debian.org/
">dvswitch
</a
> package from
5093 the Debian video team. As this require quite one computer per video
5094 source, and NUUG do not have enough laptops available, we need to
5095 borrow laptops. And to avoid having to install extra software on
5096 these borrwed laptops, I have wrapped up all the programs needed on a
5097 bootable USB stick. The software required is dvswitch with assosiated
5098 source, sink and mixer applications and
5099 <a href=
"http://www.kinodv.org/
">dvgrab
</a
>. To allow this setup to
5100 work without any configuration, I
've patched dvswitch to use
5101 <a href=
"http://www.avahi.org/
">avahi
</a
> to connect the various parts
5102 together. And to allow us to use laptops without firewire plugs, I
5103 upgraded dvgrab to the one from Debian/unstable to get one that work
5104 with USB sources. We have not yet tested this setup in a production
5105 setup, but I hope it will work properly, and allow us to set up a
5106 video mixer in a very short time frame. We will need it for
5107 <a href=
"http://www.goopen.no/
">Go Open
2009</a
>.
</p
>
5109 <p
><a href=
"http://www.nuug.no/pub/video/bin/usbstick-dvswitch.img.gz
">The
5110 USB image
</a
> is for a
1 GB memory stick, but can be used on any
5111 larger stick as well.
</p
>