10-mediafrag-minutes.html
38.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang='en' xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta name="generator" content=
"HTML Tidy for Linux/x86 (vers 12 April 2005), see www.w3.org" />
<title>Media Fragments Working Group Teleconference -- 10 Dec
2008</title>
<link type="text/css" rel="STYLESHEET" href=
"http://www.w3.org/StyleSheets/base.css" />
<link type="text/css" rel="STYLESHEET" href=
"http://www.w3.org/StyleSheets/public.css" />
<link type="text/css" rel="STYLESHEET" href=
"http://www.w3.org/2004/02/minutes-style.css" />
<meta content="Media Fragments Working Group Teleconference"
name="Title" />
<meta content="text/html; charset=utf-8" http-equiv=
"Content-Type" />
</head>
<body>
<p><a href="http://www.w3.org/"><img src=
"http://www.w3.org/Icons/w3c_home" alt="W3C" border="0" height=
"48" width="72" /></a></p>
<h1>- DRAFT -</h1>
<h1>Media Fragments Working Group Teleconference</h1>
<h2>10 Dec 2008</h2>
<p><a href=
'http://www.w3.org/2008/WebVideo/Fragments/wiki/SecondF2FAgenda'>Agenda</a></p>
<p>See also: <a href=
"http://www.w3.org/2008/12/10-mediafrag-irc">IRC log</a></p>
<h2><a name="attendees" id="attendees">Attendees</a></h2>
<div class="intro">
<dl>
<dt>Present</dt>
<dd>Jack, Yves, Erik, Frank_(canon_observer), Raphael, Davy,
Tom, Wim, Silvia_(remote)</dd>
<dt>Regrets</dt>
<dd>Michael</dd>
<dt>Chair</dt>
<dd>Erik, Raphael</dd>
<dt>Scribe</dt>
<dd>davy, erik, raphael</dd>
</dl>
</div>
<h2>Contents</h2>
<ul>
<li>
<a href="#agenda">Topics</a>
<ol>
<li><a href="#item01">1. Summary of F2F Day 1</a></li>
<li><a href="#item02">2. Discussion of syntax</a></li>
<li><a href="#item03">3. Summary of syntax
brainstorming</a></li>
<li><a href="#item04">4. Internationalization</a></li>
<li><a href="#item05">5. Review of Action Points</a></li>
<li><a href="#item06">6. AOB</a></li>
</ol>
</li>
<li><a href="#ActionSummary">Summary of Action Items</a></li>
</ul>
<hr />
<div class="meeting">
<p class='phone'> </p>
<p class='phone'> </p>
<p class='irc'><<cite>trackbot</cite>> Date: 10 December
2008</p>
<h3 id="item01">1. Summary of F2F Day 1</h3>
<p class='irc'><<cite>raphael</cite>> Raphael: we have
discussed mainly 3 topics</p>
<p class='irc'><<cite>raphael</cite>> ... Existing
technologies: survey of the various syntaxes</p>
<p class='irc'><<cite>raphael</cite>> ... Different
dimension for addressing fragments: name, time, space,
track</p>
<p class='irc'><<cite>raphael</cite>> ... explain further
what we mean by tracks, i.e. what is available in the container
format</p>
<p class='irc'><<cite>raphael</cite>> ... discuss
implementation issues dealing with caching</p>
<h3 id="item02">2. Discussion of syntax</h3>
<p class='irc'><<cite>raphael</cite>> See: <a href=
"http://www.w3.org/2008/WebVideo/Fragments/wiki/Syntax">http://www.w3.org/2008/WebVideo/Fragments/wiki/Syntax</a></p>
<p class='irc'><<cite>davy</cite>> scribenick: davy</p>
<p class='phone'>Raphael at the drawing board</p>
<p class='phone'>four different dimensions: time, space, track,
name</p>
<p class='phone'><cite>raphael:</cite> do we allow any
combination of these dimensions</p>
<p class='phone'><cite>jack:</cite> shouldn't we use 'chapter'
instead of 'name'?</p>
<p class='phone'><cite>raphael:</cite> which combinations do we
allow?</p>
<p class='phone'><cite>jack:</cite> use either name or a
combination of time, space, and track<br />
... multiple video tracks in combination with space will cause
problems<br />
... because there is no single resolution within the media
resource (in contrast to the time axis)</p>
<p class='phone'><cite>raphael:</cite> do first the time or
track selection<br />
... afterwards, do the spatial clipping<br />
... we do not have any commutative problems because we specify
the processing order of the axex</p>
<p class='phone'><cite>jack:</cite> ambiguous cases are
multiple track selections in combination with spatial
clipping</p>
<p class='phone'>How to specify the values of the different
dimensions?</p>
<p class='irc'><<cite>Yves</cite>> <a href=
"http://www.w3.org/2002/ws/databinding/edcopy/report/all.html">http://www.w3.org/2002/ws/databinding/edcopy/report/all.html</a></p>
<p class='irc'><<cite>erik</cite>> scribenick: erik</p>
<p class='phone'>* time representation</p>
<p class='irc'><<cite>tom</cite>> "The sub-frame is
sometimes referred to as a field in the context of
synchronization with an interlaced video media object."</p>
<p class='phone'><cite>scribe:</cite> npt and smpte are
essential</p><a name="action01" id="action01"></a>
<p class='irc'><<cite>scribe</cite>>
<strong>ACTION:</strong> jack to describe why smpte is the only
frame accurate one [recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action01">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action01</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-25
- Describe why smpte is the only frame accurate one [on Jack
Jansen - due 2008-12-17].</p>
<p class='phone'><cite>jack:</cite> caching server will not
only want to record byte ranges, but also time info</p>
<p class='phone'>(and so thinks Yves)</p>
<p class='phone'><cite>raphael:</cite> assumption, "&" will
be our first separator (and try to avoid "/")</p>
<p class='irc'><<cite>davy</cite>> yves: if you specify a
fragment until the end of the stream, you specify a start,
followed by a separator, followed by nothing</p>
<p class='phone'>brainstorming ...</p>
<p class='phone'><cite>scribe:</cite> begin time = download all
and seek<br />
... begin time "separator" = download from begin time to the
end and play<br />
... begin time "separator" [end time] = download from begin
time to end time and play<br />
... [begin time] "separator" end time = download from beginning
to end time and play</p>
<p class='phone'>second separator: ","</p>
<p class='irc'><<cite>Gui</cite>> hi all</p>
<p class='irc'><<cite>Gui</cite>> Let me familiarize
myself with the agenda. I will only be able to attend for a
short while, I am expected at a team meeting this afternoon</p>
<p class='phone'>* name representation</p>
<p class='phone'>brainstorming ...</p>
<p class='phone'><cite>jack:</cite> if naming is available in
container formats, what can be used?</p>
<p class='irc'><<cite>Yves</cite>> anything could be used
provided it's % escaped in the URI</p>
<p class='phone'><cite>jack:</cite> <a href=
"http://www.ietf.org/rfc/rfc3986.txt">http://www.ietf.org/rfc/rfc3986.txt</a>
... 2.3 unreserved characters</p>
<p class='irc'><<cite>nessy</cite>> me btw "/" has no
reserved purpose inside query or fragment as per that rfc</p>
<p class='irc'><<cite>davy</cite>> two solutions for
internationalization issue for named fragments</p>
<p class='irc'><<cite>Yves</cite>> <a href=
"http://tools.ietf.org/html/rfc2047">http://tools.ietf.org/html/rfc2047</a></p><a name="action02"
id="action02"></a>
<p class='irc'><<cite>davy</cite>>
<strong>ACTION:</strong> Davy to look at various container
formats what kind of characters they allow to name their
tracks/fragments [recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action02">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action02</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-26
- Look at various container formats what kind of characters
they allow to name their tracks/fragments [on Davy Van Deursen
- due 2008-12-17].</p>
<p class='irc'><<cite>davy</cite>> 1. quotes + characters
+ % escaped</p>
<p class='irc'><<cite>davy</cite>> 2. only use the
unreserved characters (specified in URI 3986, sect. 2.3)</p>
<p class='irc'><<cite>davy</cite>> we need to specify the
encoding used to define the name</p>
<p class='irc'><<cite>Yves</cite>>
=?iso-8859-1?q?this=20is=20some=20text?=</p>
<p class='irc'><<cite>davy</cite>> raphael: we will ask
Felix about this internationalization issue</p>
<p class='phone'>* track representation</p>
<p class='phone'>brainstorming ...</p>
<p class='phone'><cite>scribe:</cite> track="some alphanumeric
stuff"<br />
... what's between quotes depends on container format</p>
<p class='phone'><cite>Jack:</cite> do we want to predefine
track names? ... very easy e.g. track="audio"</p>
<p class='irc'><<cite>Gui</cite>> that could be left to
the user agent to determine</p>
<p class='irc'><<cite>Silvia</cite>> sakim, mute me</p>
<p class='phone'><cite>Jack:</cite> predefined track names
could be: audio, video, subtitle</p>
<p class='phone'><cite>yves:</cite> do tracks for instance
always have id's?</p>
<p class='phone'><cite>resolution:</cite> we only allow
tracknames that the underlying container formats know</p>
<p class='phone'><cite>jack:</cite> is it mandatory to have a
kind of ROE-file for finding out the capabilities of a
resource?</p>
<p class='irc'><<cite>Gui</cite>> the user agent may have
schemes that will allow it to associate tracks ID to generic
names such as Audio for each media type. Can track IDs or
structuring help determine their type?</p>
<p class='irc'><<cite>Gui</cite>> Examples : Audio track
track=AU184, track=AU185 become track=audio1 or track=audio2
for easy addressing, the user agent will do the translation</p>
<p class='irc'><<cite>Gui</cite>> Yes please!</p>
<p class='irc'><<cite>Gui</cite>> Silvia: It is difficult
to follow on the phone, summary please</p>
<p class='irc'><<cite>Gui</cite>> Silvia - I am trying to
follow from South Africa</p>
<p class='irc'><<cite>erik2</cite>> * space
representation</p>
<p class='irc'><<cite>Gui</cite>> haha</p>
<p class='irc'><<cite>erik2</cite>> brainstorming ...</p>
<p class='irc'><<cite>erik2</cite>> ... resolution: last
F2F ... only rectangle for v1</p>
<p class='irc'><<cite>erik2</cite>> jack: not using the
name "rect", please ... cause ambiguous ... rather have "xywh"
instead</p>
<p class='irc'><<cite>Gui</cite>> See <a href=
"http://lists.w3.org/Archives/Public/public-media-fragment/2008Nov/0091.html">
http://lists.w3.org/Archives/Public/public-media-fragment/2008Nov/0091.html</a></p>
<p class='irc'><<cite>Gui</cite>> Silvia agree with Jack
xywh or TRBL ?</p>
<p class='irc'><<cite>erik2</cite>> Jack's proposal:
xywh=20,20,40,40</p>
<p class='irc'><<cite>Gui</cite>> trbl=20,20,40,40 means
the margins are 20,20,40,40</p>
<p class='irc'><<cite>Gui</cite>> xywh=20,20,40,40 means
the pixel position 20,20 then offset 40 vertical and
horizontal</p>
<p class='irc'><<cite>Gui</cite>> x1y1x2y2?</p>
<p class='irc'><<cite>Gui</cite>> Jack about assuming
coordinate systems ( (0,0) at the top) and units (pixels or
inches?)</p>
<p class='irc'><<cite>erik2</cite>> extra questions:
what's the coordinate system and/or metrics?</p>
<p class='irc'><<cite>erik2</cite>> proposal syntax:
[xywh=int,int,int,int]</p>
<p class='irc'><<cite>erik2</cite>> proposal coordinate
system: [0,0]=top-left</p>
<p class='irc'><<cite>Gui</cite>> Typically this is a
rectangular crop operation. I'm not sure that a Crop operation
is best described using xywh, TRBL is clearer when cropping</p>
<p class='irc'><<cite>erik2</cite>> proposal units:
default=pixels</p>
<p class='irc'><<cite>Silvia</cite>> with xywh we also
need to specify whether w goes left/right and h goes up/down
for xy position</p>
<p class='irc'><<cite>erik2</cite>> ... within v1 no
alternatives allowed like cm,inch,point,%</p>
<p class='irc'><<cite>Gui</cite>> with xywh you have a
problem that you could ask to crop regions that are out of
range. With TRBL one cannot</p>
<p class='irc'><<cite>Gui</cite>> T margin-top, R
margin-right, B margin-bottom, L margin-left,</p>
<p class='irc'><<cite>Gui</cite>> but again, the ordering
may be a problem.</p>
<p class='irc'><<cite>Gui</cite>> we can choose a scheme
and then user agents can do the conversion ... between cropping
schemes</p>
<p class='irc'><<cite>Silvia</cite>> I thought trbl meant
(top,right) as start point and (bottom,left) as end point,
offset from [0,0]</p>
<p class='irc'><<cite>erik2</cite>> suggestion: TRBL</p>
<p class='irc'><<cite>erik2</cite>> ... pro: not possible
to crop outside media</p>
<p class='irc'><<cite>Gui</cite>> very confusing, yes
Silvia</p>
<p class='irc'><<cite>erik2</cite>> ... con: not
intuitive</p>
<p class='irc'><<cite>erik2</cite>> suggestion:
x1y1x2y2</p>
<p class='irc'><<cite>Silvia</cite>> I like x1y1x2y2, but
I don't like this name :)</p>
<p class='irc'><<cite>Gui</cite>> What's nice about the
name is that it gives the ordering clearly</p>
<p class='irc'><<cite>Silvia</cite>> lol</p>
<p class='irc'><<cite>Gui</cite>> perfect</p>
<p class='irc'><<cite>Gui</cite>> another good feature :
you don't always have to specify all the coordinates or all the
margin crops</p>
<p class='irc'><<cite>erik2</cite>> jack: that is just
not a good feature</p>
<p class='irc'><<cite>Gui</cite>> Jack : 4 separate
parameters rather than one compound one</p>
<p class='irc'><<cite>Gui</cite>> Silvia: Name suggestion
for x1y1x2y2 ?</p>
<p class='irc'><<cite>Gui</cite>> Well the other name was
TopLeft-BottomRight</p>
<p class='irc'><<cite>Silvia</cite>> cartesian ?</p>
<p class='irc'><<cite>Silvia</cite>> cartesian
coordinates?</p>
<p class='irc'><<cite>erik2</cite>> final
suggestions:</p>
<p class='irc'><<cite>erik2</cite>>
xywh=int,int,int,int</p>
<p class='irc'><<cite>erik2</cite>> or</p>
<p class='irc'><<cite>Silvia</cite>>
x1y1x2y2=int,int,int,int [pixels]</p>
<p class='irc'><<cite>erik2</cite>>
LTRB=int,int,int,int</p>
<p class='irc'><<cite>erik2</cite>> or xy1xy2</p>
<p class='irc'><<cite>Gui</cite>> In practice:
Practically with video image cropping, you want to make sure
that the width and height AND the positions are multiples (of 4
for example).</p>
<p class='irc'><<cite>erik2</cite>> or xyxy</p>
<p class='irc'><<cite>Silvia</cite>> 1122=int,int,int</p>
<p class='irc'><<cite>Gui</cite>> Silvia?</p>
<p class='irc'><<cite>Silvia</cite>>
x1y1x2y2=int,int,int,int</p>
<p class='irc'><<cite>Gui</cite>> Jack: I remember you
talking about it!</p>
<p class='irc'><<cite>Gui</cite>> no objection to
x1y1x2y2</p>
<p class='irc'><<cite>erik2</cite>> resolution: go for
x1y1x2y2 !</p>
<p class='irc'><<cite>Silvia</cite>> yay!</p>
<p class='irc'><<cite>jackjansen</cite>> Time currently
has: [format:]begin, end</p>
<p class='irc'><<cite>Silvia</cite>> is that
time=[format:]begin,end ?</p>
<p class='irc'><<cite>jackjansen</cite>> So space could
have space=[unit:]x1, y1, x2, y2</p>
<p class='irc'><<cite>jackjansen</cite>> Then default for
format would be "pixel" but allow for extension later</p>
<p class='irc'><<cite>Silvia</cite>> possible confusion
about format -> LTRB/x1y1x2y2 and format -> unit</p>
<p class='irc'><<cite>jackjansen</cite>> <a href=
"http://www.googlefight.com/index.php?lang=en_GB&word1=gent+media+fragments&word2=gent+media+annotations">
http://www.googlefight.com/index.php?lang=en_GB&word1=gent+media+fragments&word2=gent+media+annotations</a></p>
<p class='irc'><<cite>Gui</cite>> Almost a draw !
<a href="http://www.googlefight.com/index.php?lang=en_GB&word1=video+media+fragments&word2=video+media+annotations">
http://www.googlefight.com/index.php?lang=en_GB&word1=video+media+fragments&word2=video+media+annotations</a></p>
<p class='irc'><<cite>Gui</cite>> Jack, are you talking
about relative dimensions such as % and em ?</p>
<p class='irc'><<cite>erik2</cite>> raphael: good idea to
NOT mix units</p>
<p class='irc'><<cite>Gui</cite>> What are the units
proposed?</p>
<p class='irc'><<cite>erik2</cite>> ... and they should
all be possitive integers</p>
<p class='irc'><<cite>Yves</cite>> gui, yes, we are
talking also about %</p>
<p class='irc'><<cite>Yves</cite>> (and parsecs for
floating number examples)</p><a name="action03" id=
"action03"></a>
<p class='irc'><<cite>erik2</cite>>
<strong>ACTION:</strong> yves to propose by email a good list
of units that can be used [recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action03">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action03</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-27
- Propose by email a good list of units that can be used [on
Yves Lafon - due 2008-12-17].</p>
<p class='irc'><<cite>Gui</cite>> Hey ! <a href=
"http://www.googlefight.com/index.php?lang=en_GB&word1=fragments+link&word2=annotations+link">
http://www.googlefight.com/index.php?lang=en_GB&word1=fragments+link&word2=annotations+link</a></p>
<p class='irc'><<cite>Gui</cite>> Before lunch ! <a href=
"http://www.googlefight.com/index.php?lang=en_GB&word1=fragment+link&word2=annotation+link">
http://www.googlefight.com/index.php?lang=en_GB&word1=fragment+link&word2=annotation+link</a></p>
<p class='irc'><<cite>Gui</cite>> Fragments 11
Annotations 0 <a href=
"http://www.googlefight.com/index.php?lang=en_GB&word1=%22links+to+fragments%22&word2=%22links+to+annotations%22">
http://www.googlefight.com/index.php?lang=en_GB&word1=%22links+to+fragments%22&word2=%22links+to+annotations%22</a></p>
<p class='irc'><<cite>Gui</cite>> Bon Appetit</p>
<p class='irc'><<cite>Gui</cite>> Attending a meeting,
brb.</p>
<h3 id="item03">3. Summary of syntax brainstorming</h3>
<p class='phone'><cite>jack:</cite> <a href=
"http://www.w3.org/2008/WebVideo/Fragments/wiki/Syntax">http://www.w3.org/2008/WebVideo/Fragments/wiki/Syntax</a>
(thx Raphael for quick summary)</p>
<p class='irc'><<cite>raphael</cite>> scribenick
raphael</p>
<p class='irc'><<cite>raphael</cite>> We are going
through the summary</p><a name="action04" id="action04"></a>
<p class='irc'><<cite>raphael</cite>>
<strong>ACTION:</strong> Jack to suggest an exhaustive list of
possible values for (temporal) format in the proposed syntax
[recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action04">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action04</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-28
- Suggest an exhaustive list of possible values for (temporal)
format in the proposed syntax [on Jack Jansen - due
2008-12-17].</p>
<p class='irc'><<cite>raphael</cite>> Discussion on
separators: primary can be '&' or ';' secondary can be
','</p>
<p class='irc'><<cite>raphael</cite>> Jack: I suggest we
choose one in the WD but put in bold the question, which one we
should use</p>
<p class='irc'><<cite>raphael</cite>> Yves: I would
almost prefer ';' instead of '&'</p><a name="action05" id=
"action05"></a>
<p class='irc'><<cite>raphael</cite>>
<strong>ACTION:</strong> Erik and Raphael to organize an
informal poll what is the best separator [recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action05">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action05</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-29
- And Raphael to organize an informal poll what is the best
separator [on Erik Mannens - due 2008-12-17].</p>
<p class='irc'><<cite>raphael</cite>> Yves: should the
value of the name dimension quoted?</p>
<p class='irc'><<cite>raphael</cite>> ... i would say:
<a href=
"http://www.example.com/movie.mov#name=">http://www.example.com/movie.mov#name=</a>"the%20kiss%20scene"</p>
<p class='irc'><<cite>raphael</cite>> Jack: I hate
x1y1x2y2!</p>
<p class='irc'><<cite>raphael</cite>> ... I would almost
prefer xywh</p><a name="action06" id="action06"></a>
<p class='irc'><<cite>raphael</cite>>
<strong>ACTION:</strong> Erik and Raphael organize an informal
poll what is the best way of specifying rectangle [recorded in
<a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action06">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action06</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-30
- And Raphael organize an informal poll what is the best way of
specifying rectangle [on Erik Mannens - due 2008-12-17].</p>
<p class='irc'><<cite>raphael</cite>> Yves: RFC 3986 says
that simple quote is a sub-delimiter in a URI</p>
<p class='irc'><<cite>raphael</cite>> ... but double
quotes should be escaped</p>
<p class='irc'><<cite>Yves</cite>> (allowed in fragments:
ALPHA / DIGIT / "-" / "." / "_" / "~" / "!" / "$" / "&" /
"'" / "(" / ")" / "*" / "+" / "," / ";" / "="</p>
<p class='irc'><<cite>Yves</cite>> everything else has to
be %-escapes</p>
<p class='irc'><<cite>raphael</cite>> Jack: do we want
"time=" or "t="?</p>
<p class='irc'><<cite>raphael</cite>> All: we tend to
prefer "t="</p>
<p class='irc'><<cite>raphael</cite>> Davy: use "id="
instead = "name=" ... as CMML</p>
<p class='irc'><<cite>raphael</cite>> ALL: we tend to
prefer "id="</p>
<p class='irc'><<cite>raphael</cite>> Yves: we should
also quote track value, as they can come from an unbounded set
of caracters</p>
<p class='irc'><<cite>raphael</cite>> All: agree</p>
<p class='irc'><<cite>raphael</cite>> scribenick:
raphael</p>
<h3 id="item04">4. Internationalization</h3>
<p class='phone'><cite>Raphael:</cite> we welcome the
assistance from Felix</p>
<p class='phone'><cite>Felix:</cite> you should use UTF-8, and
%-escape caracters as per RFC3987</p>
<p class='phone'><cite>Jack:</cite> I thought that %-escape
were latin-1 caracters</p>
<p class='phone'><cite>Felix:</cite> a procedure is described
for translating any unicode caracters into %-escape UTF-8
characters</p>
<p class='phone'><cite>Jack:</cite> in this case, we can just
assume that the identifiers are UTF-8 encoded</p>
<p class='phone'><cite>Raphael:</cite> so the syntax does not
need to include a particular encoding</p>
<p class='phone'><cite>Jack:</cite> if a movie has chapter
names in Japanese, then we can have a UTF-8 translation of this
name, either using a %-escape or not</p>
<p class='irc'><<cite>jackjansen</cite>> am I still
in?</p>
<p class='phone'><cite>Raphael:</cite> the answer is then
provided by either URIs, or IRIs RFC (check later LEIRIs)</p>
<h3 id="item05">5. Review of Action Points</h3>
<p class='phone'>close action-14</p>
<p class='irc'><<cite>trackbot</cite>> ACTION-14 Review
the use cases and requirements document closed</p>
<p class='irc'><<cite>jackjansen</cite>> am I
alive?</p><a name="action07" id="action07"></a>
<p class='irc'><<cite>scribe</cite>>
<strong>ACTION:</strong> Erik and Raphael to organize a poll to
see whether the quotes around track and id are optional
[recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action07">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action07</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-31
- And Raphael to organize a poll to see whether the quotes
around track and id are optional [on Erik Mannens - due
2008-12-17].</p>
<p class='phone'><cite>Jack:</cite> I think quotes should be
optional</p>
<p class='phone'><cite>Yves:</cite> I think quotes should be
mandatory</p>
<p class='phone'><cite>Raphael:</cite> future telecon: 17/12
and 07/01<br />
... no telecon on 24/12 and 31/12</p>
<p class='irc'><<cite>jackjansen</cite>> xmlspec:
<a href="http://www.w3.org/XML/1998/06/xmlspec-report-v21.htm">http://www.w3.org/XML/1998/06/xmlspec-report-v21.htm</a></p>
<p class='irc'><<cite>jackjansen</cite>> <a href=
"http://www.w3.org/2002/xmlspec/">http://www.w3.org/2002/xmlspec/</a></p>
<p class='irc'><<cite>Yves</cite>> <a href=
"http://www.w3.org/2003/Editors/">http://www.w3.org/2003/Editors/</a></p>
<p class='irc'><<cite>Yves</cite>> <a href=
"http://people.w3.org/rishida/misc/xmlspec-guide.html">http://people.w3.org/rishida/misc/xmlspec-guide.html</a></p><a name="action08"
id="action08"></a>
<p class='irc'><<cite>scribe</cite>>
<strong>ACTION:</strong> Yves to check and grant cvs access to
the key members of the group (erik, raphael, jack, silvia)
[recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action08">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action08</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-32
- Check and grant cvs access to the key members of the group
(erik, raphael, jack, silvia) [on Yves Lafon - due
2008-12-17].</p>
<p class='irc'><<cite>erik</cite>> Topic 6: first
document</p>
<p class='irc'><<cite>erik</cite>> 1. intro</p>
<p class='irc'><<cite>erik</cite>> 2. Use Cases</p>
<p class='irc'><<cite>erik</cite>> 3. Requirements (see
page + types of fragment addressing)</p>
<p class='irc'><<cite>erik</cite>> 4. Naming Fragment
(identification)</p>
<p class='irc'><<cite>erik</cite>> ... # vs ?</p>
<p class='irc'><<cite>erik</cite>> ... details of formal
grammar & semantics</p>
<p class='irc'><<cite>erik</cite>> ... TODO interaction
with other standards (SVG, SMIL, ...) and extreme cases</p>
<p class='irc'><<cite>erik</cite>> 5. Retrieving
Fragment</p>
<p class='irc'><<cite>erik</cite>> ... HTTP 2-way &
4-way handshake</p>
<p class='irc'><<cite>erik</cite>> ... caches/proxies</p>
<p class='irc'><<cite>erik</cite>> ... client-side
requirements</p>
<p class='irc'><<cite>erik</cite>> 3.5 Technologies
Survey</p>
<p class='irc'><<cite>erik</cite>> who will write initial
chapters?</p>
<p class='irc'><<cite>erik</cite>> ... 5. Raphael</p>
<p class='irc'><<cite>erik</cite>> ... 4. Jack</p>
<p class='irc'><<cite>erik</cite>> ... 3.5 Erik</p>
<p class='irc'><<cite>erik</cite>> ... 3.
Silvia/Raphael</p>
<p class='irc'><<cite>erik</cite>> ... 2. Silvia</p>
<p class='irc'><<cite>erik</cite>> ... 1. Intro ???</p>
<p class='irc'><<cite>erik</cite>> ... starting up
Raphael/Erik</p><a name="action09" id="action09"></a>
<p class='irc'><<cite>scribe</cite>>
<strong>ACTION:</strong> Erik and Raphael to start the template
of the document [recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action09">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action09</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-33
- And Raphael to start the template of the document [on Erik
Mannens - due 2008-12-17].</p>
<h3 id="item06">6. AOB</h3>
<p class='phone'><cite>Raphael:</cite> let's talk about
implementation</p>
<p class='phone'><cite>Yves:</cite> i can work on
implementation from February<br />
... not before</p>
<p class='phone'><cite>Davy:</cite> we have a server pretty
independant of encoding format, we can work together</p>
<p class='phone'><cite>Jack:</cite> on client side, the easiest
thing to do will work on a smil player, and just deal with a
temporal selection</p>
<p class='phone'><cite>Raphael:</cite> will, for example, a
firefox plugin be able to generate good http packets and
communicate with the server ?</p>
<p class='phone'><cite>Jack:</cite> why we don't use a
python-url library, or curl ?<br />
... then we are independant of the browser and replicate its
behaviour</p>
<p class='phone'><cite>Yves:</cite> I can talk to the curl
maintainer on the html mailing list, to see whether curl is
doing some syntax checking<br />
... otherwise, we can do that with a wget</p>
<p class='phone'><cite>Jack:</cite> so our first implementation
will be a shell script on client side</p><a name="action10" id=
"action10"></a>
<p class='irc'><<cite>scribe</cite>>
<strong>ACTION:</strong> Jack to look at python-url library to
see whether he could implement the logic on client side
[recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action10">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action10</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-34
- Look at python-url library to see whether he could implement
the logic on client side [on Jack Jansen - due
2008-12-17].</p><a name="action11" id="action11"></a>
<p class='irc'><<cite>scribe</cite>>
<strong>ACTION:</strong> Raphael to look at curl and/or wget to
see whether the logic could be implemented on client side
[recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action11">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action11</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Sorry, couldn't
find user - Raphael</p>
<p class='irc'><<cite>jackjansen</cite>> tracknot, who is
here?</p>
<p class='irc'><<cite>jackjansen</cite>> trackbot, who is
here?</p>
<p class='irc'><<cite>trackbot</cite>> Sorry, jackjansen,
I don't understand 'trackbot, who is here?'. Please refer to
<a href=
"http://www.w3.org/2005/06/tracker/irc">http://www.w3.org/2005/06/tracker/irc</a>
for help</p>
<p class='irc'><<cite>Yves</cite>> <a href=
"http://www.w3.org/2005/06/tracker/irc">http://www.w3.org/2005/06/tracker/irc</a></p>
<p class='irc'><<cite>Yves</cite>> trackbot,
status</p><a name="action12" id="action12"></a>
<p class='irc'><<cite>jackjansen</cite>>
<strong>ACTION:</strong> Raphaël to look at curl and/or wget to
see whether the logic could be implemented on client side
[recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action12">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action12</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-35
- Look at curl and/or wget to see whether the logic could be
implemented on client side [on Raphaël Troncy - due
2008-12-17].</p>
<p class='irc'><<cite>Yves</cite>> ACTION -11</p>
<p class='irc'><<cite>trackbot</cite>> Sorry, bad ACTION
syntax</p>
<p class='phone'>The room thanks IBBT for the brilliant
organization</p>
<p class='phone'>meeting adjourned</p>
</div>
<h2><a name="ActionSummary" id="ActionSummary">Summary of Action
Items</a></h2><!-- Action Items -->
<strong>[NEW]</strong> <strong>ACTION:</strong> Davy to look at
various container formats what kind of characters they allow to
name their tracks/fragments [recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action02">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action02</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> Erik and Raphael
organize an informal poll what is the best way of specifying
rectangle [recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action06">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action06</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> Erik and Raphael
to organize a poll to see whether the quotes around track and id
are optional [recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action07">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action07</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> Erik and Raphael
to organize an informal poll what is the best separator [recorded
in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action05">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action05</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> Erik and Raphael
to start the template of the document [recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action09">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action09</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> jack to describe
why smpte is the only frame accurate one [recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action01">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action01</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> Jack to look at
python-url library to see whether he could implement the logic on
client side [recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action10">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action10</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> Jack to suggest
an exhaustive list of possible values for (temporal) format in
the proposed syntax [recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action04">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action04</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> Raphael to look
at curl and/or wget to see whether the logic could be implemented
on client side [recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action11">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action11</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> Raphaël to look
at curl and/or wget to see whether the logic could be implemented
on client side [recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action12">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action12</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> Yves to check and
grant cvs access to the key members of the group (erik, raphael,
jack, silvia) [recorded in <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action08">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action08</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> yves to propose
by email a good list of units that can be used [recorded in
<a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html#action03">http://www.w3.org/2008/12/10-mediafrag-minutes.html#action03</a>]<br />
<br />
[End of minutes]<br />
<hr />
<address>
Minutes formatted by David Booth's <a href=
"http://dev.w3.org/cvsweb/~checkout~/2002/scribe/scribedoc.htm">
scribe.perl</a> version 1.133 (<a href=
"http://dev.w3.org/cvsweb/2002/scribe/">CVS log</a>)<br />
$Date: 2008/12/10 16:24:28 $
</address>
<div class="diagnostics">
<hr />
<h2>Scribe.perl diagnostic output</h2>[Delete this section
before finalizing the minutes.]<br />
<pre>
This is scribe.perl Revision: 1.133 of Date: 2008/01/18 18:48:51
Check for newer version at <a href=
"http://dev.w3.org/cvsweb/~checkout~/2002/scribe/">http://dev.w3.org/cvsweb/~checkout~/2002/scribe/</a>
Guessing input format: RRSAgent_Text_Format (score 1.00)
Succeeded: s/...discuss/... discuss/
Succeeded: s/ccaching/caching/
Succeeded: s/and name/and track/
Succeeded: s/download only the sequence and play/download from begin time to the end and play/
Succeeded: s/begin time "separator" end time/begin time "separator" [end time]/
Succeeded: s/text/subtitle/
Succeeded: s/xyzh/xywh/
Succeeded: s/xwwh/xywh/
Succeeded: s/ of 4 (for example)/ (of 4 for example)/
Succeeded: s/space could have [format:]/space could have [unit:]/
Succeeded: s/[unit:]/space=[unit:]/
Succeeded: s/ted/tend/
Succeeded: s/RFC3986/RFC3987/
Succeeded: s/caracters/characters/
Succeeded: s/...)/...) and extreme cases/
Succeeded: s/4./... 4./
Succeeded: s/3. 5/... 3.5/
Found ScribeNick: davy
Found ScribeNick: erik
Found ScribeNick: raphael
Inferring Scribes: davy, erik, raphael
Scribes: davy, erik, raphael
ScribeNicks: davy, erik, raphael
Default Present: +2712841aaaa, Guillaume, +329331aabb, Frank, Davy, Erik, Raphael, Tom, Wim, Jack, Yves, +61.2.801.2.aacc, Silvia
Present: Jack Yves Erik Frank_(canon_observer) Raphael Davy Tom Wim Silvia_(remote)
Regrets: Michael
Agenda: <a href=
"http://www.w3.org/2008/WebVideo/Fragments/wiki/SecondF2FAgenda">http://www.w3.org/2008/WebVideo/Fragments/wiki/SecondF2FAgenda</a>
Found Date: 10 Dec 2008
Guessing minutes URL: <a href=
"http://www.w3.org/2008/12/10-mediafrag-minutes.html">http://www.w3.org/2008/12/10-mediafrag-minutes.html</a>
People with action items: davy erik jack l rapha raphael yves
</pre>[End of <a href=
"http://dev.w3.org/cvsweb/~checkout~/2002/scribe/scribedoc.htm">
scribe.perl</a> diagnostic output]
</div>
</body>
</html>