-
Notifications
You must be signed in to change notification settings - Fork 0
/
sandd.html
3903 lines (3256 loc) · 161 KB
/
sandd.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
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
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>
Humax HDR Fox T2 (humax)
</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<link rel="icon" href="/favicon.ico" sizes="16x16 32x32 64x64"
type="image/vnd.microsoft.icon" />
<link rel="apple-touch-icon" href="/img/fav/57.png" />
<link rel="apple-touch-icon" sizes="57x57" href="/img/fav/57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/img/fav/72.png" />
<link rel="apple-touch-icon" sizes="114x114" href="/img/fav/114.png" />
<link rel="apple-touch-icon" sizes="144x144" href="/img/fav/144.png" />
<link type="text/css" href="/lib/jquery.ui/css/humax/jquery-ui.css"
rel="Stylesheet" />
<link href="/css/style.css" rel="Stylesheet" type="text/css" />
<link href="/css/EXTRA.css" rel="Stylesheet" type="text/css" />
<script type="text/javascript" src="/js/jquery.js"></script>
<script type="text/javascript" src="/lib/jquery.ui/js/jquery-ui.js"></script>
<script type=text/javascript src="/lib/jquery.plugin/contextMenu/jquery.contextMenu.js"></script>
<script type=text/javascript src="/lib/jquery.plugin/bar/jquery.bar.js"></script>
<script type=text/javascript src="/lib/jquery.plugin/enadis/enadis.js"></script>
<script type=text/javascript src="script.js"></script>
<link href="/lib/jquery.plugin/contextMenu/extra.css" rel=stylesheet type=text/css />
<link href="/lib/jquery.plugin/contextMenu/jquery.contextMenu.css" rel=stylesheet type=text/css />
<link href="/lib/jquery.plugin/bar/jquery.bar.css" rel=stylesheet type=text/css />
<link href="style.css" rel=stylesheet type=text/css />
</head>
<body>
<!-- start of topbar -->
<div id=topbar class=container onclick="location.href='/'; return false;">
<div class=left>
<img src=/images/154_1_00_WIN_MD116_1L.png>
</div>
<div class=middle>
<!-- Start include diskspace - above other items to work around IE feature.. -->
<span style="float: right;
background:url('/images/345_1_27_ST_USB_BG.png')
no-repeat">
<a href=/diag/dspace/index.jim>
<img border=0 src=/images/345_2_14_ST_HDD_15.png>
</a>
</span>
<span style="float: right">
<br>
Total space: 906.06 GiB<br>
Used: 525.87 GiB (59%)<br>
Free: 380.19 GiB (41%)
</span>
<!-- End include diskspace -->
<img border=0 src=/images/516_1_26_Freeview_Logo.png>
<!-- <img border=0 height=47 src=/img/FreeviewHD.png> -->
<span style="display: inline; font-size: 150%;
padding: 0 0 0 2em;">
Humax HDR Fox T2 (humax)
</span>
</div>
<div class=right><img src=/images/154_1_00_WIN_MD116_3R.png></div>
</div>
<!-- start of toolbar -->
<div class=toolbarouter>
<div id=toolbar class=toolbar style="display: none">
<span class=toolbarcell>
<a href="/plugin/ir/remote.jim">
<img src="/img/remote.png" height=50 border=0>
<br>
Remote
</a>
</span>
<span class=toolbarcell>
<a href="/browse/index.jim">
<img src="/images/323_1_10_Menu_Video.png" height=50 border=0>
<br>
Browse
</a>
</span>
<span class=toolbarcell>
<a href="/sched/sched.jim">
<img src="/images/321_1_00_Menu_CHList.png" height=50 border=0>
<br>
Schedule
</a>
</span>
<span class=toolbarcell>
<a href="/epg/list.jim">
<img src="/images/328_1_26_Menu_TV_Guide.png" height=50 border=0>
<br>
EPG
</a>
</span>
<span class=toolbarcell>
<a href="/services/index.jim">
<img src="/img/spanner.png" height=50 border=0>
<br>
Services
</a>
</span>
<span class=toolbarcell>
<a href="/pkg/index.jim">
<img src="/img/packages.png" height=50 border=0>
<br>
Packages
</a>
</span>
<span class=toolbarcell>
<a href="/settings/settings.jim">
<img src="/images/326_1_00_Menu_Settings.png" height=50 border=0>
<br>
Settings
</a>
</span>
<span class=toolbarcell>
<a href="/diag/diag.jim">
<img src="/img/diagnostics.png" height=50 border=0>
<br>
Diag
</a>
</span>
<span class=toolbarcell>
<a href="/tvdiary/index.jim">
<img src="/plugin/tvdiary/icon.png" height=50 border=0>
<br>
TV Diary
</a>
</span>
<span class=cleft id=tbstatus></span>
</div>
</div>
<script type=text/javascript>
var lastupd = 0;
if (window.location.pathname != '/' &&
window.location.pathname != '/index.jim')
{
var down = function() {
$('#toolbar').stop(true, true).delay(200).slideDown(400,
function() {
if (+new Date() - lastupd > 5000)
{
lastupd = +new Date();
$('#tbstatus')
.empty()
.html('<img src=/img/loading.gif> ' +
'Updating...')
.load('/cgi-bin/status.jim');
}
});
};
var up = function() {
$('#toolbar').stop(true, true).delay(200).slideUp();
};
$('#topbar, #toolbar').hover(down, up);
}
$('span.toolbarcell').hover(
function() {
$(this).addClass('tbhover');
}, function() {
$(this).removeClass('tbhover');
});
</script>
<!-- end of toolbar -->
<script type=text/javascript>
$('#topbar').hover(
function() { $(this).css('cursor', 'pointer'); },
function() { $(this).css('cursor', 'auto'); }
);
$('#topbar a').on('click', function(e) {
e.stopPropagation();
});
</script>
<!-- end of topbar -->
<center><div id=restart_block>
</div></center>
<div style="clear: both">
<!-- end of header -->
<div id=jbar></div>
<ul id=optmenu class=contextMenu style="width: 160px">
<li class=delete><a href=#delete>Delete</a></li>
<li class=cut><a href=#cut>Cut to clipboard</a></li>
<li class=pwcopy><a href=#copy>Copy to clipboard</a></li>
<li class=separator><a href=#rename>Rename</a></li>
<li><a href=#download>Download</a></li>
<li class="separator decrypt"><a href=#decrypt>Decrypt</a></li>
<li class="compress"><a href=#strip>Shrink</a></li>
<li class=mp3><a href=#audio>Extract Audio</a></li>
<li class=mpg><a href=#mpg>Extract to MPG</a></li>
<li class=thm><a href=#thm>Set Thumbnail</a></li>
<li><a href=#vthm>View Thumbnail</a></li>
<li class=bookmark><a href=#bmarks>Bookmarks</a></li>
<li class="cut"><a href=#crop>Crop</a></li>
<li class="cut"><a href=#chunk>Split (45m parts)</a></li>
<li class=separator><a href=#lock>Toggle Lock</a></li>
<li><a href=#new>Toggle New</a></li>
</ul>
<ul id=ooptmenu class=contextMenu style="width: 160px">
<li class=delete><a href=#delete>Delete</a></li>
<li class=cut><a href=#cut>Cut to clipboard</a></li>
<li class=pwcopy><a href=#copy>Copy to clipboard</a></li>
<li class=separator><a href=#rename>Rename</a></li>
<li><a href=#download>Download</a></li>
</ul>
<ul id=dooptmenu class=contextMenu style="width: 250px">
<li class=delete><a href=#delete>Delete</a></li>
<li class=cut><a href=#cut>Cut to clipboard</a></li>
<li class=pwcopy><a href=#copy>Copy to clipboard</a></li>
<li class=pwpaste><a href=#paste>Paste to folder</a></li>
<li class=separator><a href=#rename>Rename</a></li>
</ul>
<ul id=doptmenu class=contextMenu style="width: 250px">
<li class=delete><a href=#delete>Delete</a></li>
<li class=cut><a href=#cut>Cut to clipboard</a></li>
<li class=pwcopy><a href=#copy>Copy to clipboard</a></li>
<li class=pwpaste><a href=#paste>Paste to folder</a></li>
<li class=separator><a href=#rename>Rename</a></li>
<li class=separator><a href=#resetnew>Reset new flag</a></li>
<li class="separator compress"><a href=#shrink>Auto-Shrink</a></li>
<li class="compressr"><a href=#shrinkr>Recursive Auto-Shrink</a></li>
<li class=dedup><a href=#dedup>Auto-Dedup</a></li>
<li class=decrypt><a href=#decrypt>Auto-Decrypt</a></li>
<li class=decryptr><a href=#decryptr>Recursive Auto-Decrypt
</a></li>
<li class=clock><a href=#expire>Auto-Expire Options</a></li>
<li class=mp3><a href=#mp3>Auto-Audio Extract</a></li>
<li class=mpg><a href=#mpg>Auto-MPG Extract</a></li>
</ul>
<div id=renameform title="Rename media file" style="display: none">
<form id=renameform_form>
<input type=hidden name="renamefile" id="renamefile" value="">
<table border=0>
<tr>
<th>
<label for="rename">
<b>New Filename</b>
</label>
</th>
<td>
<input type=text name="rename" id="rename"
value="" size=70 maxlength=255
class="text ui-widget-content ui-corner-all">
</td>
</tr>
<tr style="display: none" class=tstype>
<th>
<label for="rename_title" style="padding-top: 0.5em">
<b>New Medialist Title</b>
</label>
</th>
<td>
<input type=text name="rename_title" id="rename_title"
value="" size=70 maxlength=48
class="text ui-widget-content ui-corner-all">
</td>
</tr>
<tr style="display: none" class=tstype>
<th>
<label for="rename_synopsis" style="padding-top: 0.5em">
<b>New Synopsis</b>
</label>
</th>
<td>
<textarea name="rename_synopsis" id="rename_synopsis"
value="" cols=70 rows=4
class="text ui-widget-content ui-corner-all"></textarea>
</td>
</tr>
<tr style="display: none" class=tstype>
<th>
<label for="rename_guidance" style="padding-top: 0.5em">
<b>New Guidance Text</b>
</label>
</th>
<td>
<input type=text name="rename_guidance" id="rename_guidance"
value="" size=70 maxlength=74
class="text ui-widget-content ui-corner-all">
</td>
</tr>
<tr style="display: none" class=tstype>
<th>
<label for="rename_genre" style="padding-top: 0.5em">
<b>New Genre</b>
</label>
</th>
<td>
<select name="rename_genre" id="rename_genre"
style="vertical-align: middle"
class="text ui-widget-content ui-corner-all">
<option value=0 style="
background: url(/images/173_3_26_G3_Unclassified.png) no-repeat left;
padding: 8px 0 8px 30px;
vertical-align: middle;
" onclick="this.parentNode.setAttribute('style',
this.getAttribute('style'));">Unclassified
<option value=240 style="
background: url(/images/173_3_00_G3_Show.png) no-repeat left;
padding: 8px 0 8px 30px;
vertical-align: middle;
" onclick="this.parentNode.setAttribute('style',
this.getAttribute('style'));">Drama
<option value=160 style="
background: url(/images/173_3_00_G3_Leisure.png) no-repeat left;
padding: 8px 0 8px 30px;
vertical-align: middle;
" onclick="this.parentNode.setAttribute('style',
this.getAttribute('style'));">Lifestyle
<option value=96 style="
background: url(/images/173_3_00_G3_Special.png) no-repeat left;
padding: 8px 0 8px 30px;
vertical-align: middle;
" onclick="this.parentNode.setAttribute('style',
this.getAttribute('style'));">Entertainment
<option value=80 style="
background: url(/images/173_3_00_G3_Children.png) no-repeat left;
padding: 8px 0 8px 30px;
vertical-align: middle;
" onclick="this.parentNode.setAttribute('style',
this.getAttribute('style'));">Children
<option value=144 style="
background: url(/images/173_3_00_G3_Education.png) no-repeat left;
padding: 8px 0 8px 30px;
vertical-align: middle;
" onclick="this.parentNode.setAttribute('style',
this.getAttribute('style'));">Education
<option value=64 style="
background: url(/images/173_3_00_G3_Sports.png) no-repeat left;
padding: 8px 0 8px 30px;
vertical-align: middle;
" onclick="this.parentNode.setAttribute('style',
this.getAttribute('style'));">Sport
<option value=48 style="
background: url(/images/173_3_00_G3_Special.png) no-repeat left;
padding: 8px 0 8px 30px;
vertical-align: middle;
" onclick="this.parentNode.setAttribute('style',
this.getAttribute('style'));">Entertainment
<option value=32 style="
background: url(/images/173_3_00_G3_News.png) no-repeat left;
padding: 8px 0 8px 30px;
vertical-align: middle;
" onclick="this.parentNode.setAttribute('style',
this.getAttribute('style'));">News & Factual
<option value=16 style="
background: url(/images/173_3_00_G3_Movie.png) no-repeat left;
padding: 8px 0 8px 30px;
vertical-align: middle;
" onclick="this.parentNode.setAttribute('style',
this.getAttribute('style'));">Film
</select>
</td>
</tr>
</table>
</form>
</div>
<div id=drenameform title="Rename directory" style="display: none">
<form id=drenameform_form>
<input type=hidden name="renamefile" id="drenameorig" value="">
<table border=0>
<tr>
<th>
<label for="drename">
<b>New Directory Name</b>
</label>
</th>
<td>
<input type=text name="rename" id="drename"
value="" size=70 maxlength=255
class="text ui-widget-content ui-corner-all">
</td>
</tr>
</table>
</form>
</div>
<div id=savestreamform title="Save streamed content"
style="display: none">
<div class=pre id=savestream_detail></div>
<div id=savestream_retrieving>
<img src=/img/loading.gif> Retrieving details...
</div>
<form id=savestream_form class=hidden>
<input type=hidden name=dir value="/media/My Video/Sarah & Duck">
<table border=0>
<tr>
<th>
<label for="savestream_name">
<b>Enter Filename</b>
</label>
</th>
<td>
<input type=text name="savestream_name"
id="savestream_name"
value="" size=70 maxlength=255
class="text ui-widget-content ui-corner-all">
<span id=savestream_spin>
<img src=/img/loading.gif> Saving...
</span>
</td>
</tr>
</table>
</form>
</div>
<div id=newdirform title="New Folder" style="display: none">
<form id=newdirform_form>
<input type=hidden name=dir value="/media/My Video/Sarah & Duck">
<table border=0>
<tr>
<th>
<label for="newdirname">
<b>New Folder Name</b>
</label>
</th>
<td>
<input type=text name="newdirname" id="newdirname"
value="" size=70 maxlength=255
class="text ui-widget-content ui-corner-all">
</td>
</tr>
</table>
</form>
</div>
<div id=aexpiry title="Auto-Expiry Settings"
style="display: none; line-height: 1em;">
<form id=aexpiry_form>
<input type=hidden name="dir" id="aexpiry_ldir" value="">
<table border=0>
<tr><th align=right>
<label for="aexpiry_days">
<b>Remove recordings after</b> (in days)
<br><span class=footnote>
(Leave blank to skip age check)
</span>
</label>
</th><td>
<input name="aexpiry_days" id="aexpiry_days"
type=number value=0 size=5 maxlength=3
class="text ui-widget-content ui-corner-all">
</td></tr>
<tr><th>
<label for="aexpiry_min">
<b>Keep at least</b>
(number of recordings)
<br>
<span class=footnote>(Oldest will be deleted first)
</span>
</label>
</th><td>
<input name="aexpiry_min" id="aexpiry_min"
type=number value=0 size=5 maxlength=3
class="text ui-widget-content ui-corner-all">
</td></tr>
<tr><th>
<label for="aexpiry_timetype">
<b>For date of recording, use</b>
</label>
</th><td>
<input name="aexpiry_timetype" id="aexpiry_timetype0"
type=radio value=0 checked
class="text ui-widget-content ui-corner-all">
Recording end time
<br>
<input name="aexpiry_timetype" id="aexpiry_timetype1"
type=radio value=1
class="text ui-widget-content ui-corner-all">
<span>
When last watched
<span class=bfootnote>(or end time if unwatched)</span>
</span>
</td></tr>
<tr><th>
<label for="aexpiry_unwatched">
<b>Never delete unwatched recordings</b>
</label>
</th><td>
<input name="aexpiry_unwatched" id="aexpiry_unwatched"
type=checkbox value=1
class="ui-widget-content ui-corner-all">
</td></tr>
</table>
<div id=aexpiry_working class=hidden>
<img src=/img/loading.gif> Applying changes...
</div>
<div id=aexpiry_loading class=hidden>
<img src=/img/loading.gif> Retrieving data...
</div>
</form>
</div>
<div id=dialogue></div>
<div id=confirm title="Confirmation Required"></div>
<div id=pwdialogue style="display: none">
<center>
<img src=/img/loading.gif>
<br><br>
Please wait...
<div id=pwfeedback></div>
</center>
</div>
<div id=bmpdialogue title="Recording Thumbnail" class=hidden>
<img id=thmbmp class=doublebmp src="about:blank">
</div>
<span style="display:none" id=dir>/media/My Video/Sarah & Duck</span>
<span style="display:none" id=mediaroot>/media/My Video</span>
<fieldset class=cleft style="margin: 0 1em 1em 1em">
<legend style="font-size: 1.5em; padding: 0 0.5em 0.5em 0.5em;">
<a href="/browse/index.jim?dir=/">/</a>
<a href="/browse/index.jim?dir=/media">media</a>
<a href="/browse/index.jim?dir=/media/My%20Video">/My Video</a>
<a href="/browse/index.jim?dir=/media/My%20Video/Sarah%20%26%20Duck">/Sarah & Duck</a>
<span class=filesize id=dirsize></span>
</legend>
<div class=va>
<a href="/browse/index.jim?dir=/media/My%20Video">
<img border=0 src=/images/711_3_09_Media_Folder_UP.png class=va>
[parent directory]</a>
</div>
<div class="va bf" id=1>
<img class=va border=0 src=/img/Video_TS.png>
<input class="fs fsts" type=checkbox>
<a class=bf title="Tortoise Snooze: Animation. When it is time for Tortoise to hibernate, Sarah and Duck help him find a quiet place to sleep. [HD] [AD,S]"
file="/media/My%20Video/Sarah%20%26%20Duck/New_%20Sarah%20%26%20Duck_20141014_1714.ts" type=ts href=#>
New_ Sarah & Duck_20141014_1714.ts
</a>
<span class=filesize> (207.36 MiB) </span>
<img src="/img/channels/out/CBeebies HD.png" class="va browsechannel" height=21 alt="CBeebies HD" title="CBeebies HD">
<img src="/images/173_3_00_G3_Children.png" class="va genre" height=21 alt="Children" title="Children">
<img src="/images/172_1_00_HD.png" class="va" height=21 >
<a href=#>
<img class="opt va" border=0 width=45 type=ts did=1
locked=0 encd=0 def=HD new=0 bx=0
shrunk=0 rsize=217436160
odencd=1 dlna=0 thmok=1
src=/images/181_1_00_Help5_OPT_Plus.png>
</a>
<div class="results blood" style="margin: 0 0 0 5em"></div>
</div>
<div class="va bf" id=2>
<img class=va border=0 src=/img/Video_TS.png>
<input class="fs fsts" type=checkbox>
<a class=bf title="Fast Slow Bungalow: Animation. Flamingo and John give Sarah and Duck a tour of their house and invite them to play their favourite game. [HD] [AD,S]"
file="/media/My%20Video/Sarah%20%26%20Duck/New_%20Sarah%20%26%20Duck_20141021_1713.ts" type=ts href=#>
New_ Sarah & Duck_20141021_1713.ts
</a>
<span class=filesize> (198.64 MiB) </span>
<img src="/img/channels/out/CBeebies HD.png" class="va browsechannel" height=21 alt="CBeebies HD" title="CBeebies HD">
<img src="/images/173_3_00_G3_Children.png" class="va genre" height=21 alt="Children" title="Children">
<img src="/images/172_1_00_HD.png" class="va" height=21 >
<a href=#>
<img class="opt va" border=0 width=45 type=ts did=2
locked=0 encd=0 def=HD new=0 bx=0
shrunk=0 rsize=208289792
odencd=1 dlna=0 thmok=1
src=/images/181_1_00_Help5_OPT_Plus.png>
</a>
<div class="results blood" style="margin: 0 0 0 5em"></div>
</div>
<div class="va bf" id=3>
<img class=va border=0 src=/img/Video_TS_New.png>
<input class="fs fsts" type=checkbox>
<a class=bf title="Bags of Bags: Animation. Scarf Lady has misplaced Bag in the big shop, so Sarah and Duck help with the search. [HD] [AD,S]"
file="/media/My%20Video/Sarah%20%26%20Duck/New_%20Sarah%20%26%20Duck_20141028_1713.ts" type=ts href=#>
New_ Sarah & Duck_20141028_1713.ts
</a>
<span class=filesize> (212.44 MiB) </span>
<img src="/img/channels/out/CBeebies HD.png" class="va browsechannel" height=21 alt="CBeebies HD" title="CBeebies HD">
<img src="/images/173_3_00_G3_Children.png" class="va genre" height=21 alt="Children" title="Children">
<img src="/images/172_1_00_HD.png" class="va" height=21 >
<a href=#>
<img class="opt va" border=0 width=45 type=ts did=3
locked=0 encd=0 def=HD new=1 bx=0
shrunk=0 rsize=222756864
odencd=1 dlna=0 thmok=1
src=/images/181_1_00_Help5_OPT_Plus.png>
</a>
<div class="results blood" style="margin: 0 0 0 5em"></div>
</div>
<div class="va bf" id=4>
<img class=va border=0 src=/img/Video_TS.png>
<input class="fs fsts" type=checkbox>
<a class=bf title="Ribbon Fall: Animation. The Ribbon Sisters invite Sarah & Duck to their favourite seasonal event in the park. [HD] [AD,S]"
file="/media/My%20Video/Sarah%20%26%20Duck/New_%20Sarah%20%26%20Duck_20141104_1712.ts" type=ts href=#>
New_ Sarah & Duck_20141104_1712.ts
</a>
<span class=filesize> (219.18 MiB) </span>
<img src="/img/channels/out/CBeebies HD.png" class="va browsechannel" height=21 alt="CBeebies HD" title="CBeebies HD">
<img src="/images/173_3_00_G3_Children.png" class="va genre" height=21 alt="Children" title="Children">
<img src="/images/172_1_00_HD.png" class="va" height=21 >
<a href=#>
<img class="opt va" border=0 width=45 type=ts did=4
locked=0 encd=0 def=HD new=0 bx=0
shrunk=0 rsize=229822464
odencd=1 dlna=0 thmok=1
src=/images/181_1_00_Help5_OPT_Plus.png>
</a>
<div class="results blood" style="margin: 0 0 0 5em"></div>
</div>
<div class="va bf" id=5>
<img class=va border=0 src=/img/Video_TS_New.png>
<input class="fs fsts" type=checkbox>
<a class=bf title="Garden Gaming: Animation. Duck is getting frustrated with his new computer game, so Sarah builds a version he can play. [HD] [AD,S]"
file="/media/My%20Video/Sarah%20%26%20Duck/New_%20Sarah%20%26%20Duck_20141111_1712.ts" type=ts href=#>
New_ Sarah & Duck_20141111_1712.ts
</a>
<span class=filesize> (199.48 MiB) </span>
<img src="/img/channels/out/CBeebies HD.png" class="va browsechannel" height=21 alt="CBeebies HD" title="CBeebies HD">
<img src="/images/173_3_00_G3_Children.png" class="va genre" height=21 alt="Children" title="Children">
<img src="/images/172_1_00_HD.png" class="va" height=21 >
<a href=#>
<img class="opt va" border=0 width=45 type=ts did=5
locked=0 encd=0 def=HD new=1 bx=0
shrunk=0 rsize=209166336
odencd=1 dlna=0 thmok=1
src=/images/181_1_00_Help5_OPT_Plus.png>
</a>
<div class="results blood" style="margin: 0 0 0 5em"></div>
</div>
<div class="va bf" id=6>
<img class=va border=0 src=/img/Video_TS.png>
<input class="fs fsts" type=checkbox>
<a class=bf title="Origami Overload: Animation. John has a problem with the origami flamingos he has made and needs Sarah and Duck's help. [HD] [AD,S]"
file="/media/My%20Video/Sarah%20%26%20Duck/New_%20Sarah%20%26%20Duck_20150127_1711.ts" type=ts href=#>
New_ Sarah & Duck_20150127_1711.ts
</a>
<span class=filesize> (196.77 MiB) </span>
<img src="/img/channels/out/CBeebies HD.png" class="va browsechannel" height=21 alt="CBeebies HD" title="CBeebies HD">
<img src="/images/173_3_00_G3_Children.png" class="va genre" height=21 alt="Children" title="Children">
<img src="/images/172_1_00_HD.png" class="va" height=21 >
<a href=#>
<img class="opt va" border=0 width=45 type=ts did=6
locked=0 encd=0 def=HD new=0 bx=0
shrunk=0 rsize=206323712
odencd=1 dlna=0 thmok=1
src=/images/181_1_00_Help5_OPT_Plus.png>
</a>
<div class="results blood" style="margin: 0 0 0 5em"></div>
</div>
<div class="va bf" id=7>
<img class=va border=0 src=/img/Video_TS.png>
<input class="fs fsts" type=checkbox>
<a class=bf title="Shallot Circus: Animation. The Shallots have discovered acrobatics and are inspired by the Ribbon Sisters to put on a show. [HD] [AD,S]"
file="/media/My%20Video/Sarah%20%26%20Duck/New_%20Sarah%20%26%20Duck_20150128_1711.ts" type=ts href=#>
New_ Sarah & Duck_20150128_1711.ts
</a>
<span class=filesize> (215.59 MiB) </span>
<img src="/img/channels/out/CBeebies HD.png" class="va browsechannel" height=21 alt="CBeebies HD" title="CBeebies HD">
<img src="/images/173_3_00_G3_Children.png" class="va genre" height=21 alt="Children" title="Children">
<img src="/images/172_1_00_HD.png" class="va" height=21 >
<a href=#>
<img class="opt va" border=0 width=45 type=ts did=7
locked=0 encd=0 def=HD new=0 bx=0
shrunk=0 rsize=226062336
odencd=1 dlna=0 thmok=1
src=/images/181_1_00_Help5_OPT_Plus.png>
</a>
<div class="results blood" style="margin: 0 0 0 5em"></div>
</div>
<div class="va bf" id=8>
<img class=va border=0 src=/img/Video_TS.png>
<input class="fs fsts" type=checkbox>
<a class=bf title="Toy Tidy: Animation. Duck has been leaving his toys everywhere, so Sarah decides to assist him with tiding his bedroom. [HD] [AD,S]"
file="/media/My%20Video/Sarah%20%26%20Duck/New_%20Sarah%20%26%20Duck_20150129_1710.ts" type=ts href=#>
New_ Sarah & Duck_20150129_1710.ts
</a>
<span class=filesize> (185.58 MiB) </span>
<img src="/img/channels/out/CBeebies HD.png" class="va browsechannel" height=21 alt="CBeebies HD" title="CBeebies HD">
<img src="/images/173_3_00_G3_Children.png" class="va genre" height=21 alt="Children" title="Children">
<img src="/images/172_1_00_HD.png" class="va" height=21 >
<a href=#>
<img class="opt va" border=0 width=45 type=ts did=8
locked=0 encd=0 def=HD new=0 bx=0
shrunk=0 rsize=194596864
odencd=1 dlna=0 thmok=1
src=/images/181_1_00_Help5_OPT_Plus.png>
</a>
<div class="results blood" style="margin: 0 0 0 5em"></div>
</div>
<div class="va bf" id=9>
<img class=va border=0 src=/img/Video_TS_New.png>
<input class="fs fsts" type=checkbox>
<a class=bf title="Plate Escape: Animation. Whilst at the Big Shop, Sarah, Duck and Plate Girl discover some unusual inhabitants in the plant section. [HD] [AD,S]"
file="/media/My%20Video/Sarah%20%26%20Duck/New_%20Sarah%20%26%20Duck_20150130_1710.ts" type=ts href=#>
New_ Sarah & Duck_20150130_1710.ts
</a>
<span class=filesize> (217.02 MiB) </span>
<img src="/img/channels/out/CBeebies HD.png" class="va browsechannel" height=21 alt="CBeebies HD" title="CBeebies HD">
<img src="/images/173_3_00_G3_Children.png" class="va genre" height=21 alt="Children" title="Children">
<img src="/images/172_1_00_HD.png" class="va" height=21 >
<a href=#>
<img class="opt va" border=0 width=45 type=ts did=9
locked=0 encd=0 def=HD new=1 bx=0
shrunk=0 rsize=227565568
odencd=1 dlna=0 thmok=1
src=/images/181_1_00_Help5_OPT_Plus.png>
</a>
<div class="results blood" style="margin: 0 0 0 5em"></div>
</div>
<div class="va bf" id=10>
<img class=va border=0 src=/img/Video_TS_New.png>
<input class="fs fsts" type=checkbox>
<a class=bf title="The Big Sleepover: Animation. Sarah and Duck invite some friends over for a sleepover, but getting to sleep is tougher than planned. [HD] [AD,S]"
file="/media/My%20Video/Sarah%20%26%20Duck/New_%20Sarah%20%26%20Duck_20150203_1710.ts" type=ts href=#>
New_ Sarah & Duck_20150203_1710.ts
</a>
<span class=filesize> (173.33 MiB) </span>
<img src="/img/channels/out/CBeebies HD.png" class="va browsechannel" height=21 alt="CBeebies HD" title="CBeebies HD">
<img src="/images/173_3_00_G3_Children.png" class="va genre" height=21 alt="Children" title="Children">
<img src="/images/172_1_00_HD.png" class="va" height=21 >
<a href=#>
<img class="opt va" border=0 width=45 type=ts did=10
locked=0 encd=0 def=HD new=1 bx=0
shrunk=0 rsize=181747712
odencd=1 dlna=0 thmok=1
src=/images/181_1_00_Help5_OPT_Plus.png>
</a>
<div class="results blood" style="margin: 0 0 0 5em"></div>
</div>
<div class="va bf" id=11>
<img class=va border=0 src=/img/Video_TS.png>
<input class="fs fsts" type=checkbox>
<a class=bf title="Paisley Sea: Animation. Sarah and Duck think they are headed to the zoo, but the bus takes a surprising diversion! [HD] [AD,S]"
file="/media/My%20Video/Sarah%20%26%20Duck/New_%20Sarah%20%26%20Duck_20150204_1711.ts" type=ts href=#>
New_ Sarah & Duck_20150204_1711.ts
</a>
<span class=filesize> (209.18 MiB) </span>
<img src="/img/channels/out/CBeebies HD.png" class="va browsechannel" height=21 alt="CBeebies HD" title="CBeebies HD">
<img src="/images/173_3_00_G3_Children.png" class="va genre" height=21 alt="Children" title="Children">
<img src="/images/172_1_00_HD.png" class="va" height=21 >
<a href=#>
<img class="opt va" border=0 width=45 type=ts did=11
locked=0 encd=0 def=HD new=0 bx=0
shrunk=0 rsize=219336704
odencd=1 dlna=0 thmok=1
src=/images/181_1_00_Help5_OPT_Plus.png>
</a>
<div class="results blood" style="margin: 0 0 0 5em"></div>
</div>
<div class="va bf" id=12>
<img class=va border=0 src=/img/Video_TS.png>
<input class="fs fsts" type=checkbox>
<a class=bf title="Duck's Quack: Animation. Duck has lost his quack, so Sarah suggests visiting the spare-sounds section of the Big Shop. [HD] [AD,S]"
file="/media/My%20Video/Sarah%20%26%20Duck/New_%20Sarah%20%26%20Duck_20150205_1710.ts" type=ts href=#>
New_ Sarah & Duck_20150205_1710.ts
</a>
<span class=filesize> (196.75 MiB) </span>
<img src="/img/channels/out/CBeebies HD.png" class="va browsechannel" height=21 alt="CBeebies HD" title="CBeebies HD">
<img src="/images/173_3_00_G3_Children.png" class="va genre" height=21 alt="Children" title="Children">
<img src="/images/172_1_00_HD.png" class="va" height=21 >
<a href=#>
<img class="opt va" border=0 width=45 type=ts did=12
locked=0 encd=0 def=HD new=0 bx=0
shrunk=0 rsize=206311424
odencd=1 dlna=0 thmok=1
src=/images/181_1_00_Help5_OPT_Plus.png>
</a>
<div class="results blood" style="margin: 0 0 0 5em"></div>
</div>
<div class="va bf" id=13>
<img class=va border=0 src=/img/Video_TS.png>
<input class="fs fsts" type=checkbox>
<a class=bf title="Rainbow's Niece: Animation. Sarah's new colour wheel reminds Rainbow that he has not seen his niece for a while... [HD] [AD,S]"
file="/media/My%20Video/Sarah%20%26%20Duck/New_%20Sarah%20%26%20Duck_20150206_1711.ts" type=ts href=#>
New_ Sarah & Duck_20150206_1711.ts
</a>
<span class=filesize> (183 MiB) </span>
<img src="/img/channels/out/CBeebies HD.png" class="va browsechannel" height=21 alt="CBeebies HD" title="CBeebies HD">
<img src="/images/173_3_00_G3_Children.png" class="va genre" height=21 alt="Children" title="Children">
<img src="/images/172_1_00_HD.png" class="va" height=21 >
<a href=#>
<img class="opt va" border=0 width=45 type=ts did=13
locked=0 encd=0 def=HD new=0 bx=0
shrunk=0 rsize=191893504
odencd=1 dlna=0 thmok=1
src=/images/181_1_00_Help5_OPT_Plus.png>
</a>
<div class="results blood" style="margin: 0 0 0 5em"></div>
</div>
<div class="va bf" id=14>
<img class=va border=0 src=/img/Video_TS.png>
<input class="fs fsts" type=checkbox>
<a class=bf title="Decorating Donkey: Animation. It's nearly time for Tortoise to wake up from hibernation so Sarah plans a pretty surprise. [HD] [AD,S]"
file="/media/My%20Video/Sarah%20%26%20Duck/New_%20Sarah%20%26%20Duck_20150210_1711.ts" type=ts href=#>
New_ Sarah & Duck_20150210_1711.ts
</a>
<span class=filesize> (183.64 MiB) </span>
<img src="/img/channels/out/CBeebies HD.png" class="va browsechannel" height=21 alt="CBeebies HD" title="CBeebies HD">
<img src="/images/173_3_00_G3_Children.png" class="va genre" height=21 alt="Children" title="Children">
<img src="/images/172_1_00_HD.png" class="va" height=21 >
<a href=#>
<img class="opt va" border=0 width=45 type=ts did=14
locked=0 encd=0 def=HD new=0 bx=0
shrunk=0 rsize=192561152
odencd=1 dlna=0 thmok=1
src=/images/181_1_00_Help5_OPT_Plus.png>
</a>
<div class="results blood" style="margin: 0 0 0 5em"></div>
</div>
<div class="va bf" id=15>
<img class=va border=0 src=/img/Video_TS.png>
<input class="fs fsts" type=checkbox>
<a class=bf title="Duck Hotel: Animation. Duck wins a trip for two to a rather exciting hotel and finds that he settles in much quicker than Sarah. [HD] [AD,S]"
file="/media/My%20Video/Sarah%20%26%20Duck/New_%20Sarah%20%26%20Duck_20150211_1710.ts" type=ts href=#>
New_ Sarah & Duck_20150211_1710.ts
</a>
<span class=filesize> (209.08 MiB) </span>
<img src="/img/channels/out/CBeebies HD.png" class="va browsechannel" height=21 alt="CBeebies HD" title="CBeebies HD">
<img src="/images/173_3_00_G3_Children.png" class="va genre" height=21 alt="Children" title="Children">
<img src="/images/172_1_00_HD.png" class="va" height=21 >
<a href=#>
<img class="opt va" border=0 width=45 type=ts did=15
locked=0 encd=0 def=HD new=0 bx=0
shrunk=0 rsize=219234304
odencd=1 dlna=0 thmok=1
src=/images/181_1_00_Help5_OPT_Plus.png>
</a>
<div class="results blood" style="margin: 0 0 0 5em"></div>
</div>
<div class="va bf" id=16>
<img class=va border=0 src=/img/Video_TS.png>
<input class="fs fsts" type=checkbox>
<a class=bf title="Balloon Race: Animation. Scarf Lady takes to the skies in a knitted hot air balloon to race against an old sporting friend. [AD,S]"
file="/media/My%20Video/Sarah%20%26%20Duck/New_%20Sarah%20%26%20Duck_balloon%20race_20131104_1810.ts" type=ts href=#>
New_ Sarah & Duck_balloon race_20131104_1810.ts
</a>
<span class=filesize> (175.11 MiB) </span>
<img src="/img/channels/out/CBeebies.png" class="va browsechannel" height=21 alt="CBeebies" title="CBeebies">
<img src="/images/173_3_00_G3_Children.png" class="va genre" height=21 alt="Children" title="Children">
<img src="/images/172_1_26_SD.png" class="va" height=21 >
<a href=#>
<img class="opt va" border=0 width=45 type=ts did=16
locked=0 encd=0 def=SD new=0 bx=0
shrunk=0 rsize=183619584
odencd=1 dlna=0 thmok=1
src=/images/181_1_00_Help5_OPT_Plus.png>
</a>
<div class="results blood" style="margin: 0 0 0 5em"></div>
</div>
<div class="va bf" id=17>
<img class=va border=0 src=/img/Video_TS.png>
<input class="fs fsts" type=checkbox>
<a class=bf title="Bread Bike: Animation. When Bread Man needs help, Sarah and Duck come to the rescue with their tandem bike! [AD,S]"
file="/media/My%20Video/Sarah%20%26%20Duck/New_%20Sarah%20%26%20Duck_bread%20bike_20131111_1811.ts" type=ts href=#>
New_ Sarah & Duck_bread bike_20131111_1811.ts
</a>
<span class=filesize> (156.8 MiB) </span>