mkm3u: Determine and write out accurate durations for episodes and chapters.
authorMark Wooding <mdw@distorted.org.uk>
Sat, 19 Mar 2022 21:50:46 +0000 (21:50 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Sat, 19 Mar 2022 22:19:27 +0000 (22:19 +0000)
92 files changed:
mkm3u
ref/24.m3u8
ref/a-team.m3u8
ref/agent-carter.m3u8
ref/agents-of-shield.m3u8
ref/allo-allo.m3u8
ref/andromeda.m3u8
ref/angel.m3u8
ref/arrow.m3u8
ref/arrowverse.m3u8
ref/babylon-5.m3u8
ref/batman-1966.m3u8
ref/batwoman.m3u8
ref/between-the-lines.m3u8
ref/blackadder.m3u8
ref/blakes-7.m3u8
ref/brass-eye.m3u8
ref/bsg-1978.m3u8
ref/bsg-1980.m3u8
ref/bsg-2003.m3u8
ref/btvs.m3u8
ref/buffyverse.m3u8
ref/caprica.m3u8
ref/constantine.m3u8
ref/cracker.m3u8
ref/crow-stairway.m3u8
ref/danger-mouse.m3u8
ref/dark-angel.m3u8
ref/dexter.m3u8
ref/dollhouse.m3u8
ref/drwho-crusade.m3u8
ref/drwho-highlanders.m3u8
ref/drwho-invasion.m3u8
ref/drwho-marco-polo.m3u8
ref/drwho-massacre.m3u8
ref/drwho-masterplan.m3u8
ref/drwho-pirates.m3u8
ref/drwho-savages.m3u8
ref/drwho-silurians.m3u8
ref/drwho-smugglers.m3u8
ref/drwho-snowmen.m3u8
ref/drwho-toymaker.m3u8
ref/drwho-war-games.m3u8
ref/drwho-wheel.m3u8
ref/engrenages.m3u8
ref/equalizer.m3u8
ref/fawlty-towers.m3u8
ref/firefly.m3u8
ref/flying-circus-restored.m3u8
ref/flying-circus-sketches.m3u8
ref/fry-and-laurie-chap.m3u8
ref/fry-and-laurie.m3u8
ref/game-of-thrones.m3u8
ref/george-smiley.m3u8
ref/gotham.m3u8
ref/hannibal.m3u8
ref/hhgttg.m3u8
ref/house-of-cards.m3u8
ref/i-claudius.m3u8
ref/into-the-labyrinth.m3u8
ref/knight-rider.m3u8
ref/legends-of-tomorrow.m3u8
ref/lexx.m3u8
ref/lois-and-clark.m3u8
ref/macgyver.m3u8
ref/morse.m3u8
ref/person-of-interest.m3u8
ref/robin-of-sherwood.m3u8
ref/rome.m3u8
ref/sanctuary.m3u8
ref/sapphire-and-steel.m3u8
ref/shark.m3u8
ref/sherlock-holmes.m3u8
ref/smallville.m3u8
ref/spartacus.m3u8
ref/spooks.m3u8
ref/stargate-atlantis.m3u8
ref/stargate-sg1.m3u8
ref/stargate-universe.m3u8
ref/stargate.m3u8
ref/supergirl.m3u8
ref/terminator-scc.m3u8
ref/the-americans.m3u8
ref/the-bridge.m3u8
ref/the-day-today.m3u8
ref/the-flash.m3u8
ref/the-killing.m3u8
ref/the-night-manager.m3u8
ref/the-shield.m3u8
ref/the-wire.m3u8
ref/v-2009.m3u8
ref/waking-the-dead.m3u8

diff --git a/mkm3u b/mkm3u
index f99d8ca..32b9bf2 100755 (executable)
--- a/mkm3u
+++ b/mkm3u
@@ -5,6 +5,7 @@ from contextlib import contextmanager
 import optparse as OP
 import os as OS
 import re as RX
+import subprocess as SP
 import sys as SYS
 
 class ExpectedError (Exception): pass
@@ -59,6 +60,12 @@ class Words (object):
     if begin < 0: return None
     else: return s[begin:].rstrip()
 
+def program_output(*args, **kw):
+  try: return SP.check_output(*args, **kw)
+  except SP.CalledProcessError as e:
+    raise ExpectedError("program `%s' failed with code %d" %
+                          (e.cmd, e.returncode))
+
 URL_SAFE_P = 256*[False]
 for ch in \
     b"ABCDEFGHIJKLMNOPQRSTUVWXYZ" \
@@ -94,7 +101,10 @@ class Source (object):
     me.used_titles = dict()
     me.used_chapters = set()
     me.nuses = 0
-  def url(me, title = None, start_chapter = None, end_chapter = None):
+  def _duration(me, title, start_chapter, end_chapter):
+    return -1
+  def url_and_duration(me, title = None,
+                       start_chapter = None, end_chapter = None):
     if title == "-":
       if me.TITLEP: raise ExpectedError("missing title number")
       if start_chapter is not None or end_chapter is not None:
@@ -112,6 +122,9 @@ class Source (object):
       suffix = "#%d:%d" % (title, start_chapter)
     else:
       suffix = "#%d:%d-%d:%d" % (title, start_chapter, title, end_chapter - 1)
+
+    duration = me._duration(title, start_chapter, end_chapter)
+
     if end_chapter is not None:
       keys = [(title, ch) for ch in range(start_chapter, end_chapter)]
       set = me.used_chapters
@@ -129,7 +142,7 @@ class Source (object):
     if end_chapter is not None:
       for ch in range(start_chapter, end_chapter):
         me.used_chapters.add((title, ch))
-    return me.PREFIX + ROOT + urlencode(me.fn) + suffix
+    return me.PREFIX + ROOT + urlencode(me.fn) + suffix, duration
 
 class VideoDisc (Source):
   PREFIX = "dvd://"
@@ -139,6 +152,26 @@ class VideoDisc (Source):
     super().__init__(fn, *args, **kw)
     me.neps = 0
 
+  def _duration(me, title, start_chapter, end_chapter):
+    path = OS.path.join(ROOT, me.fn)
+    ntitle = int(program_output(["dvd-info", path, "titles"]))
+    if not 1 <= title <= ntitle:
+      raise ExpectedError("bad title %d for `%s': must be in 1 .. %d" %
+                            (title, me.fn, ntitle))
+    if start_chapter is None:
+      durq = "duration:%d" % title
+    else:
+      nch = int(program_output(["dvd-info", path, "chapters:%d" % title]))
+      if end_chapter is None: end_chapter = nch
+      else: end_chapter -= 1
+      if not 1 <= start_chapter <= end_chapter <= nch:
+        raise ExpectedError("bad chapter range %d .. %d for `%s' title %d: "
+                            "must be in 1 .. %d" %
+                            (start_chapter, end_chapter, me.fn, title, nch))
+      durq = "duration:%d.%d-%d" % (title, start_chapter, end_chapter)
+    duration = int(program_output(["dvd-info", path, durq]))
+    return duration
+
 class VideoSeason (object):
   def __init__(me, i, title):
     me.i = i
@@ -249,6 +282,13 @@ class AudioDisc (Source):
   PREFIX = "file://"
   TITLEP = CHAPTERP = False
 
+  def _duration(me, title, start_chapter, end_chaptwr):
+    out = program_output(["metaflac",
+                          "--show-total-samples", "--show-sample-rate",
+                          OS.path.join(ROOT, me.fn)])
+    nsamples, hz = map(float, out.split())
+    return int(nsamples/hz)
+
 class AudioEpisode (AudioDisc):
   def __init__(me, fn, i, *args, **kw):
     super().__init__(fn, *args, **kw)
@@ -283,7 +323,8 @@ class AudioDir (object):
 class Chapter (object):
   def __init__(me, episode, title, i):
     me.title, me.i = title, i
-    me.url = episode.source.url(episode.tno, i, i + 1)
+    me.url, me.duration = \
+      episode.source.url_and_duration(episode.tno, i, i + 1)
 
 class Episode (object):
   def __init__(me, season, i, neps, title, src, tno = None,
@@ -292,7 +333,7 @@ class Episode (object):
     me.i, me.neps, me.title = i, neps, title
     me.chapters = []
     me.source, me.tno = src, tno
-    me.url = src.url(tno, startch, endch)
+    me.url, me.duration = src.url_and_duration(tno, startch, endch)
   def add_chapter(me, title, j):
     ch = Chapter(me, title, j)
     me.chapters.append(ch)
@@ -390,11 +431,11 @@ class Playlist (object):
         label = ep.label()
         if me.nseries > 1: label = ep.season.series.title + " " + label
         if not ep.chapters:
-          f.write("#EXTINF:0,,%s\n%s\n" % (label, ep.url))
+          f.write("#EXTINF:%d,,%s\n%s\n" % (ep.duration, label, ep.url))
         else:
           for ch in ep.chapters:
-            f.write("#EXTINF:0,,%s: %s\n%s\n" %
-                    (label, ch.title, ch.url))
+            f.write("#EXTINF:%d,,%s: %s\n%s\n" %
+                    (ch.duration, label, ch.title, ch.url))
 
 MODE_UNSET = 0
 MODE_SINGLE = 1
index 46ac421..9d3505d 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. 12:00am–1:00am
+#EXTINF:2458,,1.1. 12:00am–1:00am
 dvd:///mnt/dvd/archive/%23/24/S01D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,1.2. 1:00am–2:00am
+#EXTINF:2477,,1.2. 1:00am–2:00am
 dvd:///mnt/dvd/archive/%23/24/S01D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,1.3. 2:00am–3:00am
+#EXTINF:2537,,1.3. 2:00am–3:00am
 dvd:///mnt/dvd/archive/%23/24/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,1.4. 3:00am–4:00am
+#EXTINF:2493,,1.4. 3:00am–4:00am
 dvd:///mnt/dvd/archive/%23/24/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,1.5. 4:00am–5:00am
+#EXTINF:2507,,1.5. 4:00am–5:00am
 dvd:///mnt/dvd/archive/%23/24/S01D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,1.6. 5:00am–6:00am
+#EXTINF:2537,,1.6. 5:00am–6:00am
 dvd:///mnt/dvd/archive/%23/24/S01D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,1.7. 6:00am–7:00am
+#EXTINF:2536,,1.7. 6:00am–7:00am
 dvd:///mnt/dvd/archive/%23/24/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,1.8. 7:00am–8:00am
+#EXTINF:2536,,1.8. 7:00am–8:00am
 dvd:///mnt/dvd/archive/%23/24/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,1.9. 8:00am–9:00am
+#EXTINF:2537,,1.9. 8:00am–9:00am
 dvd:///mnt/dvd/archive/%23/24/S01D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,1.10. 9:00am–10:00am
+#EXTINF:2535,,1.10. 9:00am–10:00am
 dvd:///mnt/dvd/archive/%23/24/S01D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,1.11. 10:00am–11:00am
+#EXTINF:2534,,1.11. 10:00am–11:00am
 dvd:///mnt/dvd/archive/%23/24/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,1.12. 11:00am–12:00pm
+#EXTINF:2534,,1.12. 11:00am–12:00pm
 dvd:///mnt/dvd/archive/%23/24/S01D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,1.13. 12:00pm–1:00pm
+#EXTINF:2535,,1.13. 12:00pm–1:00pm
 dvd:///mnt/dvd/archive/%23/24/S01D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,1.14. 1:00pm–2:00pm
+#EXTINF:2506,,1.14. 1:00pm–2:00pm
 dvd:///mnt/dvd/archive/%23/24/S01D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,1.15. 2:00pm–3:00pm
+#EXTINF:2539,,1.15. 2:00pm–3:00pm
 dvd:///mnt/dvd/archive/%23/24/S01D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,1.16. 3:00pm–4:00pm
+#EXTINF:2508,,1.16. 3:00pm–4:00pm
 dvd:///mnt/dvd/archive/%23/24/S01D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,1.17. 4:00pm–5:00pm
+#EXTINF:2538,,1.17. 4:00pm–5:00pm
 dvd:///mnt/dvd/archive/%23/24/S01D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,1.18. 5:00pm–6:00pm
+#EXTINF:2540,,1.18. 5:00pm–6:00pm
 dvd:///mnt/dvd/archive/%23/24/S01D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,1.19. 6:00pm–7:00pm
+#EXTINF:2455,,1.19. 6:00pm–7:00pm
 dvd:///mnt/dvd/archive/%23/24/S01D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,1.20. 7:00pm–8:00pm
+#EXTINF:2452,,1.20. 7:00pm–8:00pm
 dvd:///mnt/dvd/archive/%23/24/S01D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,1.21. 8:00pm–9:00pm
+#EXTINF:2455,,1.21. 8:00pm–9:00pm
 dvd:///mnt/dvd/archive/%23/24/S01D06.%20E21%e2%80%9324.iso#1
-#EXTINF:0,,1.22. 9:00pm–10:00pm
+#EXTINF:2453,,1.22. 9:00pm–10:00pm
 dvd:///mnt/dvd/archive/%23/24/S01D06.%20E21%e2%80%9324.iso#2
-#EXTINF:0,,1.23. 10:00pm–11:00pm
+#EXTINF:2453,,1.23. 10:00pm–11:00pm
 dvd:///mnt/dvd/archive/%23/24/S01D06.%20E21%e2%80%9324.iso#3
-#EXTINF:0,,1.24. 11:00pm–12:00am
+#EXTINF:2448,,1.24. 11:00pm–12:00am
 dvd:///mnt/dvd/archive/%23/24/S01D06.%20E21%e2%80%9324.iso#4
 
-#EXTINF:0,,2.1. 8:00am–9:00am
+#EXTINF:2988,,2.1. 8:00am–9:00am
 dvd:///mnt/dvd/archive/%23/24/S02D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,2.2. 9:00am–10:00am
+#EXTINF:2517,,2.2. 9:00am–10:00am
 dvd:///mnt/dvd/archive/%23/24/S02D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,2.3. 10:00am–11:00am
+#EXTINF:2517,,2.3. 10:00am–11:00am
 dvd:///mnt/dvd/archive/%23/24/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,2.4. 11:00am–12:00pm
+#EXTINF:2544,,2.4. 11:00am–12:00pm
 dvd:///mnt/dvd/archive/%23/24/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.5. 12:00pm–1:00pm
+#EXTINF:2543,,2.5. 12:00pm–1:00pm
 dvd:///mnt/dvd/archive/%23/24/S02D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,2.6. 1:00pm–2:00pm
+#EXTINF:2519,,2.6. 1:00pm–2:00pm
 dvd:///mnt/dvd/archive/%23/24/S02D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,2.7. 2:00pm–3:00pm
+#EXTINF:2545,,2.7. 2:00pm–3:00pm
 dvd:///mnt/dvd/archive/%23/24/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,2.8. 3:00pm–4:00pm
+#EXTINF:2516,,2.8. 3:00pm–4:00pm
 dvd:///mnt/dvd/archive/%23/24/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.9. 4:00pm–5:00pm
+#EXTINF:2517,,2.9. 4:00pm–5:00pm
 dvd:///mnt/dvd/archive/%23/24/S02D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,2.10. 5:00pm–6:00pm
+#EXTINF:2487,,2.10. 5:00pm–6:00pm
 dvd:///mnt/dvd/archive/%23/24/S02D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,2.11. 6:00pm–7:00pm
+#EXTINF:2459,,2.11. 6:00pm–7:00pm
 dvd:///mnt/dvd/archive/%23/24/S02D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,2.12. 7:00pm–8:00pm
+#EXTINF:2451,,2.12. 7:00pm–8:00pm
 dvd:///mnt/dvd/archive/%23/24/S02D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,2.13. 8:00pm–9:00pm
+#EXTINF:2459,,2.13. 8:00pm–9:00pm
 dvd:///mnt/dvd/archive/%23/24/S02D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,2.14. 9:00pm–10:00pm
+#EXTINF:2543,,2.14. 9:00pm–10:00pm
 dvd:///mnt/dvd/archive/%23/24/S02D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,2.15. 10:00pm–11:00pm
+#EXTINF:2546,,2.15. 10:00pm–11:00pm
 dvd:///mnt/dvd/archive/%23/24/S02D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,2.16. 11:00pm–12:00am
+#EXTINF:2521,,2.16. 11:00pm–12:00am
 dvd:///mnt/dvd/archive/%23/24/S02D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,2.17. 12:00am–1:00am
+#EXTINF:2546,,2.17. 12:00am–1:00am
 dvd:///mnt/dvd/archive/%23/24/S02D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,2.18. 1:00am–2:00am
+#EXTINF:2546,,2.18. 1:00am–2:00am
 dvd:///mnt/dvd/archive/%23/24/S02D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,2.19. 2:00am–3:00am
+#EXTINF:2535,,2.19. 2:00am–3:00am
 dvd:///mnt/dvd/archive/%23/24/S02D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,2.20. 3:00am–4:00am
+#EXTINF:2482,,2.20. 3:00am–4:00am
 dvd:///mnt/dvd/archive/%23/24/S02D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,2.21. 4:00am–5:00am
+#EXTINF:2545,,2.21. 4:00am–5:00am
 dvd:///mnt/dvd/archive/%23/24/S02D06.%20E21%e2%80%9324.iso#1
-#EXTINF:0,,2.22. 5:00am–6:00am
+#EXTINF:2545,,2.22. 5:00am–6:00am
 dvd:///mnt/dvd/archive/%23/24/S02D06.%20E21%e2%80%9324.iso#2
-#EXTINF:0,,2.23. 6:00am–7:00am
+#EXTINF:2488,,2.23. 6:00am–7:00am
 dvd:///mnt/dvd/archive/%23/24/S02D06.%20E21%e2%80%9324.iso#3
-#EXTINF:0,,2.24. 7:00am–8:00am
+#EXTINF:2486,,2.24. 7:00am–8:00am
 dvd:///mnt/dvd/archive/%23/24/S02D06.%20E21%e2%80%9324.iso#4
 
-#EXTINF:0,,3.1. 1:00pm–2:00pm
+#EXTINF:2978,,3.1. 1:00pm–2:00pm
 dvd:///mnt/dvd/archive/%23/24/S03D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,3.2. 2:00pm–3:00pm
+#EXTINF:2540,,3.2. 2:00pm–3:00pm
 dvd:///mnt/dvd/archive/%23/24/S03D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,3.3. 3:00pm–4:00pm
+#EXTINF:2500,,3.3. 3:00pm–4:00pm
 dvd:///mnt/dvd/archive/%23/24/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,3.4. 4:00pm–5:00pm
+#EXTINF:2514,,3.4. 4:00pm–5:00pm
 dvd:///mnt/dvd/archive/%23/24/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,3.5. 5:00pm–6:00pm
+#EXTINF:2531,,3.5. 5:00pm–6:00pm
 dvd:///mnt/dvd/archive/%23/24/S03D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,3.6. 6:00pm–7:00pm
+#EXTINF:2513,,3.6. 6:00pm–7:00pm
 dvd:///mnt/dvd/archive/%23/24/S03D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,3.7. 7:00pm–8:00pm
+#EXTINF:2449,,3.7. 7:00pm–8:00pm
 dvd:///mnt/dvd/archive/%23/24/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,3.8. 8:00pm–9:00pm
+#EXTINF:2513,,3.8. 8:00pm–9:00pm
 dvd:///mnt/dvd/archive/%23/24/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,3.9. 9:00pm–10:00pm
+#EXTINF:2545,,3.9. 9:00pm–10:00pm
 dvd:///mnt/dvd/archive/%23/24/S03D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,3.10. 10:00pm–11:00pm
+#EXTINF:2539,,3.10. 10:00pm–11:00pm
 dvd:///mnt/dvd/archive/%23/24/S03D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,3.11. 11:00pm–12:00am
+#EXTINF:2499,,3.11. 11:00pm–12:00am
 dvd:///mnt/dvd/archive/%23/24/S03D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,3.12. 12:00am–1:00am
+#EXTINF:2537,,3.12. 12:00am–1:00am
 dvd:///mnt/dvd/archive/%23/24/S03D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,3.13. 1:00am–2:00am
+#EXTINF:2543,,3.13. 1:00am–2:00am
 dvd:///mnt/dvd/archive/%23/24/S03D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,3.14. 2:00am–3:00am
+#EXTINF:2528,,3.14. 2:00am–3:00am
 dvd:///mnt/dvd/archive/%23/24/S03D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,3.15. 3:00am–4:00am
+#EXTINF:2515,,3.15. 3:00am–4:00am
 dvd:///mnt/dvd/archive/%23/24/S03D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,3.16. 4:00am–5:00am
+#EXTINF:2484,,3.16. 4:00am–5:00am
 dvd:///mnt/dvd/archive/%23/24/S03D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,3.17. 5:00am–6:00am
+#EXTINF:2538,,3.17. 5:00am–6:00am
 dvd:///mnt/dvd/archive/%23/24/S03D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,3.18. 6:00am–7:00am
+#EXTINF:2482,,3.18. 6:00am–7:00am
 dvd:///mnt/dvd/archive/%23/24/S03D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,3.19. 7:00am–8:00am
+#EXTINF:2538,,3.19. 7:00am–8:00am
 dvd:///mnt/dvd/archive/%23/24/S03D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,3.20. 8:00am–9:00am
+#EXTINF:2537,,3.20. 8:00am–9:00am
 dvd:///mnt/dvd/archive/%23/24/S03D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,3.21. 9:00am–10:00am
+#EXTINF:2516,,3.21. 9:00am–10:00am
 dvd:///mnt/dvd/archive/%23/24/S03D06.%20E21%e2%80%9324.iso#1
-#EXTINF:0,,3.22. 10:00am–11:00am
+#EXTINF:2369,,3.22. 10:00am–11:00am
 dvd:///mnt/dvd/archive/%23/24/S03D06.%20E21%e2%80%9324.iso#2
-#EXTINF:0,,3.23. 11:00am–12:00pm
+#EXTINF:2427,,3.23. 11:00am–12:00pm
 dvd:///mnt/dvd/archive/%23/24/S03D06.%20E21%e2%80%9324.iso#3
-#EXTINF:0,,3.24. 12:00pm–1:00pm
+#EXTINF:2399,,3.24. 12:00pm–1:00pm
 dvd:///mnt/dvd/archive/%23/24/S03D06.%20E21%e2%80%9324.iso#4
 
-#EXTINF:0,,4.1. 7:00am–8:00am
+#EXTINF:2475,,4.1. 7:00am–8:00am
 dvd:///mnt/dvd/archive/%23/24/S04D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,4.2. 8:00am–9:00am
+#EXTINF:2516,,4.2. 8:00am–9:00am
 dvd:///mnt/dvd/archive/%23/24/S04D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,4.3. 9:00am–10:00am
+#EXTINF:2526,,4.3. 9:00am–10:00am
 dvd:///mnt/dvd/archive/%23/24/S04D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,4.4. 10:00am–11:00am
+#EXTINF:2539,,4.4. 10:00am–11:00am
 dvd:///mnt/dvd/archive/%23/24/S04D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,4.5. 11:00am–12:00pm
+#EXTINF:2531,,4.5. 11:00am–12:00pm
 dvd:///mnt/dvd/archive/%23/24/S04D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,4.6. 12:00pm–1:00pm
+#EXTINF:2533,,4.6. 12:00pm–1:00pm
 dvd:///mnt/dvd/archive/%23/24/S04D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,4.7. 1:00pm–2:00pm
+#EXTINF:2535,,4.7. 1:00pm–2:00pm
 dvd:///mnt/dvd/archive/%23/24/S04D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,4.8. 2:00pm–3:00pm
+#EXTINF:2535,,4.8. 2:00pm–3:00pm
 dvd:///mnt/dvd/archive/%23/24/S04D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,4.9. 3:00pm–4:00pm
+#EXTINF:2492,,4.9. 3:00pm–4:00pm
 dvd:///mnt/dvd/archive/%23/24/S04D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,4.10. 4:00pm–5:00pm
+#EXTINF:2529,,4.10. 4:00pm–5:00pm
 dvd:///mnt/dvd/archive/%23/24/S04D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,4.11. 5:00pm–6:00pm
+#EXTINF:2515,,4.11. 5:00pm–6:00pm
 dvd:///mnt/dvd/archive/%23/24/S04D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,4.12. 6:00pm–7:00pm
+#EXTINF:2534,,4.12. 6:00pm–7:00pm
 dvd:///mnt/dvd/archive/%23/24/S04D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,4.13. 7:00pm–8:00pm
+#EXTINF:2534,,4.13. 7:00pm–8:00pm
 dvd:///mnt/dvd/archive/%23/24/S04D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,4.14. 8:00pm–9:00pm
+#EXTINF:2506,,4.14. 8:00pm–9:00pm
 dvd:///mnt/dvd/archive/%23/24/S04D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,4.15. 9:00pm–10:00pm
+#EXTINF:2486,,4.15. 9:00pm–10:00pm
 dvd:///mnt/dvd/archive/%23/24/S04D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,4.16. 10:00pm–11:00pm
+#EXTINF:2528,,4.16. 10:00pm–11:00pm
 dvd:///mnt/dvd/archive/%23/24/S04D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,4.17. 11:00pm–12:00am
+#EXTINF:2534,,4.17. 11:00pm–12:00am
 dvd:///mnt/dvd/archive/%23/24/S04D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,4.18. 12:00am–1:00am
+#EXTINF:2489,,4.18. 12:00am–1:00am
 dvd:///mnt/dvd/archive/%23/24/S04D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,4.19. 1:00am–2:00am
+#EXTINF:2535,,4.19. 1:00am–2:00am
 dvd:///mnt/dvd/archive/%23/24/S04D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,4.20. 2:00am–3:00am
+#EXTINF:2535,,4.20. 2:00am–3:00am
 dvd:///mnt/dvd/archive/%23/24/S04D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,4.21. 3:00am–4:00am
+#EXTINF:2536,,4.21. 3:00am–4:00am
 dvd:///mnt/dvd/archive/%23/24/S04D06.%20E21%e2%80%9324.iso#1
-#EXTINF:0,,4.22. 4:00am–5:00am
+#EXTINF:2502,,4.22. 4:00am–5:00am
 dvd:///mnt/dvd/archive/%23/24/S04D06.%20E21%e2%80%9324.iso#2
-#EXTINF:0,,4.23. 5:00am–6:00am
+#EXTINF:2525,,4.23. 5:00am–6:00am
 dvd:///mnt/dvd/archive/%23/24/S04D06.%20E21%e2%80%9324.iso#3
-#EXTINF:0,,4.24. 6:00am–7:00am
+#EXTINF:2522,,4.24. 6:00am–7:00am
 dvd:///mnt/dvd/archive/%23/24/S04D06.%20E21%e2%80%9324.iso#4
 
-#EXTINF:0,,5.1. 7:00am–8:00am
+#EXTINF:2444,,5.1. 7:00am–8:00am
 dvd:///mnt/dvd/archive/%23/24/S05D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,5.2. 8:00am–9:00am
+#EXTINF:2592,,5.2. 8:00am–9:00am
 dvd:///mnt/dvd/archive/%23/24/S05D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,5.3. 9:00am–10:00am
+#EXTINF:2493,,5.3. 9:00am–10:00am
 dvd:///mnt/dvd/archive/%23/24/S05D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,5.4. 10:00am–11:00am
+#EXTINF:2516,,5.4. 10:00am–11:00am
 dvd:///mnt/dvd/archive/%23/24/S05D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,5.5. 11:00am–12:00pm
+#EXTINF:2537,,5.5. 11:00am–12:00pm
 dvd:///mnt/dvd/archive/%23/24/S05D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,5.6. 12:00pm–1:00pm
+#EXTINF:2539,,5.6. 12:00pm–1:00pm
 dvd:///mnt/dvd/archive/%23/24/S05D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,5.7. 1:00pm–2:00pm
+#EXTINF:2492,,5.7. 1:00pm–2:00pm
 dvd:///mnt/dvd/archive/%23/24/S05D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,5.8. 2:00pm–3:00pm
+#EXTINF:2539,,5.8. 2:00pm–3:00pm
 dvd:///mnt/dvd/archive/%23/24/S05D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,5.9. 3:00pm–4:00pm
+#EXTINF:2510,,5.9. 3:00pm–4:00pm
 dvd:///mnt/dvd/archive/%23/24/S05D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,5.10. 4:00pm–5:00pm
+#EXTINF:2540,,5.10. 4:00pm–5:00pm
 dvd:///mnt/dvd/archive/%23/24/S05D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,5.11. 5:00pm–6:00pm
+#EXTINF:2481,,5.11. 5:00pm–6:00pm
 dvd:///mnt/dvd/archive/%23/24/S05D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,5.12. 6:00pm–7:00pm
+#EXTINF:2487,,5.12. 6:00pm–7:00pm
 dvd:///mnt/dvd/archive/%23/24/S05D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,5.13. 7:00pm–8:00pm
+#EXTINF:2537,,5.13. 7:00pm–8:00pm
 dvd:///mnt/dvd/archive/%23/24/S05D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,5.14. 8:00pm–9:00pm
+#EXTINF:2537,,5.14. 8:00pm–9:00pm
 dvd:///mnt/dvd/archive/%23/24/S05D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,5.15. 9:00pm–10:00pm
+#EXTINF:2538,,5.15. 9:00pm–10:00pm
 dvd:///mnt/dvd/archive/%23/24/S05D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,5.16. 10:00pm–11:00pm
+#EXTINF:2480,,5.16. 10:00pm–11:00pm
 dvd:///mnt/dvd/archive/%23/24/S05D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,5.17. 11:00pm–12:00am
+#EXTINF:2538,,5.17. 11:00pm–12:00am
 dvd:///mnt/dvd/archive/%23/24/S05D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,5.18. 12:00am–1:00am
+#EXTINF:2538,,5.18. 12:00am–1:00am
 dvd:///mnt/dvd/archive/%23/24/S05D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,5.19. 1:00am–2:00am
+#EXTINF:2533,,5.19. 1:00am–2:00am
 dvd:///mnt/dvd/archive/%23/24/S05D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,5.20. 2:00am–3:00am
+#EXTINF:2528,,5.20. 2:00am–3:00am
 dvd:///mnt/dvd/archive/%23/24/S05D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,5.21. 3:00am–4:00am
+#EXTINF:2499,,5.21. 3:00am–4:00am
 dvd:///mnt/dvd/archive/%23/24/S05D06.%20E21%e2%80%9324.iso#2
-#EXTINF:0,,5.22. 4:00am–5:00am
+#EXTINF:2509,,5.22. 4:00am–5:00am
 dvd:///mnt/dvd/archive/%23/24/S05D06.%20E21%e2%80%9324.iso#3
-#EXTINF:0,,5.23. 5:00am–6:00am
+#EXTINF:2536,,5.23. 5:00am–6:00am
 dvd:///mnt/dvd/archive/%23/24/S05D06.%20E21%e2%80%9324.iso#4
-#EXTINF:0,,5.24. 6:00am–7:00am
+#EXTINF:2505,,5.24. 6:00am–7:00am
 dvd:///mnt/dvd/archive/%23/24/S05D06.%20E21%e2%80%9324.iso#5
 
-#EXTINF:0,,6.1. 6:00am–7:00am
+#EXTINF:2481,,6.1. 6:00am–7:00am
 dvd:///mnt/dvd/archive/%23/24/S06D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,6.2. 7:00am–8:00am
+#EXTINF:2535,,6.2. 7:00am–8:00am
 dvd:///mnt/dvd/archive/%23/24/S06D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,6.3. 8:00am–9:00am
+#EXTINF:2531,,6.3. 8:00am–9:00am
 dvd:///mnt/dvd/archive/%23/24/S06D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,6.4. 9:00am–10:00am
+#EXTINF:2518,,6.4. 9:00am–10:00am
 dvd:///mnt/dvd/archive/%23/24/S06D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,6.5. 10:00am–11:00am
+#EXTINF:2507,,6.5. 10:00am–11:00am
 dvd:///mnt/dvd/archive/%23/24/S06D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,6.6. 11:00am–12:00pm
+#EXTINF:2508,,6.6. 11:00am–12:00pm
 dvd:///mnt/dvd/archive/%23/24/S06D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,6.7. 12:00pm–1:00pm
+#EXTINF:2537,,6.7. 12:00pm–1:00pm
 dvd:///mnt/dvd/archive/%23/24/S06D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,6.8. 1:00pm–2:00pm
+#EXTINF:2537,,6.8. 1:00pm–2:00pm
 dvd:///mnt/dvd/archive/%23/24/S06D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,6.9. 2:00pm–3:00pm
+#EXTINF:2478,,6.9. 2:00pm–3:00pm
 dvd:///mnt/dvd/archive/%23/24/S06D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,6.10. 3:00pm–4:00pm
+#EXTINF:2487,,6.10. 3:00pm–4:00pm
 dvd:///mnt/dvd/archive/%23/24/S06D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,6.11. 4:00pm–5:00pm
+#EXTINF:2522,,6.11. 4:00pm–5:00pm
 dvd:///mnt/dvd/archive/%23/24/S06D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,6.12. 5:00pm–6:00pm
+#EXTINF:2483,,6.12. 5:00pm–6:00pm
 dvd:///mnt/dvd/archive/%23/24/S06D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,6.13. 6:00pm–7:00pm
+#EXTINF:2516,,6.13. 6:00pm–7:00pm
 dvd:///mnt/dvd/archive/%23/24/S06D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,6.14. 7:00pm–8:00pm
+#EXTINF:2479,,6.14. 7:00pm–8:00pm
 dvd:///mnt/dvd/archive/%23/24/S06D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,6.15. 8:00pm–9:00pm
+#EXTINF:2526,,6.15. 8:00pm–9:00pm
 dvd:///mnt/dvd/archive/%23/24/S06D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,6.16. 9:00pm–10:00pm
+#EXTINF:2462,,6.16. 9:00pm–10:00pm
 dvd:///mnt/dvd/archive/%23/24/S06D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,6.17. 10:00pm–11:00pm
+#EXTINF:2534,,6.17. 10:00pm–11:00pm
 dvd:///mnt/dvd/archive/%23/24/S06D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,6.18. 11:00pm–12:00am
+#EXTINF:2521,,6.18. 11:00pm–12:00am
 dvd:///mnt/dvd/archive/%23/24/S06D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,6.19. 12:00am–1:00am
+#EXTINF:2515,,6.19. 12:00am–1:00am
 dvd:///mnt/dvd/archive/%23/24/S06D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,6.20. 1:00am–2:00am
+#EXTINF:2520,,6.20. 1:00am–2:00am
 dvd:///mnt/dvd/archive/%23/24/S06D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,6.21. 2:00am–3:00am
+#EXTINF:2496,,6.21. 2:00am–3:00am
 dvd:///mnt/dvd/archive/%23/24/S06D06.%20E21%e2%80%9324.iso#2
-#EXTINF:0,,6.22. 3:00am–4:00am
+#EXTINF:2505,,6.22. 3:00am–4:00am
 dvd:///mnt/dvd/archive/%23/24/S06D06.%20E21%e2%80%9324.iso#3
-#EXTINF:0,,6.23. 4:00am–5:00am
+#EXTINF:2419,,6.23. 4:00am–5:00am
 dvd:///mnt/dvd/archive/%23/24/S06D06.%20E21%e2%80%9324.iso#4
-#EXTINF:0,,6.24. 5:00am–6:00am
+#EXTINF:2530,,6.24. 5:00am–6:00am
 dvd:///mnt/dvd/archive/%23/24/S06D06.%20E21%e2%80%9324.iso#5
 
-#EXTINF:0,,24—Redemption
+#EXTINF:5877,,24—Redemption
 dvd:///mnt/dvd/archive/%23/24%e2%80%94Redemption/Extended%20version.iso#1
 
-#EXTINF:0,,7.1. 8:00am–9:00am
+#EXTINF:2667,,7.1. 8:00am–9:00am
 dvd:///mnt/dvd/archive/%23/24/S07D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,7.2. 9:00am–10:00am
+#EXTINF:2398,,7.2. 9:00am–10:00am
 dvd:///mnt/dvd/archive/%23/24/S07D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,7.3. 10:00am–11:00am
+#EXTINF:2536,,7.3. 10:00am–11:00am
 dvd:///mnt/dvd/archive/%23/24/S07D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,7.4. 11:00am–12:00pm
+#EXTINF:2536,,7.4. 11:00am–12:00pm
 dvd:///mnt/dvd/archive/%23/24/S07D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,7.5. 12:00pm–1:00pm
+#EXTINF:2461,,7.5. 12:00pm–1:00pm
 dvd:///mnt/dvd/archive/%23/24/S07D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,7.6. 1:00pm–2:00pm
+#EXTINF:2516,,7.6. 1:00pm–2:00pm
 dvd:///mnt/dvd/archive/%23/24/S07D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,7.7. 2:00pm–3:00pm
+#EXTINF:2491,,7.7. 2:00pm–3:00pm
 dvd:///mnt/dvd/archive/%23/24/S07D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,7.8. 3:00pm–4:00pm
+#EXTINF:2526,,7.8. 3:00pm–4:00pm
 dvd:///mnt/dvd/archive/%23/24/S07D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,7.9. 4:00pm–5:00pm
+#EXTINF:2535,,7.9. 4:00pm–5:00pm
 dvd:///mnt/dvd/archive/%23/24/S07D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,7.10. 5:00pm–6:00pm
+#EXTINF:2535,,7.10. 5:00pm–6:00pm
 dvd:///mnt/dvd/archive/%23/24/S07D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,7.11. 6:00pm–7:00pm
+#EXTINF:2510,,7.11. 6:00pm–7:00pm
 dvd:///mnt/dvd/archive/%23/24/S07D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,7.12. 7:00pm–8:00pm
+#EXTINF:2526,,7.12. 7:00pm–8:00pm
 dvd:///mnt/dvd/archive/%23/24/S07D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,7.13. 8:00pm–9:00pm
+#EXTINF:2534,,7.13. 8:00pm–9:00pm
 dvd:///mnt/dvd/archive/%23/24/S07D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,7.14. 9:00pm–10:00pm
+#EXTINF:2534,,7.14. 9:00pm–10:00pm
 dvd:///mnt/dvd/archive/%23/24/S07D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,7.15. 10:00pm–11:00pm
+#EXTINF:2507,,7.15. 10:00pm–11:00pm
 dvd:///mnt/dvd/archive/%23/24/S07D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,7.16. 11:00pm–12:00am
+#EXTINF:2516,,7.16. 11:00pm–12:00am
 dvd:///mnt/dvd/archive/%23/24/S07D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,7.17. 12:00am–1:00am
+#EXTINF:2534,,7.17. 12:00am–1:00am
 dvd:///mnt/dvd/archive/%23/24/S07D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,7.18. 1:00am–2:00am
+#EXTINF:2476,,7.18. 1:00am–2:00am
 dvd:///mnt/dvd/archive/%23/24/S07D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,7.19. 2:00am–3:00am
+#EXTINF:2477,,7.19. 2:00am–3:00am
 dvd:///mnt/dvd/archive/%23/24/S07D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,7.20. 3:00am–4:00am
+#EXTINF:2524,,7.20. 3:00am–4:00am
 dvd:///mnt/dvd/archive/%23/24/S07D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,7.21. 4:00am–5:00am
+#EXTINF:2525,,7.21. 4:00am–5:00am
 dvd:///mnt/dvd/archive/%23/24/S07D06.%20E21%e2%80%9324.iso#2
-#EXTINF:0,,7.22. 5:00am–6:00am
+#EXTINF:2481,,7.22. 5:00am–6:00am
 dvd:///mnt/dvd/archive/%23/24/S07D06.%20E21%e2%80%9324.iso#3
-#EXTINF:0,,7.23. 6:00am–7:00am
+#EXTINF:2506,,7.23. 6:00am–7:00am
 dvd:///mnt/dvd/archive/%23/24/S07D06.%20E21%e2%80%9324.iso#4
-#EXTINF:0,,7.24. 7:00am–8:00am
+#EXTINF:2669,,7.24. 7:00am–8:00am
 dvd:///mnt/dvd/archive/%23/24/S07D06.%20E21%e2%80%9324.iso#5
 
-#EXTINF:0,,8.1. 4:00pm–5:00pm
+#EXTINF:2458,,8.1. 4:00pm–5:00pm
 dvd:///mnt/dvd/archive/%23/24/S08D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,8.2. 5:00pm–6:00pm
+#EXTINF:2558,,8.2. 5:00pm–6:00pm
 dvd:///mnt/dvd/archive/%23/24/S08D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,8.3. 6:00pm–7:00pm
+#EXTINF:2374,,8.3. 6:00pm–7:00pm
 dvd:///mnt/dvd/archive/%23/24/S08D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,8.4. 7:00pm–8:00pm
+#EXTINF:2735,,8.4. 7:00pm–8:00pm
 dvd:///mnt/dvd/archive/%23/24/S08D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,8.5. 8:00pm–9:00pm
+#EXTINF:2537,,8.5. 8:00pm–9:00pm
 dvd:///mnt/dvd/archive/%23/24/S08D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,8.6. 9:00pm–10:00pm
+#EXTINF:2631,,8.6. 9:00pm–10:00pm
 dvd:///mnt/dvd/archive/%23/24/S08D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,8.7. 10:00pm–11:00pm
+#EXTINF:2534,,8.7. 10:00pm–11:00pm
 dvd:///mnt/dvd/archive/%23/24/S08D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,8.8. 11:00pm–12:00am
+#EXTINF:2534,,8.8. 11:00pm–12:00am
 dvd:///mnt/dvd/archive/%23/24/S08D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,8.9. 12:00am–1:00am
+#EXTINF:2496,,8.9. 12:00am–1:00am
 dvd:///mnt/dvd/archive/%23/24/S08D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,8.10. 1:00am–2:00am
+#EXTINF:2522,,8.10. 1:00am–2:00am
 dvd:///mnt/dvd/archive/%23/24/S08D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,8.11. 2:00am–3:00am
+#EXTINF:2483,,8.11. 2:00am–3:00am
 dvd:///mnt/dvd/archive/%23/24/S08D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,8.12. 3:00am–4:00am
+#EXTINF:2508,,8.12. 3:00am–4:00am
 dvd:///mnt/dvd/archive/%23/24/S08D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,8.13. 4:00am–5:00am
+#EXTINF:2599,,8.13. 4:00am–5:00am
 dvd:///mnt/dvd/archive/%23/24/S08D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,8.14. 5:00am–6:00am
+#EXTINF:2421,,8.14. 5:00am–6:00am
 dvd:///mnt/dvd/archive/%23/24/S08D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,8.15. 6:00am–7:00am
+#EXTINF:2476,,8.15. 6:00am–7:00am
 dvd:///mnt/dvd/archive/%23/24/S08D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,8.16. 7:00am–8:00am
+#EXTINF:2674,,8.16. 7:00am–8:00am
 dvd:///mnt/dvd/archive/%23/24/S08D04.%20E13%e2%80%9316.iso#7
-#EXTINF:0,,8.17. 8:00am–9:00am
+#EXTINF:2653,,8.17. 8:00am–9:00am
 dvd:///mnt/dvd/archive/%23/24/S08D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,8.18. 9:00am–10:00am
+#EXTINF:2532,,8.18. 9:00am–10:00am
 dvd:///mnt/dvd/archive/%23/24/S08D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,8.19. 10:00am–11:00am
+#EXTINF:2531,,8.19. 10:00am–11:00am
 dvd:///mnt/dvd/archive/%23/24/S08D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,8.20. 11:00am–12:00pm
+#EXTINF:2627,,8.20. 11:00am–12:00pm
 dvd:///mnt/dvd/archive/%23/24/S08D05.%20E17%e2%80%9320.iso#7
-#EXTINF:0,,8.21. 12:00pm–1:00pm
+#EXTINF:2578,,8.21. 12:00pm–1:00pm
 dvd:///mnt/dvd/archive/%23/24/S08D06.%20E21%e2%80%9324.iso#3
-#EXTINF:0,,8.22. 1:00pm–2:00pm
+#EXTINF:2483,,8.22. 1:00pm–2:00pm
 dvd:///mnt/dvd/archive/%23/24/S08D06.%20E21%e2%80%9324.iso#4
-#EXTINF:0,,8.23. 2:00pm–3:00pm
+#EXTINF:2532,,8.23. 2:00pm–3:00pm
 dvd:///mnt/dvd/archive/%23/24/S08D06.%20E21%e2%80%9324.iso#5
-#EXTINF:0,,8.24. 3:00pm–4:00pm
+#EXTINF:2630,,8.24. 3:00pm–4:00pm
 dvd:///mnt/dvd/archive/%23/24/S08D06.%20E21%e2%80%9324.iso#6
 
-#EXTINF:0,,Live Another Day—1. 11:00am–12:00pm
+#EXTINF:2554,,Live Another Day—1. 11:00am–12:00pm
 dvd:///mnt/dvd/archive/%23/24/S09D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,Live Another Day—2. 12:00pm–1:00pm
+#EXTINF:2519,,Live Another Day—2. 12:00pm–1:00pm
 dvd:///mnt/dvd/archive/%23/24/S09D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,Live Another Day—3. 1:00pm–2:00pm
+#EXTINF:2452,,Live Another Day—3. 1:00pm–2:00pm
 dvd:///mnt/dvd/archive/%23/24/S09D01.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,Live Another Day—4. 2:00pm–3:00pm
+#EXTINF:2521,,Live Another Day—4. 2:00pm–3:00pm
 dvd:///mnt/dvd/archive/%23/24/S09D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,Live Another Day—5. 3:00pm–4:00pm
+#EXTINF:2501,,Live Another Day—5. 3:00pm–4:00pm
 dvd:///mnt/dvd/archive/%23/24/S09D02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,Live Another Day—6. 4:00pm–5:00pm
+#EXTINF:2515,,Live Another Day—6. 4:00pm–5:00pm
 dvd:///mnt/dvd/archive/%23/24/S09D02.%20E04%e2%80%9306.iso#5
-#EXTINF:0,,Live Another Day—7. 5:00pm–6:00pm
+#EXTINF:2473,,Live Another Day—7. 5:00pm–6:00pm
 dvd:///mnt/dvd/archive/%23/24/S09D03.%20E07%e2%80%9309.iso#3
-#EXTINF:0,,Live Another Day—8. 6:00pm–7:00pm
+#EXTINF:2524,,Live Another Day—8. 6:00pm–7:00pm
 dvd:///mnt/dvd/archive/%23/24/S09D03.%20E07%e2%80%9309.iso#4
-#EXTINF:0,,Live Another Day—9. 7:00pm–8:00pm
+#EXTINF:2507,,Live Another Day—9. 7:00pm–8:00pm
 dvd:///mnt/dvd/archive/%23/24/S09D03.%20E07%e2%80%9309.iso#5
-#EXTINF:0,,Live Another Day—10. 8:00pm–9:00pm
+#EXTINF:2469,,Live Another Day—10. 8:00pm–9:00pm
 dvd:///mnt/dvd/archive/%23/24/S09D04.%20E10%e2%80%9312.iso#3
-#EXTINF:0,,Live Another Day—11. 9:00pm–10:00pm
+#EXTINF:2466,,Live Another Day—11. 9:00pm–10:00pm
 dvd:///mnt/dvd/archive/%23/24/S09D04.%20E10%e2%80%9312.iso#4
-#EXTINF:0,,Live Another Day—12. 10:00pm–11:00pm
+#EXTINF:2530,,Live Another Day—12. 10:00pm–11:00pm
 dvd:///mnt/dvd/archive/%23/24/S09D04.%20E10%e2%80%9312.iso#5
index a2b4040..0ffa790 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Mexican Slayride (Pilot)
+#EXTINF:5484,,1.1. Mexican Slayride (Pilot)
 dvd:///mnt/dvd/archive/A/The%20A-Team/S01D01.%20E01%e2%80%9302.iso#1
-#EXTINF:0,,1.2. Children of Jamestown
+#EXTINF:2660,,1.2. Children of Jamestown
 dvd:///mnt/dvd/archive/A/The%20A-Team/S01D01.%20E01%e2%80%9302.iso#2
-#EXTINF:0,,1.3. Pros and Cons
+#EXTINF:2779,,1.3. Pros and Cons
 dvd:///mnt/dvd/archive/A/The%20A-Team/S01D02.%20E03%e2%80%9305.iso#1
-#EXTINF:0,,1.4. A Small and Deadly War
+#EXTINF:2736,,1.4. A Small and Deadly War
 dvd:///mnt/dvd/archive/A/The%20A-Team/S01D02.%20E03%e2%80%9305.iso#2
-#EXTINF:0,,1.5. Black Day at Bad Rock
+#EXTINF:2774,,1.5. Black Day at Bad Rock
 dvd:///mnt/dvd/archive/A/The%20A-Team/S01D02.%20E03%e2%80%9305.iso#3
-#EXTINF:0,,1.6. The Rabbit Who Ate Las Vegas
+#EXTINF:2745,,1.6. The Rabbit Who Ate Las Vegas
 dvd:///mnt/dvd/archive/A/The%20A-Team/S01D03.%20E06%e2%80%9308.iso#1
-#EXTINF:0,,1.7. The Out-of-Towners
+#EXTINF:2772,,1.7. The Out-of-Towners
 dvd:///mnt/dvd/archive/A/The%20A-Team/S01D03.%20E06%e2%80%9308.iso#2
-#EXTINF:0,,1.8. Holiday in the Hills
+#EXTINF:2763,,1.8. Holiday in the Hills
 dvd:///mnt/dvd/archive/A/The%20A-Team/S01D03.%20E06%e2%80%9308.iso#3
-#EXTINF:0,,1.9. West Coast Turnaround
+#EXTINF:2780,,1.9. West Coast Turnaround
 dvd:///mnt/dvd/archive/A/The%20A-Team/S01D04.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,1.10. One More Time
+#EXTINF:2772,,1.10. One More Time
 dvd:///mnt/dvd/archive/A/The%20A-Team/S01D04.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,1.11. Till Death Do Us Part
+#EXTINF:2767,,1.11. Till Death Do Us Part
 dvd:///mnt/dvd/archive/A/The%20A-Team/S01D04.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,1.12. The Beast from the Belly of a Boeing
+#EXTINF:2768,,1.12. The Beast from the Belly of a Boeing
 dvd:///mnt/dvd/archive/A/The%20A-Team/S01D05.%20E12%e2%80%9313.iso#1
-#EXTINF:0,,1.13. A Nice Place to Visit
+#EXTINF:2655,,1.13. A Nice Place to Visit
 dvd:///mnt/dvd/archive/A/The%20A-Team/S01D05.%20E12%e2%80%9313.iso#2
 
-#EXTINF:0,,2.1. Diamonds 'n Dust
+#EXTINF:2762,,2.1. Diamonds 'n Dust
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D01.%20E01%e2%80%9303.iso#1
-#EXTINF:0,,2.2. Recipe for Heavy Bread
+#EXTINF:2765,,2.2. Recipe for Heavy Bread
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,2.3. The Only Church in Town
+#EXTINF:2767,,2.3. The Only Church in Town
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,2.4. Bad Time on the Border
+#EXTINF:2763,,2.4. Bad Time on the Border
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D02.%20E04%e2%80%9306.iso#1
-#EXTINF:0,,2.5. When You Comin' Back, Range Rider?
+#EXTINF:5504,,2.5. When You Comin' Back, Range Rider?
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D02.%20E04%e2%80%9306.iso#2
-#EXTINF:0,,2.6. The Taxicab Wars
+#EXTINF:2764,,2.6. The Taxicab Wars
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,2.7. Labor Pains
+#EXTINF:2610,,2.7. Labor Pains
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D03.%20E07%e2%80%9310.iso#1
-#EXTINF:0,,2.8. There's Always a Catch
+#EXTINF:2647,,2.8. There's Always a Catch
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D03.%20E07%e2%80%9310.iso#2
-#EXTINF:0,,2.9. Water, Water Everywhere
+#EXTINF:2740,,2.9. Water, Water Everywhere
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D03.%20E07%e2%80%9310.iso#3
-#EXTINF:0,,2.10. Steel
+#EXTINF:2649,,2.10. Steel
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D03.%20E07%e2%80%9310.iso#4
-#EXTINF:0,,2.11. The White Ballot
+#EXTINF:2698,,2.11. The White Ballot
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D04.%20E11%e2%80%9314.iso#1
-#EXTINF:0,,2.12. The Maltese Cow
+#EXTINF:2688,,2.12. The Maltese Cow
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D04.%20E11%e2%80%9314.iso#2
-#EXTINF:0,,2.13. In Plane Sight
+#EXTINF:2722,,2.13. In Plane Sight
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D04.%20E11%e2%80%9314.iso#3
-#EXTINF:0,,2.14. The Battle of Bel Air
+#EXTINF:2732,,2.14. The Battle of Bel Air
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D04.%20E11%e2%80%9314.iso#4
-#EXTINF:0,,2.15. Say It with Bullets
+#EXTINF:2680,,2.15. Say It with Bullets
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D05.%20E15%e2%80%9318.iso#1
-#EXTINF:0,,2.16. Pure-Dee Poison
+#EXTINF:2681,,2.16. Pure-Dee Poison
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D05.%20E15%e2%80%9318.iso#2
-#EXTINF:0,,2.17. It's a Desert Out There
+#EXTINF:2752,,2.17. It's a Desert Out There
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D05.%20E15%e2%80%9318.iso#3
-#EXTINF:0,,2.18. Chopping Spree
+#EXTINF:2757,,2.18. Chopping Spree
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D05.%20E15%e2%80%9318.iso#4
-#EXTINF:0,,2.19. Harder than It Looks
+#EXTINF:2647,,2.19. Harder than It Looks
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D06.%20E19%e2%80%9322.iso#1
-#EXTINF:0,,2.20. Deadly Maneuvers
+#EXTINF:2737,,2.20. Deadly Maneuvers
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D06.%20E19%e2%80%9322.iso#2
-#EXTINF:0,,2.21. Semi-Friendly Persuasion
+#EXTINF:2688,,2.21. Semi-Friendly Persuasion
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D06.%20E19%e2%80%9322.iso#3
-#EXTINF:0,,2.22. Curtain Call
+#EXTINF:2762,,2.22. Curtain Call
 dvd:///mnt/dvd/archive/A/The%20A-Team/S02D06.%20E19%e2%80%9322.iso#4
 
-#EXTINF:0,,3.1. Bullets and Bikinis
+#EXTINF:2675,,3.1. Bullets and Bikinis
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,3.2. The Bend in the River (part 1)
+#EXTINF:2626,,3.2. The Bend in the River (part 1)
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,3.3. The Bend in the River (part 2)
+#EXTINF:2751,,3.3. The Bend in the River (part 2)
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,3.4. Fire
+#EXTINF:2788,,3.4. Fire
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D01.%20E01%e2%80%9305.iso#8
-#EXTINF:0,,3.5. Timber!
+#EXTINF:2758,,3.5. Timber!
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D01.%20E01%e2%80%9305.iso#9
-#EXTINF:0,,3.6. Double Heat
+#EXTINF:2739,,3.6. Double Heat
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D02.%20E06%e2%80%9309.iso#5
-#EXTINF:0,,3.7. Trouble on Wheels
+#EXTINF:2785,,3.7. Trouble on Wheels
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D02.%20E06%e2%80%9309.iso#6
-#EXTINF:0,,3.8. The Island
+#EXTINF:2766,,3.8. The Island
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D02.%20E06%e2%80%9309.iso#7
-#EXTINF:0,,3.9. Showdown!
+#EXTINF:2637,,3.9. Showdown!
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D02.%20E06%e2%80%9309.iso#8
-#EXTINF:0,,3.10. Sheriffs of Rivertown
+#EXTINF:2748,,3.10. Sheriffs of Rivertown
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D03.%20E10%e2%80%9313.iso#5
-#EXTINF:0,,3.11. The Bells of St. Mary's
+#EXTINF:2794,,3.11. The Bells of St. Mary's
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D03.%20E10%e2%80%9313.iso#6
-#EXTINF:0,,3.12. Hot Styles
+#EXTINF:2755,,3.12. Hot Styles
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D03.%20E10%e2%80%9313.iso#7
-#EXTINF:0,,3.13. Breakout!
+#EXTINF:2700,,3.13. Breakout!
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D03.%20E10%e2%80%9313.iso#8
-#EXTINF:0,,3.14. Cup a' Joe
+#EXTINF:2667,,3.14. Cup a' Joe
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D04.%20E14%e2%80%9317.iso#5
-#EXTINF:0,,3.15. The Big Squeeze
+#EXTINF:2813,,3.15. The Big Squeeze
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D04.%20E14%e2%80%9317.iso#6
-#EXTINF:0,,3.16. Champ!
+#EXTINF:2740,,3.16. Champ!
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D04.%20E14%e2%80%9317.iso#7
-#EXTINF:0,,3.17. Skins
+#EXTINF:2797,,3.17. Skins
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D04.%20E14%e2%80%9317.iso#8
-#EXTINF:0,,3.18. Road Games
+#EXTINF:2809,,3.18. Road Games
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D05.%20E18%e2%80%9321.iso#5
-#EXTINF:0,,3.19. Moving Targets
+#EXTINF:2731,,3.19. Moving Targets
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D05.%20E18%e2%80%9321.iso#6
-#EXTINF:0,,3.20. Knights of the Road
+#EXTINF:2867,,3.20. Knights of the Road
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D05.%20E18%e2%80%9321.iso#7
-#EXTINF:0,,3.21. Waste 'Em!
+#EXTINF:2707,,3.21. Waste 'Em!
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D05.%20E18%e2%80%9321.iso#8
-#EXTINF:0,,3.22. Bounty
+#EXTINF:2699,,3.22. Bounty
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D06.%20E22%e2%80%9325.iso#5
-#EXTINF:0,,3.23. Beverly Hills Assault
+#EXTINF:2826,,3.23. Beverly Hills Assault
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D06.%20E22%e2%80%9325.iso#6
-#EXTINF:0,,3.24. Trouble Brewing
+#EXTINF:2735,,3.24. Trouble Brewing
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D06.%20E22%e2%80%9325.iso#7
-#EXTINF:0,,3.25. Incident at Crystal Lake
+#EXTINF:2681,,3.25. Incident at Crystal Lake
 dvd:///mnt/dvd/archive/A/The%20A-Team/S03D06.%20E22%e2%80%9325.iso#8
 
-#EXTINF:0,,4.1. Judgment Day
+#EXTINF:5426,,4.1. Judgment Day
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,4.2. Where Is the Monster When You Need Him?
+#EXTINF:2777,,4.2. Where Is the Monster When You Need Him?
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,4.3. Lease with an Option to Die
+#EXTINF:2781,,4.3. Lease with an Option to Die
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,4.4. The Road to Hope
+#EXTINF:2784,,4.4. The Road to Hope
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,4.5. The Heart of Rock n' Roll
+#EXTINF:2757,,4.5. The Heart of Rock n' Roll
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,4.6. Body Slam
+#EXTINF:2792,,4.6. Body Slam
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,4.7. Blood, Sweat, and Cheers
+#EXTINF:2827,,4.7. Blood, Sweat, and Cheers
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D02.%20E05%e2%80%9308.iso#7
-#EXTINF:0,,4.8. Mind Games
+#EXTINF:2777,,4.8. Mind Games
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D02.%20E05%e2%80%9308.iso#8
-#EXTINF:0,,4.9. There Goes the Neighborhood
+#EXTINF:2726,,4.9. There Goes the Neighborhood
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,4.10. The Doctor Is Out
+#EXTINF:2756,,4.10. The Doctor Is Out
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,4.11. Uncle Buckle-Up
+#EXTINF:2708,,4.11. Uncle Buckle-Up
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D03.%20E09%e2%80%9312.iso#7
-#EXTINF:0,,4.12. Wheel of Fortune
+#EXTINF:2707,,4.12. Wheel of Fortune
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D03.%20E09%e2%80%9312.iso#8
-#EXTINF:0,,4.13. The A-Team Is Coming, the A-Team Is Coming
+#EXTINF:2699,,4.13. The A-Team Is Coming, the A-Team Is Coming
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,4.14. Members Only
+#EXTINF:2750,,4.14. Members Only
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,4.15. Cowboy George
+#EXTINF:2809,,4.15. Cowboy George
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D04.%20E13%e2%80%9316.iso#7
-#EXTINF:0,,4.16. Waiting for Insane Wayne
+#EXTINF:2789,,4.16. Waiting for Insane Wayne
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D04.%20E13%e2%80%9316.iso#8
-#EXTINF:0,,4.17. The Duke of Whispering Pines
+#EXTINF:2774,,4.17. The Duke of Whispering Pines
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,4.18. Beneath the Surface
+#EXTINF:2806,,4.18. Beneath the Surface
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,4.19. Mission of Peace
+#EXTINF:2794,,4.19. Mission of Peace
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D05.%20E17%e2%80%9320.iso#7
-#EXTINF:0,,4.20. The Trouble with Harry
+#EXTINF:2754,,4.20. The Trouble with Harry
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D05.%20E17%e2%80%9320.iso#8
-#EXTINF:0,,4.21. A Little Town With an Accent
+#EXTINF:2746,,4.21. A Little Town With an Accent
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D06.%20E21%e2%80%9322.iso#6
-#EXTINF:0,,4.22. The Sound of Thunder
+#EXTINF:2723,,4.22. The Sound of Thunder
 dvd:///mnt/dvd/archive/A/The%20A-Team/S04D06.%20E21%e2%80%9322.iso#7
 
-#EXTINF:0,,5.1. Dishpan Man (The Court Martial, part 1)
+#EXTINF:2770,,5.1. Dishpan Man (The Court Martial, part 1)
 dvd:///mnt/dvd/archive/A/The%20A-Team/S05D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,5.2. Trial by Fire (The Court Martial, part 2)
+#EXTINF:2741,,5.2. Trial by Fire (The Court Martial, part 2)
 dvd:///mnt/dvd/archive/A/The%20A-Team/S05D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,5.3. Firing Line (The Court Martial, part 3)
+#EXTINF:2797,,5.3. Firing Line (The Court Martial, part 3)
 dvd:///mnt/dvd/archive/A/The%20A-Team/S05D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,5.4. Quarterback Sneak
+#EXTINF:2781,,5.4. Quarterback Sneak
 dvd:///mnt/dvd/archive/A/The%20A-Team/S05D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,5.5. The Theory of Revolution
+#EXTINF:2694,,5.5. The Theory of Revolution
 dvd:///mnt/dvd/archive/A/The%20A-Team/S05D02.%20E05%e2%80%9307.iso#5
-#EXTINF:0,,5.6. The Say UNCLE Affair
+#EXTINF:2732,,5.6. The Say UNCLE Affair
 dvd:///mnt/dvd/archive/A/The%20A-Team/S05D02.%20E05%e2%80%9307.iso#6
-#EXTINF:0,,5.7. Alive at Five
+#EXTINF:2754,,5.7. Alive at Five
 dvd:///mnt/dvd/archive/A/The%20A-Team/S05D02.%20E05%e2%80%9307.iso#7
-#EXTINF:0,,5.8. Family Reunion
+#EXTINF:2781,,5.8. Family Reunion
 dvd:///mnt/dvd/archive/A/The%20A-Team/S05D03.%20E08%e2%80%9311.iso#5
-#EXTINF:0,,5.9. Point of No Return
+#EXTINF:2726,,5.9. Point of No Return
 dvd:///mnt/dvd/archive/A/The%20A-Team/S05D03.%20E08%e2%80%9311.iso#6
-#EXTINF:0,,5.10. The Crystal Skull
+#EXTINF:2729,,5.10. The Crystal Skull
 dvd:///mnt/dvd/archive/A/The%20A-Team/S05D03.%20E08%e2%80%9311.iso#7
-#EXTINF:0,,5.11. The Spy Who Mugged Me
+#EXTINF:2789,,5.11. The Spy Who Mugged Me
 dvd:///mnt/dvd/archive/A/The%20A-Team/S05D03.%20E08%e2%80%9311.iso#8
-#EXTINF:0,,5.12. The Grey Team
+#EXTINF:2710,,5.12. The Grey Team
 dvd:///mnt/dvd/archive/A/The%20A-Team/S05D04.%20E12%e2%80%9313.iso#6
-#EXTINF:0,,5.13. Without Reservations
+#EXTINF:2736,,5.13. Without Reservations
 dvd:///mnt/dvd/archive/A/The%20A-Team/S05D04.%20E12%e2%80%9313.iso#7
index d2c98b7..4fadc99 100644 (file)
@@ -1,39 +1,39 @@
 #EXTM3U
 
-#EXTINF:0,,1.1. Now Is Not the End
+#EXTINF:2456,,1.1. Now Is Not the End
 dvd:///mnt/dvd/archive/A/Agent%20Carter/S01D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,1.2. Bridge and Tunnel
+#EXTINF:2389,,1.2. Bridge and Tunnel
 dvd:///mnt/dvd/archive/A/Agent%20Carter/S01D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,1.3. Time and Tide
+#EXTINF:2384,,1.3. Time and Tide
 dvd:///mnt/dvd/archive/A/Agent%20Carter/S01D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,1.4. The Blitzkrieg Button
+#EXTINF:2379,,1.4. The Blitzkrieg Button
 dvd:///mnt/dvd/archive/A/Agent%20Carter/S01D01.%20E01%e2%80%9304.iso#9
-#EXTINF:0,,1.5. The Iron Ceiling
+#EXTINF:2477,,1.5. The Iron Ceiling
 dvd:///mnt/dvd/archive/A/Agent%20Carter/S01D02.%20E05%e2%80%9308.iso#7
-#EXTINF:0,,1.6. A Sin to Err
+#EXTINF:2389,,1.6. A Sin to Err
 dvd:///mnt/dvd/archive/A/Agent%20Carter/S01D02.%20E05%e2%80%9308.iso#8
-#EXTINF:0,,1.7. SNAFU
+#EXTINF:2373,,1.7. SNAFU
 dvd:///mnt/dvd/archive/A/Agent%20Carter/S01D02.%20E05%e2%80%9308.iso#9
-#EXTINF:0,,1.8. Valediction
+#EXTINF:2473,,1.8. Valediction
 dvd:///mnt/dvd/archive/A/Agent%20Carter/S01D02.%20E05%e2%80%9308.iso#10
 
-#EXTINF:0,,2.1. The Lady in the Lake
+#EXTINF:2436,,2.1. The Lady in the Lake
 dvd:///mnt/dvd/archive/A/Agent%20Carter/S02D01.%20E01%e2%80%9305.iso#2
-#EXTINF:0,,2.2. A View in the Dark
+#EXTINF:2469,,2.2. A View in the Dark
 dvd:///mnt/dvd/archive/A/Agent%20Carter/S02D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,2.3. Better Angels
+#EXTINF:2479,,2.3. Better Angels
 dvd:///mnt/dvd/archive/A/Agent%20Carter/S02D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,2.4. Smoke and Mirrors
+#EXTINF:2479,,2.4. Smoke and Mirrors
 dvd:///mnt/dvd/archive/A/Agent%20Carter/S02D01.%20E01%e2%80%9305.iso#8
-#EXTINF:0,,2.5. The Atomic Job
+#EXTINF:2441,,2.5. The Atomic Job
 dvd:///mnt/dvd/archive/A/Agent%20Carter/S02D01.%20E01%e2%80%9305.iso#10
-#EXTINF:0,,2.6. Life of the Party
+#EXTINF:2480,,2.6. Life of the Party
 dvd:///mnt/dvd/archive/A/Agent%20Carter/S02D02.%20E06%e2%80%9310.iso#2
-#EXTINF:0,,2.7. Monsters
+#EXTINF:2475,,2.7. Monsters
 dvd:///mnt/dvd/archive/A/Agent%20Carter/S02D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,2.8. The Edge of Mystery
+#EXTINF:2472,,2.8. The Edge of Mystery
 dvd:///mnt/dvd/archive/A/Agent%20Carter/S02D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,2.9. A Little Song and Dance
+#EXTINF:2422,,2.9. A Little Song and Dance
 dvd:///mnt/dvd/archive/A/Agent%20Carter/S02D02.%20E06%e2%80%9310.iso#8
-#EXTINF:0,,2.10. Hollywood Ending
+#EXTINF:2376,,2.10. Hollywood Ending
 dvd:///mnt/dvd/archive/A/Agent%20Carter/S02D02.%20E06%e2%80%9310.iso#10
index a50e810..811a74b 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Pilot
+#EXTINF:2537,,1.1. Pilot
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,1.2. 0-8-4
+#EXTINF:2387,,1.2. 0-8-4
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,1.3. The Asset
+#EXTINF:2481,,1.3. The Asset
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,1.4. Eye-Spy
+#EXTINF:2443,,1.4. Eye-Spy
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,1.5. Girl in the Flower Dress
+#EXTINF:2439,,1.5. Girl in the Flower Dress
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,1.6. FZZT
+#EXTINF:2475,,1.6. FZZT
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D02.%20E05%e2%80%9308.iso#26
-#EXTINF:0,,1.7. The Hub
+#EXTINF:2455,,1.7. The Hub
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D02.%20E05%e2%80%9308.iso#7
-#EXTINF:0,,1.8. The Well
+#EXTINF:2432,,1.8. The Well
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D02.%20E05%e2%80%9308.iso#8
-#EXTINF:0,,1.9. Repairs
+#EXTINF:2479,,1.9. Repairs
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,1.10. The Bridge
+#EXTINF:2397,,1.10. The Bridge
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,1.11. The Magical Place
+#EXTINF:2453,,1.11. The Magical Place
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D03.%20E09%e2%80%9312.iso#26
-#EXTINF:0,,1.12. Seeds
+#EXTINF:2479,,1.12. Seeds
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D03.%20E09%e2%80%9312.iso#8
-#EXTINF:0,,1.13. T.R.A.C.K.S.
+#EXTINF:2451,,1.13. T.R.A.C.K.S.
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D04.%20E13%e2%80%9316.iso#26
-#EXTINF:0,,1.14. T.A.H.I.T.I.
+#EXTINF:2454,,1.14. T.A.H.I.T.I.
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,1.15. Yes Men
+#EXTINF:2479,,1.15. Yes Men
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D04.%20E13%e2%80%9316.iso#7
-#EXTINF:0,,1.16. End of the Beginning
+#EXTINF:2375,,1.16. End of the Beginning
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D04.%20E13%e2%80%9316.iso#8
-#EXTINF:0,,1.17. Turn, Turn, Turn
+#EXTINF:2480,,1.17. Turn, Turn, Turn
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,1.18. Providence
+#EXTINF:2480,,1.18. Providence
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,1.19. The Only Light in the Darkness
+#EXTINF:2476,,1.19. The Only Light in the Darkness
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D05.%20E17%e2%80%9320.iso#7
-#EXTINF:0,,1.20. Nothing Personal
+#EXTINF:2477,,1.20. Nothing Personal
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D05.%20E17%e2%80%9320.iso#8
-#EXTINF:0,,1.21. Ragtag
+#EXTINF:2475,,1.21. Ragtag
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D06.%20E21%e2%80%9322.iso#5
-#EXTINF:0,,1.22. Beginning of the End
+#EXTINF:2476,,1.22. Beginning of the End
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S01D06.%20E21%e2%80%9322.iso#6
 
-#EXTINF:0,,2.1. Shadows
+#EXTINF:2478,,2.1. Shadows
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,2.2. Heavy Is the Head
+#EXTINF:2476,,2.2. Heavy Is the Head
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,2.3. Making Friends and Influencing People
+#EXTINF:2479,,2.3. Making Friends and Influencing People
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,2.4. Face My Enemy
+#EXTINF:2411,,2.4. Face My Enemy
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,2.5. A Hen in the Wolf House
+#EXTINF:2480,,2.5. A Hen in the Wolf House
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,2.6. A Fractured House
+#EXTINF:2408,,2.6. A Fractured House
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,2.7. The Writing on the Wall
+#EXTINF:2456,,2.7. The Writing on the Wall
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D02.%20E05%e2%80%9308.iso#7
-#EXTINF:0,,2.8. The Things We Bury
+#EXTINF:2477,,2.8. The Things We Bury
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D02.%20E05%e2%80%9308.iso#8
-#EXTINF:0,,2.9. …Ye Who Enter Here
+#EXTINF:2479,,2.9. …Ye Who Enter Here
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,2.10. What They Become
+#EXTINF:2479,,2.10. What They Become
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,2.11. Aftershocks
+#EXTINF:2479,,2.11. Aftershocks
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D03.%20E09%e2%80%9312.iso#7
-#EXTINF:0,,2.12. Who You Really Are
+#EXTINF:2401,,2.12. Who You Really Are
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D03.%20E09%e2%80%9312.iso#8
-#EXTINF:0,,2.13. One of Us
+#EXTINF:2480,,2.13. One of Us
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,2.14. Love in the Time of Hydra
+#EXTINF:2479,,2.14. Love in the Time of Hydra
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,2.15. One Door Closes
+#EXTINF:2471,,2.15. One Door Closes
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D04.%20E13%e2%80%9316.iso#7
-#EXTINF:0,,2.16. Afterlife
+#EXTINF:2480,,2.16. Afterlife
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D04.%20E13%e2%80%9316.iso#8
-#EXTINF:0,,2.17. Melinda
+#EXTINF:2472,,2.17. Melinda
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,2.18. The Frenemy of My Enemy
+#EXTINF:2474,,2.18. The Frenemy of My Enemy
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,2.19. The Dirty Half Dozen
+#EXTINF:2390,,2.19. The Dirty Half Dozen
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D05.%20E17%e2%80%9320.iso#7
-#EXTINF:0,,2.20. Scars
+#EXTINF:2479,,2.20. Scars
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D05.%20E17%e2%80%9320.iso#8
-#EXTINF:0,,2.21. S.O.S. (part 1)
+#EXTINF:2477,,2.21. S.O.S. (part 1)
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D06.%20E21%e2%80%9322.iso#5
-#EXTINF:0,,2.22. S.O.S. (part 2)
+#EXTINF:2479,,2.22. S.O.S. (part 2)
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S02D06.%20E21%e2%80%9322.iso#6
 
-#EXTINF:0,,3.1. Laws of Nature
+#EXTINF:2481,,3.1. Laws of Nature
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,3.2. Purpose in the Machine
+#EXTINF:2462,,3.2. Purpose in the Machine
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,3.3. A Wanted (Inhu)man
+#EXTINF:2366,,3.3. A Wanted (Inhu)man
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,3.4. Devils You Know
+#EXTINF:2477,,3.4. Devils You Know
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,3.5. 4,722 Hours
+#EXTINF:2481,,3.5. 4,722 Hours
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,3.6. Among Us Hide…
+#EXTINF:2473,,3.6. Among Us Hide…
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,3.7. Chaos Theory
+#EXTINF:2481,,3.7. Chaos Theory
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D02.%20E05%e2%80%9308.iso#7
-#EXTINF:0,,3.8. Many Heads, One Tale
+#EXTINF:2480,,3.8. Many Heads, One Tale
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D02.%20E05%e2%80%9308.iso#8
-#EXTINF:0,,3.9. Closure
+#EXTINF:2481,,3.9. Closure
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,3.10. Maveth
+#EXTINF:2474,,3.10. Maveth
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,3.11. Bouncing Back
+#EXTINF:2480,,3.11. Bouncing Back
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D03.%20E09%e2%80%9312.iso#7
-#EXTINF:0,,3.12. The Inside Man
+#EXTINF:2479,,3.12. The Inside Man
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D03.%20E09%e2%80%9312.iso#8
-#EXTINF:0,,3.13. Parting Shot
+#EXTINF:2468,,3.13. Parting Shot
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,3.14. Watchdogs
+#EXTINF:2416,,3.14. Watchdogs
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,3.15. Spacetime
+#EXTINF:2481,,3.15. Spacetime
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D04.%20E13%e2%80%9316.iso#7
-#EXTINF:0,,3.16. Paradise Lost
+#EXTINF:2481,,3.16. Paradise Lost
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D04.%20E13%e2%80%9316.iso#8
-#EXTINF:0,,3.17. The Team
+#EXTINF:2480,,3.17. The Team
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,3.18. The Singularity
+#EXTINF:2476,,3.18. The Singularity
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,3.19. Failed Experiments
+#EXTINF:2364,,3.19. Failed Experiments
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D05.%20E17%e2%80%9320.iso#7
-#EXTINF:0,,3.20. Emancipation
+#EXTINF:2465,,3.20. Emancipation
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D05.%20E17%e2%80%9320.iso#8
-#EXTINF:0,,3.21. Absolution
+#EXTINF:2475,,3.21. Absolution
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D06.%20E21%e2%80%9322.iso#5
-#EXTINF:0,,3.22. Ascension
+#EXTINF:2478,,3.22. Ascension
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S03D06.%20E21%e2%80%9322.iso#6
 
-#EXTINF:0,,4.1. The Ghost
+#EXTINF:2478,,4.1. The Ghost
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,4.2. Meet the New Boss
+#EXTINF:2478,,4.2. Meet the New Boss
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,4.3. Uprising
+#EXTINF:2448,,4.3. Uprising
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,4.4. Let Me Stand Next to Your Fire
+#EXTINF:2479,,4.4. Let Me Stand Next to Your Fire
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,4.5. Lockup
+#EXTINF:2432,,4.5. Lockup
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,4.6. The Good Samaritan
+#EXTINF:2388,,4.6. The Good Samaritan
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,4.7. Deals with Our Devils
+#EXTINF:2478,,4.7. Deals with Our Devils
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,4.8. The Laws of Inferno Dynamics
+#EXTINF:2447,,4.8. The Laws of Inferno Dynamics
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D02.%20E05%e2%80%9308.iso#8
-#EXTINF:0,,4.9. Broken Promises
+#EXTINF:2479,,4.9. Broken Promises
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,4.10. The Patriot
+#EXTINF:2450,,4.10. The Patriot
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,4.11. Wake Up
+#EXTINF:2470,,4.11. Wake Up
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,4.12. Hot Potato Soup
+#EXTINF:2474,,4.12. Hot Potato Soup
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D03.%20E09%e2%80%9312.iso#8
-#EXTINF:0,,4.13. BOOM
+#EXTINF:2476,,4.13. BOOM
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,4.14. The Man Behind the Shield
+#EXTINF:2468,,4.14. The Man Behind the Shield
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,4.15. Self Control
+#EXTINF:2479,,4.15. Self Control
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,4.16. What If…
+#EXTINF:2473,,4.16. What If…
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D04.%20E13%e2%80%9316.iso#8
-#EXTINF:0,,4.17. Identity and Change
+#EXTINF:2477,,4.17. Identity and Change
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,4.18. No Regrets
+#EXTINF:2477,,4.18. No Regrets
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,4.19. All the Madame's Men
+#EXTINF:2478,,4.19. All the Madame's Men
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,4.20. Farewell, Cruel World!
+#EXTINF:2389,,4.20. Farewell, Cruel World!
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D05.%20E17%e2%80%9320.iso#8
-#EXTINF:0,,4.21. The Return
+#EXTINF:2479,,4.21. The Return
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D06.%20E21%e2%80%9322.iso#2
-#EXTINF:0,,4.22. World's End
+#EXTINF:2477,,4.22. World's End
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S04D06.%20E21%e2%80%9322.iso#4
 
-#EXTINF:0,,5.1. Orientation (part 1)
+#EXTINF:2476,,5.1. Orientation (part 1)
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,5.2. Orientation (part 2)
+#EXTINF:2479,,5.2. Orientation (part 2)
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,5.3. A Life Spent
+#EXTINF:2472,,5.3. A Life Spent
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,5.4. A Life Earned
+#EXTINF:2479,,5.4. A Life Earned
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,5.5. Rewind
+#EXTINF:2476,,5.5. Rewind
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,5.6. Fun & Games
+#EXTINF:2462,,5.6. Fun & Games
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,5.7. Together or Not at All
+#EXTINF:2359,,5.7. Together or Not at All
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,5.8. The Last Day
+#EXTINF:2473,,5.8. The Last Day
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D02.%20E05%e2%80%9308.iso#8
-#EXTINF:0,,5.9. Best Laid Plans
+#EXTINF:2392,,5.9. Best Laid Plans
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,5.10. Past Life
+#EXTINF:2471,,5.10. Past Life
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,5.11. All the Comforts of Home
+#EXTINF:2469,,5.11. All the Comforts of Home
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,5.12. The Real Deal
+#EXTINF:2507,,5.12. The Real Deal
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D03.%20E09%e2%80%9312.iso#8
-#EXTINF:0,,5.13. Principia
+#EXTINF:2443,,5.13. Principia
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,5.14. The Devil Complex
+#EXTINF:2461,,5.14. The Devil Complex
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,5.15. Rise and Shine
+#EXTINF:2508,,5.15. Rise and Shine
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,5.16. Inside Voices
+#EXTINF:2446,,5.16. Inside Voices
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D04.%20E13%e2%80%9316.iso#8
-#EXTINF:0,,5.17. The Honeymoon
+#EXTINF:2419,,5.17. The Honeymoon
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,5.18. All Roads Lead…
+#EXTINF:2370,,5.18. All Roads Lead…
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,5.19. Option Two
+#EXTINF:2459,,5.19. Option Two
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,5.20. The One Who Will Save Us All
+#EXTINF:2436,,5.20. The One Who Will Save Us All
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D05.%20E17%e2%80%9320.iso#8
-#EXTINF:0,,5.21. The Force of Gravity
+#EXTINF:2479,,5.21. The Force of Gravity
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D06.%20E21%e2%80%9322.iso#2
-#EXTINF:0,,5.22. The End
+#EXTINF:2479,,5.22. The End
 dvd:///mnt/dvd/archive/A/Agents%20of%20SHIELD/S05D06.%20E21%e2%80%9322.iso#4
index 4524659..8264da9 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.0. Pilot—The British are Coming
+#EXTINF:2090,,1.0. Pilot—The British are Coming
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/01.%20S01%20E00%e2%80%9304.iso#7
-#EXTINF:0,,1.1. The British Have Come
+#EXTINF:1735,,1.1. The British Have Come
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/01.%20S01%20E00%e2%80%9304.iso#8
-#EXTINF:0,,1.2. Pigeon Post
+#EXTINF:1901,,1.2. Pigeon Post
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/01.%20S01%20E00%e2%80%9304.iso#9
-#EXTINF:0,,1.3. Savile Row to the Rescue
+#EXTINF:1669,,1.3. Savile Row to the Rescue
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/01.%20S01%20E00%e2%80%9304.iso#10
-#EXTINF:0,,1.4. The Execution
+#EXTINF:1851,,1.4. The Execution
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/01.%20S01%20E00%e2%80%9304.iso#11
-#EXTINF:0,,1.5. The Funeral
+#EXTINF:1872,,1.5. The Funeral
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/02.%20S01%20E05%e2%80%9307,%20S02%20E01.iso#7
-#EXTINF:0,,1.6. Red Nick's Colonel
+#EXTINF:1739,,1.6. Red Nick's Colonel
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/02.%20S01%20E05%e2%80%9307,%20S02%20E01.iso#8
-#EXTINF:0,,1.7. The Dance of the Hitler Youth
+#EXTINF:1946,,1.7. The Dance of the Hitler Youth
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/02.%20S01%20E05%e2%80%9307,%20S02%20E01.iso#9
 
-#EXTINF:0,,2.1. Six Big Boobies
+#EXTINF:1914,,2.1. Six Big Boobies
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/02.%20S01%20E05%e2%80%9307,%20S02%20E01.iso#10
-#EXTINF:0,,2.2. The Wooing of Widow Artois
+#EXTINF:1889,,2.2. The Wooing of Widow Artois
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/03.%20S02%20E02%e2%80%9306.iso#7
-#EXTINF:0,,2.3. The Policeman Cometh
+#EXTINF:1773,,2.3. The Policeman Cometh
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/03.%20S02%20E02%e2%80%9306.iso#8
-#EXTINF:0,,2.4. Swiftly and with Style
+#EXTINF:1884,,2.4. Swiftly and with Style
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/03.%20S02%20E02%e2%80%9306.iso#9
-#EXTINF:0,,2.5. The Duel
+#EXTINF:1879,,2.5. The Duel
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/03.%20S02%20E02%e2%80%9306.iso#10
-#EXTINF:0,,2.6. Herr Flick's Revenge
+#EXTINF:1879,,2.6. Herr Flick's Revenge
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/03.%20S02%20E02%e2%80%9306.iso#11
-#EXTINF:0,,2.7. Christmas Special—The Gateau from the Chateau
+#EXTINF:2873,,2.7. Christmas Special—The Gateau from the Chateau
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/04.%20S02%20E07,%20S03%20E01%e2%80%9303.iso#7
 
-#EXTINF:0,,3.1. The Nicked Knockwurst
+#EXTINF:2073,,3.1. The Nicked Knockwurst
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/04.%20S02%20E07,%20S03%20E01%e2%80%9303.iso#8
-#EXTINF:0,,3.2. Gruber Does Some Mincing
+#EXTINF:2084,,3.2. Gruber Does Some Mincing
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/04.%20S02%20E07,%20S03%20E01%e2%80%9303.iso#9
-#EXTINF:0,,3.3. The Sausage in the Wardrobe
+#EXTINF:2095,,3.3. The Sausage in the Wardrobe
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/04.%20S02%20E07,%20S03%20E01%e2%80%9303.iso#10
-#EXTINF:0,,3.4. Flights of Fancy
+#EXTINF:2642,,3.4. Flights of Fancy
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/05.%20S03%20E04%e2%80%9306,%20S04%20E01%e2%80%9302.iso#7
-#EXTINF:0,,3.5. Pretty Maids All in a Row
+#EXTINF:2088,,3.5. Pretty Maids All in a Row
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/05.%20S03%20E04%e2%80%9306,%20S04%20E01%e2%80%9302.iso#8
-#EXTINF:0,,3.6. The Great Un-Escape
+#EXTINF:2081,,3.6. The Great Un-Escape
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/05.%20S03%20E04%e2%80%9306,%20S04%20E01%e2%80%9302.iso#9
 
-#EXTINF:0,,4.1. Prisoners of War
+#EXTINF:1579,,4.1. Prisoners of War
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/05.%20S03%20E04%e2%80%9306,%20S04%20E01%e2%80%9302.iso#10
-#EXTINF:0,,4.2. Camp Dance
+#EXTINF:1448,,4.2. Camp Dance
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/05.%20S03%20E04%e2%80%9306,%20S04%20E01%e2%80%9302.iso#11
-#EXTINF:0,,4.3. Good Staff Are Hard to Find
+#EXTINF:1498,,4.3. Good Staff Are Hard to Find
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/06.%20S04%20E03%e2%80%9306.iso#7
-#EXTINF:0,,4.4. The Flying Nun
+#EXTINF:1486,,4.4. The Flying Nun
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/06.%20S04%20E03%e2%80%9306.iso#8
-#EXTINF:0,,4.5. The Sausages in the Trousers
+#EXTINF:1549,,4.5. The Sausages in the Trousers
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/06.%20S04%20E03%e2%80%9306.iso#9
-#EXTINF:0,,4.6. The Jet-Propelled Mother-in-Law
+#EXTINF:1667,,4.6. The Jet-Propelled Mother-in-Law
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/06.%20S04%20E03%e2%80%9306.iso#10
 
-#EXTINF:0,,5.1. Desperate Doings in the Dungeon
+#EXTINF:1480,,5.1. Desperate Doings in the Dungeon
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/07.%20S05%20E01%e2%80%9307.iso#5
-#EXTINF:0,,5.2. The Camera in the Potato
+#EXTINF:1471,,5.2. The Camera in the Potato
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/07.%20S05%20E01%e2%80%9307.iso#6
-#EXTINF:0,,5.3. Dinner with the General
+#EXTINF:1481,,5.3. Dinner with the General
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/07.%20S05%20E01%e2%80%9307.iso#7
-#EXTINF:0,,5.4. The Dreaded Circular Saw
+#EXTINF:1476,,5.4. The Dreaded Circular Saw
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/07.%20S05%20E01%e2%80%9307.iso#8
-#EXTINF:0,,5.5. Otherwise Engaged
+#EXTINF:1481,,5.5. Otherwise Engaged
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/07.%20S05%20E01%e2%80%9307.iso#9
-#EXTINF:0,,5.6. A Marriage of Inconvenience
+#EXTINF:1486,,5.6. A Marriage of Inconvenience
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/07.%20S05%20E01%e2%80%9307.iso#10
-#EXTINF:0,,5.7. No Hiding Place
+#EXTINF:1483,,5.7. No Hiding Place
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/07.%20S05%20E01%e2%80%9307.iso#11
-#EXTINF:0,,5.8. The Arrival of the Homing Duck
+#EXTINF:1479,,5.8. The Arrival of the Homing Duck
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/08.%20S05%20E08%e2%80%9313.iso#5
-#EXTINF:0,,5.9. Watch the Birdie
+#EXTINF:1478,,5.9. Watch the Birdie
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/08.%20S05%20E08%e2%80%9313.iso#6
-#EXTINF:0,,5.10. René Under an Assumed Nose
+#EXTINF:1472,,5.10. René Under an Assumed Nose
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/08.%20S05%20E08%e2%80%9313.iso#7
-#EXTINF:0,,5.11. The Confusion of the Generals
+#EXTINF:1479,,5.11. The Confusion of the Generals
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/08.%20S05%20E08%e2%80%9313.iso#8
-#EXTINF:0,,5.12. Who's for the Vatican?
+#EXTINF:1433,,5.12. Who's for the Vatican?
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/08.%20S05%20E08%e2%80%9313.iso#9
-#EXTINF:0,,5.13. Ribbing the Bonk
+#EXTINF:1465,,5.13. Ribbing the Bonk
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/08.%20S05%20E08%e2%80%9313.iso#10
-#EXTINF:0,,5.14. The Reluctant Millionaires
+#EXTINF:1483,,5.14. The Reluctant Millionaires
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/09.%20S05%20E14%e2%80%9320.iso#5
-#EXTINF:0,,5.15. A Duck for Lunch
+#EXTINF:1486,,5.15. A Duck for Lunch
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/09.%20S05%20E14%e2%80%9320.iso#6
-#EXTINF:0,,5.16. The Exploding Bedpan
+#EXTINF:1473,,5.16. The Exploding Bedpan
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/09.%20S05%20E14%e2%80%9320.iso#7
-#EXTINF:0,,5.17. Going Like a Bomb
+#EXTINF:1489,,5.17. Going Like a Bomb
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/09.%20S05%20E14%e2%80%9320.iso#8
-#EXTINF:0,,5.18. Money to Burn
+#EXTINF:1471,,5.18. Money to Burn
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/09.%20S05%20E14%e2%80%9320.iso#9
-#EXTINF:0,,5.19. Puddings Can Go Off
+#EXTINF:1432,,5.19. Puddings Can Go Off
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/09.%20S05%20E14%e2%80%9320.iso#10
-#EXTINF:0,,5.20. Land Mines for London
+#EXTINF:1468,,5.20. Land Mines for London
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/09.%20S05%20E14%e2%80%9320.iso#11
-#EXTINF:0,,5.21. Flight to Geneva
+#EXTINF:1485,,5.21. Flight to Geneva
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/10.%20S05%20E21%e2%80%9326.iso#5
-#EXTINF:0,,5.22. Train of Events
+#EXTINF:1474,,5.22. Train of Events
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/10.%20S05%20E21%e2%80%9326.iso#6
-#EXTINF:0,,5.23. An Enigma Variation
+#EXTINF:1480,,5.23. An Enigma Variation
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/10.%20S05%20E21%e2%80%9326.iso#7
-#EXTINF:0,,5.24. Wedding Bloss
+#EXTINF:1470,,5.24. Wedding Bloss
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/10.%20S05%20E21%e2%80%9326.iso#8
-#EXTINF:0,,5.25. Down the Drain
+#EXTINF:1480,,5.25. Down the Drain
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/10.%20S05%20E21%e2%80%9326.iso#9
-#EXTINF:0,,5.26. All in Disgeese
+#EXTINF:1473,,5.26. All in Disgeese
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/10.%20S05%20E21%e2%80%9326.iso#10
 
-#EXTINF:0,,6.1. Desperate Doings in the Graveyard
+#EXTINF:1718,,6.1. Desperate Doings in the Graveyard
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/11.%20S06%20E01%e2%80%9306.iso#2
-#EXTINF:0,,6.2. The Gestapo for the High Jump
+#EXTINF:1735,,6.2. The Gestapo for the High Jump
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/11.%20S06%20E01%e2%80%9306.iso#3
-#EXTINF:0,,6.3. Nouvion Oars
+#EXTINF:1764,,6.3. Nouvion Oars
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/11.%20S06%20E01%e2%80%9306.iso#4
-#EXTINF:0,,6.4. The Nicked Airmen
+#EXTINF:1771,,6.4. The Nicked Airmen
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/11.%20S06%20E01%e2%80%9306.iso#5
-#EXTINF:0,,6.5. The Airmen De-Nicked
+#EXTINF:1747,,6.5. The Airmen De-Nicked
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/11.%20S06%20E01%e2%80%9306.iso#6
-#EXTINF:0,,6.6. The Crooked Fences
+#EXTINF:1767,,6.6. The Crooked Fences
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/11.%20S06%20E01%e2%80%9306.iso#7
-#EXTINF:0,,6.7. Crabtrees Podgeon Pist
+#EXTINF:1762,,6.7. Crabtrees Podgeon Pist
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/12.%20S06%20E07%e2%80%9308,%20S07%20E01%e2%80%9304.iso#2
-#EXTINF:0,,6.8. Rising to the Occasion
+#EXTINF:1791,,6.8. Rising to the Occasion
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/12.%20S06%20E07%e2%80%9308,%20S07%20E01%e2%80%9304.iso#3
 
-#EXTINF:0,,7.1. A Quiet Honeymoon
+#EXTINF:1757,,7.1. A Quiet Honeymoon
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/12.%20S06%20E07%e2%80%9308,%20S07%20E01%e2%80%9304.iso#4
-#EXTINF:0,,7.2. An Almighty Bong
+#EXTINF:1747,,7.2. An Almighty Bong
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/12.%20S06%20E07%e2%80%9308,%20S07%20E01%e2%80%9304.iso#5
-#EXTINF:0,,7.3. Fleeing Monks
+#EXTINF:1774,,7.3. Fleeing Monks
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/12.%20S06%20E07%e2%80%9308,%20S07%20E01%e2%80%9304.iso#6
-#EXTINF:0,,7.4. Up the Crick Without a Piddle
+#EXTINF:1748,,7.4. Up the Crick Without a Piddle
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/12.%20S06%20E07%e2%80%9308,%20S07%20E01%e2%80%9304.iso#7
-#EXTINF:0,,7.5. The Gestapo Ruins a Picnic
+#EXTINF:1768,,7.5. The Gestapo Ruins a Picnic
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/13.%20S07%20E05%e2%80%9310.iso#2
-#EXTINF:0,,7.6. The Spirit of Nouvion
+#EXTINF:1746,,7.6. The Spirit of Nouvion
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/13.%20S07%20E05%e2%80%9310.iso#3
-#EXTINF:0,,7.7. Leg It to Spain!
+#EXTINF:1722,,7.7. Leg It to Spain!
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/13.%20S07%20E05%e2%80%9310.iso#4
-#EXTINF:0,,7.8. Prior Engagements
+#EXTINF:1773,,7.8. Prior Engagements
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/13.%20S07%20E05%e2%80%9310.iso#5
-#EXTINF:0,,7.9. Soup and Sausage
+#EXTINF:1748,,7.9. Soup and Sausage
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/13.%20S07%20E05%e2%80%9310.iso#6
-#EXTINF:0,,7.10. René of the Gypsies
+#EXTINF:1759,,7.10. René of the Gypsies
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/13.%20S07%20E05%e2%80%9310.iso#7
 
-#EXTINF:0,,8.1. Christmas Special—A Bun in the Oven
+#EXTINF:2651,,8.1. Christmas Special—A Bun in the Oven
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/16.%20S09%20E05%e2%80%9306,%20S08%20E01.iso#7
-#EXTINF:0,,8.2. Arousing Suspicions
+#EXTINF:1763,,8.2. Arousing Suspicions
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/14.%20S08%20E02%e2%80%9306.iso#5
-#EXTINF:0,,8.3. A Woman Never Lies
+#EXTINF:1736,,8.3. A Woman Never Lies
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/14.%20S08%20E02%e2%80%9306.iso#6
-#EXTINF:0,,8.4. Hitler's Last Heil
+#EXTINF:1754,,8.4. Hitler's Last Heil
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/14.%20S08%20E02%e2%80%9306.iso#7
-#EXTINF:0,,8.5. Awful Wedded Wife
+#EXTINF:1766,,8.5. Awful Wedded Wife
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/14.%20S08%20E02%e2%80%9306.iso#8
-#EXTINF:0,,8.6. Firing Squashed
+#EXTINF:1767,,8.6. Firing Squashed
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/14.%20S08%20E02%e2%80%9306.iso#9
-#EXTINF:0,,8.7. A Fishful of Francs
+#EXTINF:1764,,8.7. A Fishful of Francs
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/15.%20S08%20E07%e2%80%9308,%20S09%20E01%e2%80%9304.iso#5
-#EXTINF:0,,8.8. Swan Song
+#EXTINF:1766,,8.8. Swan Song
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/15.%20S08%20E07%e2%80%9308,%20S09%20E01%e2%80%9304.iso#6
 
-#EXTINF:0,,9.1. Gone with the Windmill
+#EXTINF:1774,,9.1. Gone with the Windmill
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/15.%20S08%20E07%e2%80%9308,%20S09%20E01%e2%80%9304.iso#7
-#EXTINF:0,,9.2. A Tour de France
+#EXTINF:1764,,9.2. A Tour de France
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/15.%20S08%20E07%e2%80%9308,%20S09%20E01%e2%80%9304.iso#8
-#EXTINF:0,,9.3. Dead Man Marching
+#EXTINF:1755,,9.3. Dead Man Marching
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/15.%20S08%20E07%e2%80%9308,%20S09%20E01%e2%80%9304.iso#9
-#EXTINF:0,,9.4. Tarts and Flickers
+#EXTINF:1762,,9.4. Tarts and Flickers
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/15.%20S08%20E07%e2%80%9308,%20S09%20E01%e2%80%9304.iso#10
-#EXTINF:0,,9.5. A Fishy Sendoff
+#EXTINF:1758,,9.5. A Fishy Sendoff
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/16.%20S09%20E05%e2%80%9306,%20S08%20E01.iso#5
-#EXTINF:0,,9.6. A Winkle in Time
+#EXTINF:1763,,9.6. A Winkle in Time
 dvd:///mnt/dvd/archive/A/%27Allo%20%27Allo!/16.%20S09%20E05%e2%80%9306,%20S08%20E01.iso#6
index 9138bc3..898c636 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Under the Night
+#EXTINF:2575,,1.1. Under the Night
 dvd:///mnt/dvd/archive/A/Andromeda/S01D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,1.2. An Affirming Flame
+#EXTINF:2574,,1.2. An Affirming Flame
 dvd:///mnt/dvd/archive/A/Andromeda/S01D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,1.3. To Loose the Fateful Lightning
+#EXTINF:2575,,1.3. To Loose the Fateful Lightning
 dvd:///mnt/dvd/archive/A/Andromeda/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,1.4. D Minus Zero
+#EXTINF:2575,,1.4. D Minus Zero
 dvd:///mnt/dvd/archive/A/Andromeda/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,1.5. Double Helix
+#EXTINF:2575,,1.5. Double Helix
 dvd:///mnt/dvd/archive/A/Andromeda/S01D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,1.6. Angel Dark, Demon Bright
+#EXTINF:2575,,1.6. Angel Dark, Demon Bright
 dvd:///mnt/dvd/archive/A/Andromeda/S01D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,1.7. The Ties That Blind
+#EXTINF:2576,,1.7. The Ties That Blind
 dvd:///mnt/dvd/archive/A/Andromeda/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,1.8. The Banks of the Lethe
+#EXTINF:2575,,1.8. The Banks of the Lethe
 dvd:///mnt/dvd/archive/A/Andromeda/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,1.9. A Rose in the Ashes
+#EXTINF:2575,,1.9. A Rose in the Ashes
 dvd:///mnt/dvd/archive/A/Andromeda/S01D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,1.10. All Great Neptune's Ocean
+#EXTINF:2574,,1.10. All Great Neptune's Ocean
 dvd:///mnt/dvd/archive/A/Andromeda/S01D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,1.11. The Pearls that Were His Eyes
+#EXTINF:2574,,1.11. The Pearls that Were His Eyes
 dvd:///mnt/dvd/archive/A/Andromeda/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,1.12. The Mathematics of Tears
+#EXTINF:2574,,1.12. The Mathematics of Tears
 dvd:///mnt/dvd/archive/A/Andromeda/S01D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,1.13. Music of a Distant Drum
+#EXTINF:2574,,1.13. Music of a Distant Drum
 dvd:///mnt/dvd/archive/A/Andromeda/S01D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,1.14. Harper 2.0
+#EXTINF:2574,,1.14. Harper 2.0
 dvd:///mnt/dvd/archive/A/Andromeda/S01D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,1.15. Forced Perspective
+#EXTINF:2574,,1.15. Forced Perspective
 dvd:///mnt/dvd/archive/A/Andromeda/S01D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,1.16. The Sum of Its Parts
+#EXTINF:2574,,1.16. The Sum of Its Parts
 dvd:///mnt/dvd/archive/A/Andromeda/S01D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,1.17. Fear and Loathing in the Milky Way
+#EXTINF:2574,,1.17. Fear and Loathing in the Milky Way
 dvd:///mnt/dvd/archive/A/Andromeda/S01D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,1.18. The Devil Take the Hindmost
+#EXTINF:2575,,1.18. The Devil Take the Hindmost
 dvd:///mnt/dvd/archive/A/Andromeda/S01D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,1.19. The Honey Offering
+#EXTINF:2574,,1.19. The Honey Offering
 dvd:///mnt/dvd/archive/A/Andromeda/S01D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,1.20. Star-Crossed
+#EXTINF:2574,,1.20. Star-Crossed
 dvd:///mnt/dvd/archive/A/Andromeda/S01D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,1.21. It Makes a Lovely Light
+#EXTINF:2575,,1.21. It Makes a Lovely Light
 dvd:///mnt/dvd/archive/A/Andromeda/S01D06.%20E21%e2%80%9322.iso#1
-#EXTINF:0,,1.22. Its Hour Come 'Round at Last
+#EXTINF:2574,,1.22. Its Hour Come 'Round at Last
 dvd:///mnt/dvd/archive/A/Andromeda/S01D06.%20E21%e2%80%9322.iso#2
 
-#EXTINF:0,,2.1. The Widening Gyre
+#EXTINF:2572,,2.1. The Widening Gyre
 dvd:///mnt/dvd/archive/A/Andromeda/S02D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,2.2. Exit Strategies
+#EXTINF:2572,,2.2. Exit Strategies
 dvd:///mnt/dvd/archive/A/Andromeda/S02D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,2.3. A Heart for Falsehood Framed
+#EXTINF:2572,,2.3. A Heart for Falsehood Framed
 dvd:///mnt/dvd/archive/A/Andromeda/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,2.4. Pitiless as the Sun
+#EXTINF:2572,,2.4. Pitiless as the Sun
 dvd:///mnt/dvd/archive/A/Andromeda/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.5. Last Call at the Broken Hammer
+#EXTINF:2572,,2.5. Last Call at the Broken Hammer
 dvd:///mnt/dvd/archive/A/Andromeda/S02D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,2.6. All Too Human
+#EXTINF:2572,,2.6. All Too Human
 dvd:///mnt/dvd/archive/A/Andromeda/S02D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,2.7. Una salus victus
+#EXTINF:2572,,2.7. Una salus victus
 dvd:///mnt/dvd/archive/A/Andromeda/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,2.8. Home Fires
+#EXTINF:2572,,2.8. Home Fires
 dvd:///mnt/dvd/archive/A/Andromeda/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.9. Into the Labyrinth
+#EXTINF:2572,,2.9. Into the Labyrinth
 dvd:///mnt/dvd/archive/A/Andromeda/S02D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,2.10. The Prince
+#EXTINF:2572,,2.10. The Prince
 dvd:///mnt/dvd/archive/A/Andromeda/S02D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,2.11. Bunker Hill
+#EXTINF:2572,,2.11. Bunker Hill
 dvd:///mnt/dvd/archive/A/Andromeda/S02D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,2.12. Ouroboros
+#EXTINF:2572,,2.12. Ouroboros
 dvd:///mnt/dvd/archive/A/Andromeda/S02D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,2.13. Lava and Rockets
+#EXTINF:2572,,2.13. Lava and Rockets
 dvd:///mnt/dvd/archive/A/Andromeda/S02D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,2.14. Be All My Sins Remembered
+#EXTINF:2572,,2.14. Be All My Sins Remembered
 dvd:///mnt/dvd/archive/A/Andromeda/S02D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,2.15. Dance of the Mayflies
+#EXTINF:2572,,2.15. Dance of the Mayflies
 dvd:///mnt/dvd/archive/A/Andromeda/S02D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,2.16. In Heaven Now Are Three
+#EXTINF:2572,,2.16. In Heaven Now Are Three
 dvd:///mnt/dvd/archive/A/Andromeda/S02D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,2.17. The Things We Cannot Change
+#EXTINF:2572,,2.17. The Things We Cannot Change
 dvd:///mnt/dvd/archive/A/Andromeda/S02D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,2.18. The Fair Unknown
+#EXTINF:2572,,2.18. The Fair Unknown
 dvd:///mnt/dvd/archive/A/Andromeda/S02D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,2.19. Belly of the Beast
+#EXTINF:2572,,2.19. Belly of the Beast
 dvd:///mnt/dvd/archive/A/Andromeda/S02D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,2.20. The Knight, Death, and the Devil
+#EXTINF:2572,,2.20. The Knight, Death, and the Devil
 dvd:///mnt/dvd/archive/A/Andromeda/S02D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,2.21. Immaculate Perception
+#EXTINF:2572,,2.21. Immaculate Perception
 dvd:///mnt/dvd/archive/A/Andromeda/S02D06.%20E21%e2%80%9322.iso#1
-#EXTINF:0,,2.22. Tunnel at the End of the Light
+#EXTINF:2572,,2.22. Tunnel at the End of the Light
 dvd:///mnt/dvd/archive/A/Andromeda/S02D06.%20E21%e2%80%9322.iso#2
 
-#EXTINF:0,,3.1. If the Wheel is Fixed
+#EXTINF:2572,,3.1. If the Wheel is Fixed
 dvd:///mnt/dvd/archive/A/Andromeda/S03D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,3.2. The Shards of Rimni
+#EXTINF:2572,,3.2. The Shards of Rimni
 dvd:///mnt/dvd/archive/A/Andromeda/S03D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,3.3. Mad to be Saved
+#EXTINF:2572,,3.3. Mad to be Saved
 dvd:///mnt/dvd/archive/A/Andromeda/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,3.4. Cui bono
+#EXTINF:2572,,3.4. Cui bono
 dvd:///mnt/dvd/archive/A/Andromeda/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,3.5. The Lone and Level Sands
+#EXTINF:2572,,3.5. The Lone and Level Sands
 dvd:///mnt/dvd/archive/A/Andromeda/S03D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,3.6. Slipfighter the Dogs of War
+#EXTINF:2572,,3.6. Slipfighter the Dogs of War
 dvd:///mnt/dvd/archive/A/Andromeda/S03D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,3.7. The Leper's Kiss
+#EXTINF:2572,,3.7. The Leper's Kiss
 dvd:///mnt/dvd/archive/A/Andromeda/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,3.8. For Whom the Bell Tolls
+#EXTINF:2572,,3.8. For Whom the Bell Tolls
 dvd:///mnt/dvd/archive/A/Andromeda/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,3.9. And Your Heart Will Fly Away
+#EXTINF:2572,,3.9. And Your Heart Will Fly Away
 dvd:///mnt/dvd/archive/A/Andromeda/S03D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,3.10. The Unconquerable Man
+#EXTINF:2572,,3.10. The Unconquerable Man
 dvd:///mnt/dvd/archive/A/Andromeda/S03D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,3.11. Delenda est
+#EXTINF:2572,,3.11. Delenda est
 dvd:///mnt/dvd/archive/A/Andromeda/S03D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,3.12. The Dark Backward
+#EXTINF:2572,,3.12. The Dark Backward
 dvd:///mnt/dvd/archive/A/Andromeda/S03D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,3.13. The Risk-All Point
+#EXTINF:2572,,3.13. The Risk-All Point
 dvd:///mnt/dvd/archive/A/Andromeda/S03D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,3.14. The Right Horse
+#EXTINF:2572,,3.14. The Right Horse
 dvd:///mnt/dvd/archive/A/Andromeda/S03D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,3.15. What Happens to a Rev Deferred?
+#EXTINF:2572,,3.15. What Happens to a Rev Deferred?
 dvd:///mnt/dvd/archive/A/Andromeda/S03D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,3.16. Point of the Spear
+#EXTINF:2572,,3.16. Point of the Spear
 dvd:///mnt/dvd/archive/A/Andromeda/S03D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,3.17. Vault of the Heavens
+#EXTINF:2572,,3.17. Vault of the Heavens
 dvd:///mnt/dvd/archive/A/Andromeda/S03D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,3.18. Deep Midnight's Voice
+#EXTINF:2572,,3.18. Deep Midnight's Voice
 dvd:///mnt/dvd/archive/A/Andromeda/S03D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,3.19. The Illusion of Majesty
+#EXTINF:2572,,3.19. The Illusion of Majesty
 dvd:///mnt/dvd/archive/A/Andromeda/S03D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,3.20. Twilight of the Idols
+#EXTINF:2572,,3.20. Twilight of the Idols
 dvd:///mnt/dvd/archive/A/Andromeda/S03D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,3.21. Day of Judgement, Day of Wrath
+#EXTINF:2572,,3.21. Day of Judgement, Day of Wrath
 dvd:///mnt/dvd/archive/A/Andromeda/S03D06.%20E21%e2%80%9322.iso#1
-#EXTINF:0,,3.22. Shadows Cast by a Final Salute
+#EXTINF:2572,,3.22. Shadows Cast by a Final Salute
 dvd:///mnt/dvd/archive/A/Andromeda/S03D06.%20E21%e2%80%9322.iso#2
 
-#EXTINF:0,,4.1. Answers Given to Questions Never Asked
+#EXTINF:2572,,4.1. Answers Given to Questions Never Asked
 dvd:///mnt/dvd/archive/A/Andromeda/S04D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,4.2. Pieces of Eight
+#EXTINF:2572,,4.2. Pieces of Eight
 dvd:///mnt/dvd/archive/A/Andromeda/S04D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,4.3. Waking the Tyrant's Device
+#EXTINF:2572,,4.3. Waking the Tyrant's Device
 dvd:///mnt/dvd/archive/A/Andromeda/S04D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,4.4. Double or Nothingness
+#EXTINF:2572,,4.4. Double or Nothingness
 dvd:///mnt/dvd/archive/A/Andromeda/S04D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,4.5. Harper/Delete
+#EXTINF:2572,,4.5. Harper/Delete
 dvd:///mnt/dvd/archive/A/Andromeda/S04D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,4.6. Soon the Nearing Vortex
+#EXTINF:2572,,4.6. Soon the Nearing Vortex
 dvd:///mnt/dvd/archive/A/Andromeda/S04D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,4.7. The World Turns All Around Her
+#EXTINF:2572,,4.7. The World Turns All Around Her
 dvd:///mnt/dvd/archive/A/Andromeda/S04D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,4.8. Conduit to Destiny
+#EXTINF:2572,,4.8. Conduit to Destiny
 dvd:///mnt/dvd/archive/A/Andromeda/S04D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,4.9. Machinery of the Mind
+#EXTINF:2572,,4.9. Machinery of the Mind
 dvd:///mnt/dvd/archive/A/Andromeda/S04D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,4.10. Exalted Reason, Resplendent Daughter
+#EXTINF:2572,,4.10. Exalted Reason, Resplendent Daughter
 dvd:///mnt/dvd/archive/A/Andromeda/S04D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,4.11. The Torment, the Release
+#EXTINF:2572,,4.11. The Torment, the Release
 dvd:///mnt/dvd/archive/A/Andromeda/S04D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,4.12. The Spider's Stratagem
+#EXTINF:2572,,4.12. The Spider's Stratagem
 dvd:///mnt/dvd/archive/A/Andromeda/S04D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,4.13. The Warmth of an Invisible Light
+#EXTINF:2572,,4.13. The Warmth of an Invisible Light
 dvd:///mnt/dvd/archive/A/Andromeda/S04D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,4.14. The Others
+#EXTINF:2572,,4.14. The Others
 dvd:///mnt/dvd/archive/A/Andromeda/S04D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,4.15. Fear Burns Down to Ashes
+#EXTINF:2572,,4.15. Fear Burns Down to Ashes
 dvd:///mnt/dvd/archive/A/Andromeda/S04D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,4.16. Lost in a Space that isn't There
+#EXTINF:2572,,4.16. Lost in a Space that isn't There
 dvd:///mnt/dvd/archive/A/Andromeda/S04D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,4.17. Abridging the Devil's Divide
+#EXTINF:2572,,4.17. Abridging the Devil's Divide
 dvd:///mnt/dvd/archive/A/Andromeda/S04D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,4.18. Trusting the Gordian Maze
+#EXTINF:2572,,4.18. Trusting the Gordian Maze
 dvd:///mnt/dvd/archive/A/Andromeda/S04D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,4.19. A Symmetry of Imperfection
+#EXTINF:2572,,4.19. A Symmetry of Imperfection
 dvd:///mnt/dvd/archive/A/Andromeda/S04D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,4.20. Time Out of Mind
+#EXTINF:2572,,4.20. Time Out of Mind
 dvd:///mnt/dvd/archive/A/Andromeda/S04D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,4.21. The Dissonant Interval (part 1)
+#EXTINF:2572,,4.21. The Dissonant Interval (part 1)
 dvd:///mnt/dvd/archive/A/Andromeda/S04D06.%20E21%e2%80%9322.iso#1
-#EXTINF:0,,4.22. The Dissonant Interval (part 2)
+#EXTINF:2572,,4.22. The Dissonant Interval (part 2)
 dvd:///mnt/dvd/archive/A/Andromeda/S04D06.%20E21%e2%80%9322.iso#2
 
-#EXTINF:0,,5.1. The Weight (part 1)
+#EXTINF:2572,,5.1. The Weight (part 1)
 dvd:///mnt/dvd/archive/A/Andromeda/S05D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,5.2. The Weight (part 1)
+#EXTINF:2572,,5.2. The Weight (part 1)
 dvd:///mnt/dvd/archive/A/Andromeda/S05D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,5.3. Phear Phactor Phenom
+#EXTINF:2572,,5.3. Phear Phactor Phenom
 dvd:///mnt/dvd/archive/A/Andromeda/S05D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,5.4. Decay of the Angel
+#EXTINF:2572,,5.4. Decay of the Angel
 dvd:///mnt/dvd/archive/A/Andromeda/S05D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,5.5. The Eschatology of Our Present
+#EXTINF:2572,,5.5. The Eschatology of Our Present
 dvd:///mnt/dvd/archive/A/Andromeda/S05D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,5.6. When Goes Around…
+#EXTINF:2572,,5.6. When Goes Around…
 dvd:///mnt/dvd/archive/A/Andromeda/S05D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,5.7. Attempting Screed
+#EXTINF:2572,,5.7. Attempting Screed
 dvd:///mnt/dvd/archive/A/Andromeda/S05D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,5.8. So Burn the Untamed Lands
+#EXTINF:2572,,5.8. So Burn the Untamed Lands
 dvd:///mnt/dvd/archive/A/Andromeda/S05D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,5.9. What Will be Was Not
+#EXTINF:2572,,5.9. What Will be Was Not
 dvd:///mnt/dvd/archive/A/Andromeda/S05D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,5.10. The Test
+#EXTINF:2572,,5.10. The Test
 dvd:///mnt/dvd/archive/A/Andromeda/S05D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,5.11. Through a Glass Darkly
+#EXTINF:2572,,5.11. Through a Glass Darkly
 dvd:///mnt/dvd/archive/A/Andromeda/S05D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,5.12. Pride Before the Fall
+#EXTINF:2572,,5.12. Pride Before the Fall
 dvd:///mnt/dvd/archive/A/Andromeda/S05D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,5.13. Moonlight Becomes You
+#EXTINF:2572,,5.13. Moonlight Becomes You
 dvd:///mnt/dvd/archive/A/Andromeda/S05D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,5.14. Past is Prolix
+#EXTINF:2572,,5.14. Past is Prolix
 dvd:///mnt/dvd/archive/A/Andromeda/S05D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,5.15. The Opposites of Attraction
+#EXTINF:2572,,5.15. The Opposites of Attraction
 dvd:///mnt/dvd/archive/A/Andromeda/S05D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,5.16. Saving Light from a Black Sun
+#EXTINF:2572,,5.16. Saving Light from a Black Sun
 dvd:///mnt/dvd/archive/A/Andromeda/S05D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,5.17. Totaled Recall
+#EXTINF:2572,,5.17. Totaled Recall
 dvd:///mnt/dvd/archive/A/Andromeda/S05D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,5.18. Quantum Tractate Delirium
+#EXTINF:2572,,5.18. Quantum Tractate Delirium
 dvd:///mnt/dvd/archive/A/Andromeda/S05D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,5.19. One More Day's Light
+#EXTINF:2572,,5.19. One More Day's Light
 dvd:///mnt/dvd/archive/A/Andromeda/S05D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,5.20. Chaos and the Stillness of It
+#EXTINF:2572,,5.20. Chaos and the Stillness of It
 dvd:///mnt/dvd/archive/A/Andromeda/S05D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,5.21. The Heart of the Journey (part 1)
+#EXTINF:2572,,5.21. The Heart of the Journey (part 1)
 dvd:///mnt/dvd/archive/A/Andromeda/S05D06.%20E21%e2%80%9322.iso#1
-#EXTINF:0,,5.22. The Heart of the Journey (part 2)
+#EXTINF:2572,,5.22. The Heart of the Journey (part 2)
 dvd:///mnt/dvd/archive/A/Andromeda/S05D06.%20E21%e2%80%9322.iso#2
index 72b7fd2..fd39755 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. City of
+#EXTINF:2552,,1.1. City of
 dvd:///mnt/dvd/archive/A/Angel/S01D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,1.2. Lonely Hearts
+#EXTINF:2511,,1.2. Lonely Hearts
 dvd:///mnt/dvd/archive/A/Angel/S01D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,1.3. In the Dark
+#EXTINF:2438,,1.3. In the Dark
 dvd:///mnt/dvd/archive/A/Angel/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,1.4. I Fall to Pieces
+#EXTINF:2466,,1.4. I Fall to Pieces
 dvd:///mnt/dvd/archive/A/Angel/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,1.5. Rm w/a Vu
+#EXTINF:2477,,1.5. Rm w/a Vu
 dvd:///mnt/dvd/archive/A/Angel/S01D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,1.6. Sense & Sensitivity
+#EXTINF:2409,,1.6. Sense & Sensitivity
 dvd:///mnt/dvd/archive/A/Angel/S01D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,1.7. Bachelor Party
+#EXTINF:2534,,1.7. Bachelor Party
 dvd:///mnt/dvd/archive/A/Angel/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,1.8. I Will Remember You
+#EXTINF:2554,,1.8. I Will Remember You
 dvd:///mnt/dvd/archive/A/Angel/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,1.9. Hero
+#EXTINF:2457,,1.9. Hero
 dvd:///mnt/dvd/archive/A/Angel/S01D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,1.10. Parting Gifts
+#EXTINF:2432,,1.10. Parting Gifts
 dvd:///mnt/dvd/archive/A/Angel/S01D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,1.11. Somnambulist
+#EXTINF:2420,,1.11. Somnambulist
 dvd:///mnt/dvd/archive/A/Angel/S01D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,1.12. Expecting
+#EXTINF:2450,,1.12. Expecting
 dvd:///mnt/dvd/archive/A/Angel/S01D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,1.13. She
+#EXTINF:2539,,1.13. She
 dvd:///mnt/dvd/archive/A/Angel/S01D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,1.14. I've Got You Under My Skin
+#EXTINF:2526,,1.14. I've Got You Under My Skin
 dvd:///mnt/dvd/archive/A/Angel/S01D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,1.15. The Prodigal
+#EXTINF:2318,,1.15. The Prodigal
 dvd:///mnt/dvd/archive/A/Angel/S01D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,1.16. The Ring
+#EXTINF:2454,,1.16. The Ring
 dvd:///mnt/dvd/archive/A/Angel/S01D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,1.17. Eternity
+#EXTINF:2525,,1.17. Eternity
 dvd:///mnt/dvd/archive/A/Angel/S01D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,1.18. Five By Five
+#EXTINF:2457,,1.18. Five By Five
 dvd:///mnt/dvd/archive/A/Angel/S01D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,1.19. Sanctuary
+#EXTINF:2416,,1.19. Sanctuary
 dvd:///mnt/dvd/archive/A/Angel/S01D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,1.20. War Zone
+#EXTINF:2390,,1.20. War Zone
 dvd:///mnt/dvd/archive/A/Angel/S01D06.%20E20%e2%80%9322.iso#1
-#EXTINF:0,,1.21. Blind Date
+#EXTINF:2492,,1.21. Blind Date
 dvd:///mnt/dvd/archive/A/Angel/S01D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,1.22. To Shanshu in L.A.
+#EXTINF:2479,,1.22. To Shanshu in L.A.
 dvd:///mnt/dvd/archive/A/Angel/S01D06.%20E20%e2%80%9322.iso#3
 
-#EXTINF:0,,2.1. Judgment
+#EXTINF:2505,,2.1. Judgment
 dvd:///mnt/dvd/archive/A/Angel/S02D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,2.2. Are You Now or Have You Ever Been
+#EXTINF:2561,,2.2. Are You Now or Have You Ever Been
 dvd:///mnt/dvd/archive/A/Angel/S02D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,2.3. First Impressions
+#EXTINF:2398,,2.3. First Impressions
 dvd:///mnt/dvd/archive/A/Angel/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,2.4. Untouched
+#EXTINF:2563,,2.4. Untouched
 dvd:///mnt/dvd/archive/A/Angel/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.5. Dear Boy
+#EXTINF:2564,,2.5. Dear Boy
 dvd:///mnt/dvd/archive/A/Angel/S02D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,2.6. Guise Will Be Guise
+#EXTINF:2482,,2.6. Guise Will Be Guise
 dvd:///mnt/dvd/archive/A/Angel/S02D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,2.7. Darla
+#EXTINF:2563,,2.7. Darla
 dvd:///mnt/dvd/archive/A/Angel/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,2.8. The Shroud of Rahmon
+#EXTINF:2482,,2.8. The Shroud of Rahmon
 dvd:///mnt/dvd/archive/A/Angel/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.9. The Trial
+#EXTINF:2458,,2.9. The Trial
 dvd:///mnt/dvd/archive/A/Angel/S02D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,2.10. Reunion
+#EXTINF:2405,,2.10. Reunion
 dvd:///mnt/dvd/archive/A/Angel/S02D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,2.11. Redefinition
+#EXTINF:2478,,2.11. Redefinition
 dvd:///mnt/dvd/archive/A/Angel/S02D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,2.12. Blood Money
+#EXTINF:2463,,2.12. Blood Money
 dvd:///mnt/dvd/archive/A/Angel/S02D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,2.13. Happy Anniversary
+#EXTINF:2480,,2.13. Happy Anniversary
 dvd:///mnt/dvd/archive/A/Angel/S02D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,2.14. The Thin Dead Line
+#EXTINF:2492,,2.14. The Thin Dead Line
 dvd:///mnt/dvd/archive/A/Angel/S02D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,2.15. Reprise
+#EXTINF:2560,,2.15. Reprise
 dvd:///mnt/dvd/archive/A/Angel/S02D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,2.16. Epiphany
+#EXTINF:2563,,2.16. Epiphany
 dvd:///mnt/dvd/archive/A/Angel/S02D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,2.17. Disharmony
+#EXTINF:2511,,2.17. Disharmony
 dvd:///mnt/dvd/archive/A/Angel/S02D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,2.18. Dead End
+#EXTINF:2529,,2.18. Dead End
 dvd:///mnt/dvd/archive/A/Angel/S02D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,2.19. Belonging
+#EXTINF:2393,,2.19. Belonging
 dvd:///mnt/dvd/archive/A/Angel/S02D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,2.20. Over the Rainbow
+#EXTINF:2507,,2.20. Over the Rainbow
 dvd:///mnt/dvd/archive/A/Angel/S02D06.%20E20%e2%80%9322.iso#1
-#EXTINF:0,,2.21. Through the Looking Glass
+#EXTINF:2561,,2.21. Through the Looking Glass
 dvd:///mnt/dvd/archive/A/Angel/S02D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,2.22. There's No Place Like Plrtz Glrb
+#EXTINF:2563,,2.22. There's No Place Like Plrtz Glrb
 dvd:///mnt/dvd/archive/A/Angel/S02D06.%20E20%e2%80%9322.iso#3
 
-#EXTINF:0,,3.1. Heartthrob
+#EXTINF:2436,,3.1. Heartthrob
 dvd:///mnt/dvd/archive/A/Angel/S03D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,3.2. That Vision Thing
+#EXTINF:2517,,3.2. That Vision Thing
 dvd:///mnt/dvd/archive/A/Angel/S03D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,3.3. That Old Gang of Mine
+#EXTINF:2442,,3.3. That Old Gang of Mine
 dvd:///mnt/dvd/archive/A/Angel/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,3.4. Carpe noctem
+#EXTINF:2417,,3.4. Carpe noctem
 dvd:///mnt/dvd/archive/A/Angel/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,3.5. Fredless
+#EXTINF:2527,,3.5. Fredless
 dvd:///mnt/dvd/archive/A/Angel/S03D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,3.6. Billy
+#EXTINF:2546,,3.6. Billy
 dvd:///mnt/dvd/archive/A/Angel/S03D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,3.7. Offspring
+#EXTINF:2448,,3.7. Offspring
 dvd:///mnt/dvd/archive/A/Angel/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,3.8. Quickening
+#EXTINF:2467,,3.8. Quickening
 dvd:///mnt/dvd/archive/A/Angel/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,3.9. Lullaby
+#EXTINF:2513,,3.9. Lullaby
 dvd:///mnt/dvd/archive/A/Angel/S03D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,3.10. Dad
+#EXTINF:2511,,3.10. Dad
 dvd:///mnt/dvd/archive/A/Angel/S03D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,3.11. Birthday
+#EXTINF:2505,,3.11. Birthday
 dvd:///mnt/dvd/archive/A/Angel/S03D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,3.12. Provider
+#EXTINF:2494,,3.12. Provider
 dvd:///mnt/dvd/archive/A/Angel/S03D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,3.13. Waiting in the Wings
+#EXTINF:2551,,3.13. Waiting in the Wings
 dvd:///mnt/dvd/archive/A/Angel/S03D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,3.14. Couplet
+#EXTINF:2529,,3.14. Couplet
 dvd:///mnt/dvd/archive/A/Angel/S03D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,3.15. Loyalty
+#EXTINF:2559,,3.15. Loyalty
 dvd:///mnt/dvd/archive/A/Angel/S03D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,3.16. Sleep Tight
+#EXTINF:2530,,3.16. Sleep Tight
 dvd:///mnt/dvd/archive/A/Angel/S03D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,3.17. Forgiving
+#EXTINF:2558,,3.17. Forgiving
 dvd:///mnt/dvd/archive/A/Angel/S03D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,3.18. Double or Nothing
+#EXTINF:2548,,3.18. Double or Nothing
 dvd:///mnt/dvd/archive/A/Angel/S03D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,3.19. The Price
+#EXTINF:2481,,3.19. The Price
 dvd:///mnt/dvd/archive/A/Angel/S03D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,3.20. A New World
+#EXTINF:2552,,3.20. A New World
 dvd:///mnt/dvd/archive/A/Angel/S03D06.%20E20%e2%80%9322.iso#1
-#EXTINF:0,,3.21. Benediction
+#EXTINF:2528,,3.21. Benediction
 dvd:///mnt/dvd/archive/A/Angel/S03D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,3.22. Tomorrow
+#EXTINF:2563,,3.22. Tomorrow
 dvd:///mnt/dvd/archive/A/Angel/S03D06.%20E20%e2%80%9322.iso#3
 
-#EXTINF:0,,4.1. Deep Down
+#EXTINF:2539,,4.1. Deep Down
 dvd:///mnt/dvd/archive/A/Angel/S04D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,4.2. Ground State
+#EXTINF:2458,,4.2. Ground State
 dvd:///mnt/dvd/archive/A/Angel/S04D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,4.3. The House Always Wins
+#EXTINF:2423,,4.3. The House Always Wins
 dvd:///mnt/dvd/archive/A/Angel/S04D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,4.4. Slouching Toward Bethlehem
+#EXTINF:2559,,4.4. Slouching Toward Bethlehem
 dvd:///mnt/dvd/archive/A/Angel/S04D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,4.5. Supersymmetry
+#EXTINF:2467,,4.5. Supersymmetry
 dvd:///mnt/dvd/archive/A/Angel/S04D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,4.6. Spin the Bottle
+#EXTINF:2562,,4.6. Spin the Bottle
 dvd:///mnt/dvd/archive/A/Angel/S04D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,4.7. Apocalypse, Nowish
+#EXTINF:2563,,4.7. Apocalypse, Nowish
 dvd:///mnt/dvd/archive/A/Angel/S04D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,4.8. Habeas Corpses
+#EXTINF:2544,,4.8. Habeas Corpses
 dvd:///mnt/dvd/archive/A/Angel/S04D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,4.9. Long Day's Journey
+#EXTINF:2552,,4.9. Long Day's Journey
 dvd:///mnt/dvd/archive/A/Angel/S04D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,4.10. Awakening
+#EXTINF:2562,,4.10. Awakening
 dvd:///mnt/dvd/archive/A/Angel/S04D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,4.11. Soulless
+#EXTINF:2468,,4.11. Soulless
 dvd:///mnt/dvd/archive/A/Angel/S04D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,4.12. Calvary
+#EXTINF:2548,,4.12. Calvary
 dvd:///mnt/dvd/archive/A/Angel/S04D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,4.13. Salvage
+#EXTINF:2553,,4.13. Salvage
 dvd:///mnt/dvd/archive/A/Angel/S04D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,4.14. Release
+#EXTINF:2519,,4.14. Release
 dvd:///mnt/dvd/archive/A/Angel/S04D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,4.15. Orpheus
+#EXTINF:2447,,4.15. Orpheus
 dvd:///mnt/dvd/archive/A/Angel/S04D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,4.16. Players
+#EXTINF:2446,,4.16. Players
 dvd:///mnt/dvd/archive/A/Angel/S04D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,4.17. Inside Out
+#EXTINF:2498,,4.17. Inside Out
 dvd:///mnt/dvd/archive/A/Angel/S04D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,4.18. Shiny Happy People
+#EXTINF:2558,,4.18. Shiny Happy People
 dvd:///mnt/dvd/archive/A/Angel/S04D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,4.19. The Magic Bullet
+#EXTINF:2561,,4.19. The Magic Bullet
 dvd:///mnt/dvd/archive/A/Angel/S04D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,4.20. Sacrifice
+#EXTINF:2481,,4.20. Sacrifice
 dvd:///mnt/dvd/archive/A/Angel/S04D06.%20E20%e2%80%9322.iso#1
-#EXTINF:0,,4.21. Peace Out
+#EXTINF:2511,,4.21. Peace Out
 dvd:///mnt/dvd/archive/A/Angel/S04D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,4.22. Home
+#EXTINF:2555,,4.22. Home
 dvd:///mnt/dvd/archive/A/Angel/S04D06.%20E20%e2%80%9322.iso#3
 
-#EXTINF:0,,5.1. Conviction
+#EXTINF:2553,,5.1. Conviction
 dvd:///mnt/dvd/archive/A/Angel/S05D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,5.2. Just Rewards
+#EXTINF:2519,,5.2. Just Rewards
 dvd:///mnt/dvd/archive/A/Angel/S05D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,5.3. Unleashed
+#EXTINF:2472,,5.3. Unleashed
 dvd:///mnt/dvd/archive/A/Angel/S05D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,5.4. Hell Bound
+#EXTINF:2551,,5.4. Hell Bound
 dvd:///mnt/dvd/archive/A/Angel/S05D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,5.5. Life of the Party
+#EXTINF:2515,,5.5. Life of the Party
 dvd:///mnt/dvd/archive/A/Angel/S05D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,5.6. The Cautionary Tale of Numero Cinco
+#EXTINF:2496,,5.6. The Cautionary Tale of Numero Cinco
 dvd:///mnt/dvd/archive/A/Angel/S05D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,5.7. Lineage
+#EXTINF:2470,,5.7. Lineage
 dvd:///mnt/dvd/archive/A/Angel/S05D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,5.8. Destiny
+#EXTINF:2448,,5.8. Destiny
 dvd:///mnt/dvd/archive/A/Angel/S05D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,5.9. Harm's Way
+#EXTINF:2502,,5.9. Harm's Way
 dvd:///mnt/dvd/archive/A/Angel/S05D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,5.10. Soul Purpose
+#EXTINF:2475,,5.10. Soul Purpose
 dvd:///mnt/dvd/archive/A/Angel/S05D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,5.11. Damage
+#EXTINF:2502,,5.11. Damage
 dvd:///mnt/dvd/archive/A/Angel/S05D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,5.12. You're Welcome
+#EXTINF:2517,,5.12. You're Welcome
 dvd:///mnt/dvd/archive/A/Angel/S05D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,5.13. Why We Fight
+#EXTINF:2448,,5.13. Why We Fight
 dvd:///mnt/dvd/archive/A/Angel/S05D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,5.14. Smile Time
+#EXTINF:2472,,5.14. Smile Time
 dvd:///mnt/dvd/archive/A/Angel/S05D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,5.15. A Hole in the World
+#EXTINF:2523,,5.15. A Hole in the World
 dvd:///mnt/dvd/archive/A/Angel/S05D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,5.16. Shells
+#EXTINF:2532,,5.16. Shells
 dvd:///mnt/dvd/archive/A/Angel/S05D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,5.17. Underneath
+#EXTINF:2425,,5.17. Underneath
 dvd:///mnt/dvd/archive/A/Angel/S05D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,5.18. Origin
+#EXTINF:2445,,5.18. Origin
 dvd:///mnt/dvd/archive/A/Angel/S05D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,5.19. Time Bomb
+#EXTINF:2435,,5.19. Time Bomb
 dvd:///mnt/dvd/archive/A/Angel/S05D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,5.20. The Girl in Question
+#EXTINF:2456,,5.20. The Girl in Question
 dvd:///mnt/dvd/archive/A/Angel/S05D06.%20E20%e2%80%9322.iso#1
-#EXTINF:0,,5.21. Power Play
+#EXTINF:2517,,5.21. Power Play
 dvd:///mnt/dvd/archive/A/Angel/S05D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,5.22. Not Fade Away
+#EXTINF:2520,,5.22. Not Fade Away
 dvd:///mnt/dvd/archive/A/Angel/S05D06.%20E20%e2%80%9322.iso#3
index 99b6ee6..f8eb6fb 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Pilot
+#EXTINF:2451,,1.1. Pilot
 dvd:///mnt/dvd/archive/A/Arrow/S01D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,1.2. Honor Thy Father
+#EXTINF:2440,,1.2. Honor Thy Father
 dvd:///mnt/dvd/archive/A/Arrow/S01D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,1.3. Lone Gunmen
+#EXTINF:2445,,1.3. Lone Gunmen
 dvd:///mnt/dvd/archive/A/Arrow/S01D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,1.4. An Innocent Man
+#EXTINF:2447,,1.4. An Innocent Man
 dvd:///mnt/dvd/archive/A/Arrow/S01D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,1.5. Damaged
+#EXTINF:2428,,1.5. Damaged
 dvd:///mnt/dvd/archive/A/Arrow/S01D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,1.6. Legacies
+#EXTINF:2421,,1.6. Legacies
 dvd:///mnt/dvd/archive/A/Arrow/S01D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,1.7. Muse of Fire
+#EXTINF:2340,,1.7. Muse of Fire
 dvd:///mnt/dvd/archive/A/Arrow/S01D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,1.8. Vendetta
+#EXTINF:2448,,1.8. Vendetta
 dvd:///mnt/dvd/archive/A/Arrow/S01D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,1.9. Year's End
+#EXTINF:2448,,1.9. Year's End
 dvd:///mnt/dvd/archive/A/Arrow/S01D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,1.10. Burned
+#EXTINF:2445,,1.10. Burned
 dvd:///mnt/dvd/archive/A/Arrow/S01D02.%20E06%e2%80%9310.iso#7
-#EXTINF:0,,1.11. Trust but Verify
+#EXTINF:2451,,1.11. Trust but Verify
 dvd:///mnt/dvd/archive/A/Arrow/S01D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,1.12. Vertigo
+#EXTINF:2448,,1.12. Vertigo
 dvd:///mnt/dvd/archive/A/Arrow/S01D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,1.13. Betrayal
+#EXTINF:2436,,1.13. Betrayal
 dvd:///mnt/dvd/archive/A/Arrow/S01D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,1.14. The Odyssey
+#EXTINF:2446,,1.14. The Odyssey
 dvd:///mnt/dvd/archive/A/Arrow/S01D03.%20E11%e2%80%9315.iso#6
-#EXTINF:0,,1.15. Dodger
+#EXTINF:2439,,1.15. Dodger
 dvd:///mnt/dvd/archive/A/Arrow/S01D03.%20E11%e2%80%9315.iso#7
-#EXTINF:0,,1.16. Dead to Rights
+#EXTINF:2404,,1.16. Dead to Rights
 dvd:///mnt/dvd/archive/A/Arrow/S01D04.%20E16%e2%80%9320.iso#3
-#EXTINF:0,,1.17. The Huntress Returns
+#EXTINF:2436,,1.17. The Huntress Returns
 dvd:///mnt/dvd/archive/A/Arrow/S01D04.%20E16%e2%80%9320.iso#4
-#EXTINF:0,,1.18. Salvation
+#EXTINF:2440,,1.18. Salvation
 dvd:///mnt/dvd/archive/A/Arrow/S01D04.%20E16%e2%80%9320.iso#5
-#EXTINF:0,,1.19. Unfinished Business
+#EXTINF:2439,,1.19. Unfinished Business
 dvd:///mnt/dvd/archive/A/Arrow/S01D04.%20E16%e2%80%9320.iso#6
-#EXTINF:0,,1.20. Home Invasion
+#EXTINF:2449,,1.20. Home Invasion
 dvd:///mnt/dvd/archive/A/Arrow/S01D04.%20E16%e2%80%9320.iso#7
-#EXTINF:0,,1.21. The Undertaking
+#EXTINF:2448,,1.21. The Undertaking
 dvd:///mnt/dvd/archive/A/Arrow/S01D05.%20E21%e2%80%9323.iso#3
-#EXTINF:0,,1.22. Darkness on the Edge of Town
+#EXTINF:2440,,1.22. Darkness on the Edge of Town
 dvd:///mnt/dvd/archive/A/Arrow/S01D05.%20E21%e2%80%9323.iso#4
-#EXTINF:0,,1.23. Sacrifice
+#EXTINF:2448,,1.23. Sacrifice
 dvd:///mnt/dvd/archive/A/Arrow/S01D05.%20E21%e2%80%9323.iso#5
 
-#EXTINF:0,,2.1. City of Heroes
+#EXTINF:2434,,2.1. City of Heroes
 dvd:///mnt/dvd/archive/A/Arrow/S02D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,2.2. Identity
+#EXTINF:2442,,2.2. Identity
 dvd:///mnt/dvd/archive/A/Arrow/S02D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,2.3. Broken Dolls
+#EXTINF:2406,,2.3. Broken Dolls
 dvd:///mnt/dvd/archive/A/Arrow/S02D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,2.4. Crucible
+#EXTINF:2443,,2.4. Crucible
 dvd:///mnt/dvd/archive/A/Arrow/S02D01.%20E01%e2%80%9304.iso#9
-#EXTINF:0,,2.5. League of Assassins
+#EXTINF:2441,,2.5. League of Assassins
 dvd:///mnt/dvd/archive/A/Arrow/S02D02.%20E05%e2%80%9309.iso#3
-#EXTINF:0,,2.6. Keep Your Enemies Closer
+#EXTINF:2439,,2.6. Keep Your Enemies Closer
 dvd:///mnt/dvd/archive/A/Arrow/S02D02.%20E05%e2%80%9309.iso#4
-#EXTINF:0,,2.7. State v. Queen
+#EXTINF:2439,,2.7. State v. Queen
 dvd:///mnt/dvd/archive/A/Arrow/S02D02.%20E05%e2%80%9309.iso#5
-#EXTINF:0,,2.8. The Scientist
+#EXTINF:2442,,2.8. The Scientist
 dvd:///mnt/dvd/archive/A/Arrow/S02D02.%20E05%e2%80%9309.iso#6
-#EXTINF:0,,2.9. Three Ghosts
+#EXTINF:2441,,2.9. Three Ghosts
 dvd:///mnt/dvd/archive/A/Arrow/S02D02.%20E05%e2%80%9309.iso#7
-#EXTINF:0,,2.10. Blast Radius
+#EXTINF:2441,,2.10. Blast Radius
 dvd:///mnt/dvd/archive/A/Arrow/S02D03.%20E10%e2%80%9314.iso#3
-#EXTINF:0,,2.11. Blind Spot
+#EXTINF:2443,,2.11. Blind Spot
 dvd:///mnt/dvd/archive/A/Arrow/S02D03.%20E10%e2%80%9314.iso#4
-#EXTINF:0,,2.12. Tremors
+#EXTINF:2354,,2.12. Tremors
 dvd:///mnt/dvd/archive/A/Arrow/S02D03.%20E10%e2%80%9314.iso#5
-#EXTINF:0,,2.13. Heir to the Demon
+#EXTINF:2442,,2.13. Heir to the Demon
 dvd:///mnt/dvd/archive/A/Arrow/S02D03.%20E10%e2%80%9314.iso#6
-#EXTINF:0,,2.14. Time of Death
+#EXTINF:2439,,2.14. Time of Death
 dvd:///mnt/dvd/archive/A/Arrow/S02D03.%20E10%e2%80%9314.iso#7
-#EXTINF:0,,2.15. The Promise
+#EXTINF:2437,,2.15. The Promise
 dvd:///mnt/dvd/archive/A/Arrow/S02D04.%20E15%e2%80%9319.iso#3
-#EXTINF:0,,2.16. Suicide Squad
+#EXTINF:2442,,2.16. Suicide Squad
 dvd:///mnt/dvd/archive/A/Arrow/S02D04.%20E15%e2%80%9319.iso#4
-#EXTINF:0,,2.17. Birds of Prey
+#EXTINF:2441,,2.17. Birds of Prey
 dvd:///mnt/dvd/archive/A/Arrow/S02D04.%20E15%e2%80%9319.iso#5
-#EXTINF:0,,2.18. Deathstroke
+#EXTINF:2441,,2.18. Deathstroke
 dvd:///mnt/dvd/archive/A/Arrow/S02D04.%20E15%e2%80%9319.iso#6
-#EXTINF:0,,2.19. The Man Under the Hood
+#EXTINF:2441,,2.19. The Man Under the Hood
 dvd:///mnt/dvd/archive/A/Arrow/S02D04.%20E15%e2%80%9319.iso#7
-#EXTINF:0,,2.20. Seeing Red
+#EXTINF:2440,,2.20. Seeing Red
 dvd:///mnt/dvd/archive/A/Arrow/S02D05.%20E20%e2%80%9323.iso#3
-#EXTINF:0,,2.21. City of Blood
+#EXTINF:2435,,2.21. City of Blood
 dvd:///mnt/dvd/archive/A/Arrow/S02D05.%20E20%e2%80%9323.iso#4
-#EXTINF:0,,2.22. Streets of Fire
+#EXTINF:2441,,2.22. Streets of Fire
 dvd:///mnt/dvd/archive/A/Arrow/S02D05.%20E20%e2%80%9323.iso#5
-#EXTINF:0,,2.23. Unthinkable
+#EXTINF:2444,,2.23. Unthinkable
 dvd:///mnt/dvd/archive/A/Arrow/S02D05.%20E20%e2%80%9323.iso#6
 
-#EXTINF:0,,3.1. The Calm
+#EXTINF:2443,,3.1. The Calm
 dvd:///mnt/dvd/archive/A/Arrow/S03D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,3.2. Sara
+#EXTINF:2443,,3.2. Sara
 dvd:///mnt/dvd/archive/A/Arrow/S03D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,3.3. Corto Maltese
+#EXTINF:2440,,3.3. Corto Maltese
 dvd:///mnt/dvd/archive/A/Arrow/S03D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,3.4. The Magician
+#EXTINF:2436,,3.4. The Magician
 dvd:///mnt/dvd/archive/A/Arrow/S03D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,3.5. The Secret Origin of Felicity Smoak
+#EXTINF:2441,,3.5. The Secret Origin of Felicity Smoak
 dvd:///mnt/dvd/archive/A/Arrow/S03D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,3.6. Guilty
+#EXTINF:2440,,3.6. Guilty
 dvd:///mnt/dvd/archive/A/Arrow/S03D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,3.7. Draw Back Your Bow
+#EXTINF:2440,,3.7. Draw Back Your Bow
 dvd:///mnt/dvd/archive/A/Arrow/S03D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,3.8. The Brave and the Bold
+#EXTINF:2411,,3.8. The Brave and the Bold
 dvd:///mnt/dvd/archive/A/Arrow/S03D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,3.9. The Climb
+#EXTINF:2440,,3.9. The Climb
 dvd:///mnt/dvd/archive/A/Arrow/S03D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,3.10. Left Behind
+#EXTINF:2441,,3.10. Left Behind
 dvd:///mnt/dvd/archive/A/Arrow/S03D02.%20E06%e2%80%9310.iso#7
-#EXTINF:0,,3.11. Midnight City
+#EXTINF:2442,,3.11. Midnight City
 dvd:///mnt/dvd/archive/A/Arrow/S03D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,3.12. Uprising
+#EXTINF:2442,,3.12. Uprising
 dvd:///mnt/dvd/archive/A/Arrow/S03D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,3.13. Canaries
+#EXTINF:2440,,3.13. Canaries
 dvd:///mnt/dvd/archive/A/Arrow/S03D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,3.14. The Return
+#EXTINF:2473,,3.14. The Return
 dvd:///mnt/dvd/archive/A/Arrow/S03D03.%20E11%e2%80%9315.iso#6
-#EXTINF:0,,3.15. Nanda Parbat
+#EXTINF:2436,,3.15. Nanda Parbat
 dvd:///mnt/dvd/archive/A/Arrow/S03D03.%20E11%e2%80%9315.iso#7
-#EXTINF:0,,3.16. The Offer
+#EXTINF:2440,,3.16. The Offer
 dvd:///mnt/dvd/archive/A/Arrow/S03D04.%20E16%e2%80%9320.iso#3
-#EXTINF:0,,3.17. Suicidal Tendencies
+#EXTINF:2439,,3.17. Suicidal Tendencies
 dvd:///mnt/dvd/archive/A/Arrow/S03D04.%20E16%e2%80%9320.iso#4
-#EXTINF:0,,3.18. Public Enemy
+#EXTINF:2445,,3.18. Public Enemy
 dvd:///mnt/dvd/archive/A/Arrow/S03D04.%20E16%e2%80%9320.iso#5
-#EXTINF:0,,3.19. Broken Arrow
+#EXTINF:2446,,3.19. Broken Arrow
 dvd:///mnt/dvd/archive/A/Arrow/S03D04.%20E16%e2%80%9320.iso#6
-#EXTINF:0,,3.20. The Fallen
+#EXTINF:2447,,3.20. The Fallen
 dvd:///mnt/dvd/archive/A/Arrow/S03D04.%20E16%e2%80%9320.iso#7
-#EXTINF:0,,3.21. Al Sah-him
+#EXTINF:2399,,3.21. Al Sah-him
 dvd:///mnt/dvd/archive/A/Arrow/S03D05.%20E21%e2%80%9323.iso#3
-#EXTINF:0,,3.22. This Is Your Sword
+#EXTINF:2446,,3.22. This Is Your Sword
 dvd:///mnt/dvd/archive/A/Arrow/S03D05.%20E21%e2%80%9323.iso#4
-#EXTINF:0,,3.23. My Name Is Oliver Queen
+#EXTINF:2555,,3.23. My Name Is Oliver Queen
 dvd:///mnt/dvd/archive/A/Arrow/S03D05.%20E21%e2%80%9323.iso#5
 
-#EXTINF:0,,4.1. Green Arrow
+#EXTINF:2448,,4.1. Green Arrow
 dvd:///mnt/dvd/archive/A/Arrow/S04D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,4.2. The Candidate
+#EXTINF:2447,,4.2. The Candidate
 dvd:///mnt/dvd/archive/A/Arrow/S04D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,4.3. Restoration
+#EXTINF:2445,,4.3. Restoration
 dvd:///mnt/dvd/archive/A/Arrow/S04D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,4.4. Beyond Redemption
+#EXTINF:2438,,4.4. Beyond Redemption
 dvd:///mnt/dvd/archive/A/Arrow/S04D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,4.5. Haunted
+#EXTINF:2448,,4.5. Haunted
 dvd:///mnt/dvd/archive/A/Arrow/S04D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,4.6. Lost Souls
+#EXTINF:2447,,4.6. Lost Souls
 dvd:///mnt/dvd/archive/A/Arrow/S04D02.%20E06%e2%80%9309.iso#3
-#EXTINF:0,,4.7. Brotherhood
+#EXTINF:2430,,4.7. Brotherhood
 dvd:///mnt/dvd/archive/A/Arrow/S04D02.%20E06%e2%80%9309.iso#4
-#EXTINF:0,,4.8. Legends of Yesterday
+#EXTINF:2561,,4.8. Legends of Yesterday
 dvd:///mnt/dvd/archive/A/Arrow/S04D02.%20E06%e2%80%9309.iso#6
-#EXTINF:0,,4.9. Dark Waters
+#EXTINF:2442,,4.9. Dark Waters
 dvd:///mnt/dvd/archive/A/Arrow/S04D02.%20E06%e2%80%9309.iso#7
-#EXTINF:0,,4.10. Blood Debts
+#EXTINF:2430,,4.10. Blood Debts
 dvd:///mnt/dvd/archive/A/Arrow/S04D03.%20E10%e2%80%9314.iso#3
-#EXTINF:0,,4.11. A.W.O.L.
+#EXTINF:2446,,4.11. A.W.O.L.
 dvd:///mnt/dvd/archive/A/Arrow/S04D03.%20E10%e2%80%9314.iso#4
-#EXTINF:0,,4.12. Unchained
+#EXTINF:2445,,4.12. Unchained
 dvd:///mnt/dvd/archive/A/Arrow/S04D03.%20E10%e2%80%9314.iso#5
-#EXTINF:0,,4.13. Sins of the Father
+#EXTINF:2440,,4.13. Sins of the Father
 dvd:///mnt/dvd/archive/A/Arrow/S04D03.%20E10%e2%80%9314.iso#6
-#EXTINF:0,,4.14. Code of Silence
+#EXTINF:2447,,4.14. Code of Silence
 dvd:///mnt/dvd/archive/A/Arrow/S04D03.%20E10%e2%80%9314.iso#7
-#EXTINF:0,,4.15. Taken
+#EXTINF:2445,,4.15. Taken
 dvd:///mnt/dvd/archive/A/Arrow/S04D04.%20E15%e2%80%9319.iso#3
-#EXTINF:0,,4.16. Broken Hearts
+#EXTINF:2440,,4.16. Broken Hearts
 dvd:///mnt/dvd/archive/A/Arrow/S04D04.%20E15%e2%80%9319.iso#4
-#EXTINF:0,,4.17. Beacon of Hope
+#EXTINF:2435,,4.17. Beacon of Hope
 dvd:///mnt/dvd/archive/A/Arrow/S04D04.%20E15%e2%80%9319.iso#5
-#EXTINF:0,,4.18. Eleven Fifty-Nine
+#EXTINF:2442,,4.18. Eleven Fifty-Nine
 dvd:///mnt/dvd/archive/A/Arrow/S04D04.%20E15%e2%80%9319.iso#6
-#EXTINF:0,,4.19. Canary Cry
+#EXTINF:2387,,4.19. Canary Cry
 dvd:///mnt/dvd/archive/A/Arrow/S04D04.%20E15%e2%80%9319.iso#7
-#EXTINF:0,,4.20. Genesis
+#EXTINF:2408,,4.20. Genesis
 dvd:///mnt/dvd/archive/A/Arrow/S04D05.%20E20%e2%80%9323.iso#3
-#EXTINF:0,,4.21. Monument Point
+#EXTINF:2419,,4.21. Monument Point
 dvd:///mnt/dvd/archive/A/Arrow/S04D05.%20E20%e2%80%9323.iso#4
-#EXTINF:0,,4.22. Lost in the Flood
+#EXTINF:2419,,4.22. Lost in the Flood
 dvd:///mnt/dvd/archive/A/Arrow/S04D05.%20E20%e2%80%9323.iso#5
-#EXTINF:0,,4.23. Schism
+#EXTINF:2444,,4.23. Schism
 dvd:///mnt/dvd/archive/A/Arrow/S04D05.%20E20%e2%80%9323.iso#6
 
-#EXTINF:0,,5.1. Legacy
+#EXTINF:2446,,5.1. Legacy
 dvd:///mnt/dvd/archive/A/Arrow/S05D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,5.2. The Recruits
+#EXTINF:2446,,5.2. The Recruits
 dvd:///mnt/dvd/archive/A/Arrow/S05D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,5.3. A Matter of Trust
+#EXTINF:2447,,5.3. A Matter of Trust
 dvd:///mnt/dvd/archive/A/Arrow/S05D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,5.4. Penance
+#EXTINF:2434,,5.4. Penance
 dvd:///mnt/dvd/archive/A/Arrow/S05D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,5.5. Human Target
+#EXTINF:2445,,5.5. Human Target
 dvd:///mnt/dvd/archive/A/Arrow/S05D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,5.6. So It Begins
+#EXTINF:2389,,5.6. So It Begins
 dvd:///mnt/dvd/archive/A/Arrow/S05D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,5.7. Vigilante
+#EXTINF:2445,,5.7. Vigilante
 dvd:///mnt/dvd/archive/A/Arrow/S05D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,5.8. Invasion! (part 2)
+#EXTINF:2446,,5.8. Invasion! (part 2)
 dvd:///mnt/dvd/archive/A/Arrow/S05D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,5.9. What We Leave Behind
+#EXTINF:2446,,5.9. What We Leave Behind
 dvd:///mnt/dvd/archive/A/Arrow/S05D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,5.10. Who Are You?
+#EXTINF:2444,,5.10. Who Are You?
 dvd:///mnt/dvd/archive/A/Arrow/S05D02.%20E06%e2%80%9310.iso#7
-#EXTINF:0,,5.11. Second Chances
+#EXTINF:2439,,5.11. Second Chances
 dvd:///mnt/dvd/archive/A/Arrow/S05D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,5.12. Bratva
+#EXTINF:2447,,5.12. Bratva
 dvd:///mnt/dvd/archive/A/Arrow/S05D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,5.13. Spectre of the Gun
+#EXTINF:2385,,5.13. Spectre of the Gun
 dvd:///mnt/dvd/archive/A/Arrow/S05D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,5.14. The Sin-Eater
+#EXTINF:2449,,5.14. The Sin-Eater
 dvd:///mnt/dvd/archive/A/Arrow/S05D03.%20E11%e2%80%9315.iso#6
-#EXTINF:0,,5.15. Fighting Fire with Fire
+#EXTINF:2444,,5.15. Fighting Fire with Fire
 dvd:///mnt/dvd/archive/A/Arrow/S05D03.%20E11%e2%80%9315.iso#7
-#EXTINF:0,,5.16. Checkmate
+#EXTINF:2439,,5.16. Checkmate
 dvd:///mnt/dvd/archive/A/Arrow/S05D04.%20E16%e2%80%9320.iso#3
-#EXTINF:0,,5.17. Kapiushon
+#EXTINF:2444,,5.17. Kapiushon
 dvd:///mnt/dvd/archive/A/Arrow/S05D04.%20E16%e2%80%9320.iso#4
-#EXTINF:0,,5.18. Disbanded
+#EXTINF:2446,,5.18. Disbanded
 dvd:///mnt/dvd/archive/A/Arrow/S05D04.%20E16%e2%80%9320.iso#5
-#EXTINF:0,,5.19. Dangerous Liaisons
+#EXTINF:2442,,5.19. Dangerous Liaisons
 dvd:///mnt/dvd/archive/A/Arrow/S05D04.%20E16%e2%80%9320.iso#6
-#EXTINF:0,,5.20. Underneath
+#EXTINF:2444,,5.20. Underneath
 dvd:///mnt/dvd/archive/A/Arrow/S05D04.%20E16%e2%80%9320.iso#7
-#EXTINF:0,,5.21. Honor Thy Fathers
+#EXTINF:2444,,5.21. Honor Thy Fathers
 dvd:///mnt/dvd/archive/A/Arrow/S05D05.%20E21%e2%80%9323.iso#3
-#EXTINF:0,,5.22. Missing
+#EXTINF:2444,,5.22. Missing
 dvd:///mnt/dvd/archive/A/Arrow/S05D05.%20E21%e2%80%9323.iso#4
-#EXTINF:0,,5.23. Lian Yu
+#EXTINF:2445,,5.23. Lian Yu
 dvd:///mnt/dvd/archive/A/Arrow/S05D05.%20E21%e2%80%9323.iso#5
 
-#EXTINF:0,,6.1. Fallout
+#EXTINF:2445,,6.1. Fallout
 dvd:///mnt/dvd/archive/A/Arrow/S06D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,6.2. Tribute
+#EXTINF:2421,,6.2. Tribute
 dvd:///mnt/dvd/archive/A/Arrow/S06D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,6.3. Next of Kin
+#EXTINF:2419,,6.3. Next of Kin
 dvd:///mnt/dvd/archive/A/Arrow/S06D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,6.4. Reversal
+#EXTINF:2442,,6.4. Reversal
 dvd:///mnt/dvd/archive/A/Arrow/S06D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,6.5. Deathstroke Returns
+#EXTINF:2449,,6.5. Deathstroke Returns
 dvd:///mnt/dvd/archive/A/Arrow/S06D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,6.6. Promises Kept
+#EXTINF:2447,,6.6. Promises Kept
 dvd:///mnt/dvd/archive/A/Arrow/S06D02.%20E06%e2%80%9309.iso#3
-#EXTINF:0,,6.7. Thanksgiving
+#EXTINF:2429,,6.7. Thanksgiving
 dvd:///mnt/dvd/archive/A/Arrow/S06D02.%20E06%e2%80%9309.iso#4
-#EXTINF:0,,6.8. Crisis on Earth-X (part 2)
+#EXTINF:2448,,6.8. Crisis on Earth-X (part 2)
 dvd:///mnt/dvd/archive/A/Arrow/S06D02.%20E06%e2%80%9309.iso#5
-#EXTINF:0,,6.9. Irreconcilable Differences
+#EXTINF:2447,,6.9. Irreconcilable Differences
 dvd:///mnt/dvd/archive/A/Arrow/S06D02.%20E06%e2%80%9309.iso#6
-#EXTINF:0,,6.10. Divided
+#EXTINF:2442,,6.10. Divided
 dvd:///mnt/dvd/archive/A/Arrow/S06D03.%20E10%e2%80%9314.iso#3
-#EXTINF:0,,6.11. We Fall
+#EXTINF:2405,,6.11. We Fall
 dvd:///mnt/dvd/archive/A/Arrow/S06D03.%20E10%e2%80%9314.iso#4
-#EXTINF:0,,6.12. All for Nothing
+#EXTINF:2444,,6.12. All for Nothing
 dvd:///mnt/dvd/archive/A/Arrow/S06D03.%20E10%e2%80%9314.iso#5
-#EXTINF:0,,6.13. The Devil's Greatest Trick
+#EXTINF:2445,,6.13. The Devil's Greatest Trick
 dvd:///mnt/dvd/archive/A/Arrow/S06D03.%20E10%e2%80%9314.iso#6
-#EXTINF:0,,6.14. Collision Course
+#EXTINF:2448,,6.14. Collision Course
 dvd:///mnt/dvd/archive/A/Arrow/S06D03.%20E10%e2%80%9314.iso#7
-#EXTINF:0,,6.15. Doppelgänger
+#EXTINF:2448,,6.15. Doppelgänger
 dvd:///mnt/dvd/archive/A/Arrow/S06D04.%20E15%e2%80%9319.iso#3
-#EXTINF:0,,6.16. The Thanatos Guild
+#EXTINF:2445,,6.16. The Thanatos Guild
 dvd:///mnt/dvd/archive/A/Arrow/S06D04.%20E15%e2%80%9319.iso#4
-#EXTINF:0,,6.17. Brothers in Arms
+#EXTINF:2446,,6.17. Brothers in Arms
 dvd:///mnt/dvd/archive/A/Arrow/S06D04.%20E15%e2%80%9319.iso#5
-#EXTINF:0,,6.18. Fundamentals
+#EXTINF:2429,,6.18. Fundamentals
 dvd:///mnt/dvd/archive/A/Arrow/S06D04.%20E15%e2%80%9319.iso#6
-#EXTINF:0,,6.19. The Dragon
+#EXTINF:2444,,6.19. The Dragon
 dvd:///mnt/dvd/archive/A/Arrow/S06D04.%20E15%e2%80%9319.iso#7
-#EXTINF:0,,6.20. Shifting Allegiances
+#EXTINF:2445,,6.20. Shifting Allegiances
 dvd:///mnt/dvd/archive/A/Arrow/S06D05.%20E20%e2%80%9323.iso#3
-#EXTINF:0,,6.21. Docket No. 11-19-41-73
+#EXTINF:2448,,6.21. Docket No. 11-19-41-73
 dvd:///mnt/dvd/archive/A/Arrow/S06D05.%20E20%e2%80%9323.iso#4
-#EXTINF:0,,6.22. The Ties that Bind
+#EXTINF:2424,,6.22. The Ties that Bind
 dvd:///mnt/dvd/archive/A/Arrow/S06D05.%20E20%e2%80%9323.iso#5
-#EXTINF:0,,6.23. Life Sentence
+#EXTINF:2443,,6.23. Life Sentence
 dvd:///mnt/dvd/archive/A/Arrow/S06D05.%20E20%e2%80%9323.iso#6
 
-#EXTINF:0,,7.1. Inmate 4587
+#EXTINF:2438,,7.1. Inmate 4587
 dvd:///mnt/dvd/archive/A/Arrow/S07D01.%20E01%e2%80%9305.iso#2
-#EXTINF:0,,7.2. The Longbow Hunters
+#EXTINF:2447,,7.2. The Longbow Hunters
 dvd:///mnt/dvd/archive/A/Arrow/S07D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,7.3. Crossing Lines
+#EXTINF:2368,,7.3. Crossing Lines
 dvd:///mnt/dvd/archive/A/Arrow/S07D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,7.4. Level Two
+#EXTINF:2446,,7.4. Level Two
 dvd:///mnt/dvd/archive/A/Arrow/S07D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,7.5. The Demon
+#EXTINF:2449,,7.5. The Demon
 dvd:///mnt/dvd/archive/A/Arrow/S07D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,7.6. Due Process
+#EXTINF:2447,,7.6. Due Process
 dvd:///mnt/dvd/archive/A/Arrow/S07D02.%20E06%e2%80%9309.iso#2
-#EXTINF:0,,7.7. The Slabside Redemption
+#EXTINF:2413,,7.7. The Slabside Redemption
 dvd:///mnt/dvd/archive/A/Arrow/S07D02.%20E06%e2%80%9309.iso#3
-#EXTINF:0,,7.8. Unmasked
+#EXTINF:2446,,7.8. Unmasked
 dvd:///mnt/dvd/archive/A/Arrow/S07D02.%20E06%e2%80%9309.iso#4
-#EXTINF:0,,7.9. Elseworlds (part 2)
+#EXTINF:2448,,7.9. Elseworlds (part 2)
 dvd:///mnt/dvd/archive/A/Arrow/S07D02.%20E06%e2%80%9309.iso#5
-#EXTINF:0,,7.10. My Name Is Emiko Queen
+#EXTINF:2430,,7.10. My Name Is Emiko Queen
 dvd:///mnt/dvd/archive/A/Arrow/S07D03.%20E10%e2%80%9314.iso#2
-#EXTINF:0,,7.11. Past Sins
+#EXTINF:2447,,7.11. Past Sins
 dvd:///mnt/dvd/archive/A/Arrow/S07D03.%20E10%e2%80%9314.iso#3
-#EXTINF:0,,7.12. Emerald Archer
+#EXTINF:2382,,7.12. Emerald Archer
 dvd:///mnt/dvd/archive/A/Arrow/S07D03.%20E10%e2%80%9314.iso#4
-#EXTINF:0,,7.13. Star City Slayer
+#EXTINF:2444,,7.13. Star City Slayer
 dvd:///mnt/dvd/archive/A/Arrow/S07D03.%20E10%e2%80%9314.iso#5
-#EXTINF:0,,7.14. Brothers & Sisters
+#EXTINF:2447,,7.14. Brothers & Sisters
 dvd:///mnt/dvd/archive/A/Arrow/S07D03.%20E10%e2%80%9314.iso#6
-#EXTINF:0,,7.15. Training Day
+#EXTINF:2446,,7.15. Training Day
 dvd:///mnt/dvd/archive/A/Arrow/S07D04.%20E15%e2%80%9319.iso#2
-#EXTINF:0,,7.16. Star City 2040
+#EXTINF:2447,,7.16. Star City 2040
 dvd:///mnt/dvd/archive/A/Arrow/S07D04.%20E15%e2%80%9319.iso#3
-#EXTINF:0,,7.17. Inheritance
+#EXTINF:2448,,7.17. Inheritance
 dvd:///mnt/dvd/archive/A/Arrow/S07D04.%20E15%e2%80%9319.iso#4
-#EXTINF:0,,7.18. Lost Canary
+#EXTINF:2445,,7.18. Lost Canary
 dvd:///mnt/dvd/archive/A/Arrow/S07D04.%20E15%e2%80%9319.iso#5
-#EXTINF:0,,7.19. Spartan
+#EXTINF:2446,,7.19. Spartan
 dvd:///mnt/dvd/archive/A/Arrow/S07D04.%20E15%e2%80%9319.iso#6
-#EXTINF:0,,7.20. Confessions
+#EXTINF:2359,,7.20. Confessions
 dvd:///mnt/dvd/archive/A/Arrow/S07D05.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,7.21. Living Proof
+#EXTINF:2446,,7.21. Living Proof
 dvd:///mnt/dvd/archive/A/Arrow/S07D05.%20E20%e2%80%9322.iso#3
-#EXTINF:0,,7.22. You Have Saved This City
+#EXTINF:2446,,7.22. You Have Saved This City
 dvd:///mnt/dvd/archive/A/Arrow/S07D05.%20E20%e2%80%9322.iso#4
 
-#EXTINF:0,,8.1. Starling City
+#EXTINF:2445,,8.1. Starling City
 dvd:///mnt/dvd/archive/A/Arrow/S08D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,8.2. Welcome to Hong Kong
+#EXTINF:2448,,8.2. Welcome to Hong Kong
 dvd:///mnt/dvd/archive/A/Arrow/S08D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,8.3. Leap of Faith
+#EXTINF:2442,,8.3. Leap of Faith
 dvd:///mnt/dvd/archive/A/Arrow/S08D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,8.4. Present Tense
+#EXTINF:2446,,8.4. Present Tense
 dvd:///mnt/dvd/archive/A/Arrow/S08D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,8.5. Prochnost
+#EXTINF:2445,,8.5. Prochnost
 dvd:///mnt/dvd/archive/A/Arrow/S08D02.%20E05%e2%80%9307.iso#2
-#EXTINF:0,,8.6. Reset
+#EXTINF:2447,,8.6. Reset
 dvd:///mnt/dvd/archive/A/Arrow/S08D02.%20E05%e2%80%9307.iso#3
-#EXTINF:0,,8.7. Purgatory
+#EXTINF:2447,,8.7. Purgatory
 dvd:///mnt/dvd/archive/A/Arrow/S08D02.%20E05%e2%80%9307.iso#4
-#EXTINF:0,,8.8. Crisis on Infinite Earths (part 4)
+#EXTINF:2448,,8.8. Crisis on Infinite Earths (part 4)
 dvd:///mnt/dvd/archive/A/Arrow/S08D03.%20E08%e2%80%9310.iso#2
-#EXTINF:0,,8.9. Green Arrow & the Canaries
+#EXTINF:2446,,8.9. Green Arrow & the Canaries
 dvd:///mnt/dvd/archive/A/Arrow/S08D03.%20E08%e2%80%9310.iso#3
-#EXTINF:0,,8.10. Fadeout
+#EXTINF:2504,,8.10. Fadeout
 dvd:///mnt/dvd/archive/A/Arrow/S08D03.%20E08%e2%80%9310.iso#4
index d1cd7f9..3feb1b4 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,Arrow 1.1. Pilot
+#EXTINF:2451,,Arrow 1.1. Pilot
 dvd:///mnt/dvd/archive/A/Arrow/S01D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,Arrow 1.2. Honor Thy Father
+#EXTINF:2440,,Arrow 1.2. Honor Thy Father
 dvd:///mnt/dvd/archive/A/Arrow/S01D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,Arrow 1.3. Lone Gunmen
+#EXTINF:2445,,Arrow 1.3. Lone Gunmen
 dvd:///mnt/dvd/archive/A/Arrow/S01D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,Arrow 1.4. An Innocent Man
+#EXTINF:2447,,Arrow 1.4. An Innocent Man
 dvd:///mnt/dvd/archive/A/Arrow/S01D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,Arrow 1.5. Damaged
+#EXTINF:2428,,Arrow 1.5. Damaged
 dvd:///mnt/dvd/archive/A/Arrow/S01D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,Arrow 1.6. Legacies
+#EXTINF:2421,,Arrow 1.6. Legacies
 dvd:///mnt/dvd/archive/A/Arrow/S01D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,Arrow 1.7. Muse of Fire
+#EXTINF:2340,,Arrow 1.7. Muse of Fire
 dvd:///mnt/dvd/archive/A/Arrow/S01D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,Arrow 1.8. Vendetta
+#EXTINF:2448,,Arrow 1.8. Vendetta
 dvd:///mnt/dvd/archive/A/Arrow/S01D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,Arrow 1.9. Year's End
+#EXTINF:2448,,Arrow 1.9. Year's End
 dvd:///mnt/dvd/archive/A/Arrow/S01D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,Arrow 1.10. Burned
+#EXTINF:2445,,Arrow 1.10. Burned
 dvd:///mnt/dvd/archive/A/Arrow/S01D02.%20E06%e2%80%9310.iso#7
-#EXTINF:0,,Arrow 1.11. Trust but Verify
+#EXTINF:2451,,Arrow 1.11. Trust but Verify
 dvd:///mnt/dvd/archive/A/Arrow/S01D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,Arrow 1.12. Vertigo
+#EXTINF:2448,,Arrow 1.12. Vertigo
 dvd:///mnt/dvd/archive/A/Arrow/S01D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,Arrow 1.13. Betrayal
+#EXTINF:2436,,Arrow 1.13. Betrayal
 dvd:///mnt/dvd/archive/A/Arrow/S01D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,Arrow 1.14. The Odyssey
+#EXTINF:2446,,Arrow 1.14. The Odyssey
 dvd:///mnt/dvd/archive/A/Arrow/S01D03.%20E11%e2%80%9315.iso#6
-#EXTINF:0,,Arrow 1.15. Dodger
+#EXTINF:2439,,Arrow 1.15. Dodger
 dvd:///mnt/dvd/archive/A/Arrow/S01D03.%20E11%e2%80%9315.iso#7
-#EXTINF:0,,Arrow 1.16. Dead to Rights
+#EXTINF:2404,,Arrow 1.16. Dead to Rights
 dvd:///mnt/dvd/archive/A/Arrow/S01D04.%20E16%e2%80%9320.iso#3
-#EXTINF:0,,Arrow 1.17. The Huntress Returns
+#EXTINF:2436,,Arrow 1.17. The Huntress Returns
 dvd:///mnt/dvd/archive/A/Arrow/S01D04.%20E16%e2%80%9320.iso#4
-#EXTINF:0,,Arrow 1.18. Salvation
+#EXTINF:2440,,Arrow 1.18. Salvation
 dvd:///mnt/dvd/archive/A/Arrow/S01D04.%20E16%e2%80%9320.iso#5
-#EXTINF:0,,Arrow 1.19. Unfinished Business
+#EXTINF:2439,,Arrow 1.19. Unfinished Business
 dvd:///mnt/dvd/archive/A/Arrow/S01D04.%20E16%e2%80%9320.iso#6
-#EXTINF:0,,Arrow 1.20. Home Invasion
+#EXTINF:2449,,Arrow 1.20. Home Invasion
 dvd:///mnt/dvd/archive/A/Arrow/S01D04.%20E16%e2%80%9320.iso#7
-#EXTINF:0,,Arrow 1.21. The Undertaking
+#EXTINF:2448,,Arrow 1.21. The Undertaking
 dvd:///mnt/dvd/archive/A/Arrow/S01D05.%20E21%e2%80%9323.iso#3
-#EXTINF:0,,Arrow 1.22. Darkness on the Edge of Town
+#EXTINF:2440,,Arrow 1.22. Darkness on the Edge of Town
 dvd:///mnt/dvd/archive/A/Arrow/S01D05.%20E21%e2%80%9323.iso#4
-#EXTINF:0,,Arrow 1.23. Sacrifice
+#EXTINF:2448,,Arrow 1.23. Sacrifice
 dvd:///mnt/dvd/archive/A/Arrow/S01D05.%20E21%e2%80%9323.iso#5
 
-#EXTINF:0,,Arrow 2.1. City of Heroes
+#EXTINF:2434,,Arrow 2.1. City of Heroes
 dvd:///mnt/dvd/archive/A/Arrow/S02D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Arrow 2.2. Identity
+#EXTINF:2442,,Arrow 2.2. Identity
 dvd:///mnt/dvd/archive/A/Arrow/S02D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,Arrow 2.3. Broken Dolls
+#EXTINF:2406,,Arrow 2.3. Broken Dolls
 dvd:///mnt/dvd/archive/A/Arrow/S02D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,Arrow 2.4. Crucible
+#EXTINF:2443,,Arrow 2.4. Crucible
 dvd:///mnt/dvd/archive/A/Arrow/S02D01.%20E01%e2%80%9304.iso#9
-#EXTINF:0,,Arrow 2.5. League of Assassins
+#EXTINF:2441,,Arrow 2.5. League of Assassins
 dvd:///mnt/dvd/archive/A/Arrow/S02D02.%20E05%e2%80%9309.iso#3
-#EXTINF:0,,Arrow 2.6. Keep Your Enemies Closer
+#EXTINF:2439,,Arrow 2.6. Keep Your Enemies Closer
 dvd:///mnt/dvd/archive/A/Arrow/S02D02.%20E05%e2%80%9309.iso#4
-#EXTINF:0,,Arrow 2.7. State v. Queen
+#EXTINF:2439,,Arrow 2.7. State v. Queen
 dvd:///mnt/dvd/archive/A/Arrow/S02D02.%20E05%e2%80%9309.iso#5
-#EXTINF:0,,Arrow 2.8. The Scientist
+#EXTINF:2442,,Arrow 2.8. The Scientist
 dvd:///mnt/dvd/archive/A/Arrow/S02D02.%20E05%e2%80%9309.iso#6
-#EXTINF:0,,Arrow 2.9. Three Ghosts
+#EXTINF:2441,,Arrow 2.9. Three Ghosts
 dvd:///mnt/dvd/archive/A/Arrow/S02D02.%20E05%e2%80%9309.iso#7
-#EXTINF:0,,Arrow 2.10. Blast Radius
+#EXTINF:2441,,Arrow 2.10. Blast Radius
 dvd:///mnt/dvd/archive/A/Arrow/S02D03.%20E10%e2%80%9314.iso#3
-#EXTINF:0,,Arrow 2.11. Blind Spot
+#EXTINF:2443,,Arrow 2.11. Blind Spot
 dvd:///mnt/dvd/archive/A/Arrow/S02D03.%20E10%e2%80%9314.iso#4
-#EXTINF:0,,Arrow 2.12. Tremors
+#EXTINF:2354,,Arrow 2.12. Tremors
 dvd:///mnt/dvd/archive/A/Arrow/S02D03.%20E10%e2%80%9314.iso#5
-#EXTINF:0,,Arrow 2.13. Heir to the Demon
+#EXTINF:2442,,Arrow 2.13. Heir to the Demon
 dvd:///mnt/dvd/archive/A/Arrow/S02D03.%20E10%e2%80%9314.iso#6
-#EXTINF:0,,Arrow 2.14. Time of Death
+#EXTINF:2439,,Arrow 2.14. Time of Death
 dvd:///mnt/dvd/archive/A/Arrow/S02D03.%20E10%e2%80%9314.iso#7
-#EXTINF:0,,Arrow 2.15. The Promise
+#EXTINF:2437,,Arrow 2.15. The Promise
 dvd:///mnt/dvd/archive/A/Arrow/S02D04.%20E15%e2%80%9319.iso#3
-#EXTINF:0,,Arrow 2.16. Suicide Squad
+#EXTINF:2442,,Arrow 2.16. Suicide Squad
 dvd:///mnt/dvd/archive/A/Arrow/S02D04.%20E15%e2%80%9319.iso#4
-#EXTINF:0,,Arrow 2.17. Birds of Prey
+#EXTINF:2441,,Arrow 2.17. Birds of Prey
 dvd:///mnt/dvd/archive/A/Arrow/S02D04.%20E15%e2%80%9319.iso#5
-#EXTINF:0,,Arrow 2.18. Deathstroke
+#EXTINF:2441,,Arrow 2.18. Deathstroke
 dvd:///mnt/dvd/archive/A/Arrow/S02D04.%20E15%e2%80%9319.iso#6
-#EXTINF:0,,Arrow 2.19. The Man Under the Hood
+#EXTINF:2441,,Arrow 2.19. The Man Under the Hood
 dvd:///mnt/dvd/archive/A/Arrow/S02D04.%20E15%e2%80%9319.iso#7
-#EXTINF:0,,Arrow 2.20. Seeing Red
+#EXTINF:2440,,Arrow 2.20. Seeing Red
 dvd:///mnt/dvd/archive/A/Arrow/S02D05.%20E20%e2%80%9323.iso#3
-#EXTINF:0,,Arrow 2.21. City of Blood
+#EXTINF:2435,,Arrow 2.21. City of Blood
 dvd:///mnt/dvd/archive/A/Arrow/S02D05.%20E20%e2%80%9323.iso#4
-#EXTINF:0,,Arrow 2.22. Streets of Fire
+#EXTINF:2441,,Arrow 2.22. Streets of Fire
 dvd:///mnt/dvd/archive/A/Arrow/S02D05.%20E20%e2%80%9323.iso#5
-#EXTINF:0,,Arrow 2.23. Unthinkable
+#EXTINF:2444,,Arrow 2.23. Unthinkable
 dvd:///mnt/dvd/archive/A/Arrow/S02D05.%20E20%e2%80%9323.iso#6
 
-#EXTINF:0,,The Flash 1.1. Pilot
+#EXTINF:2556,,The Flash 1.1. Pilot
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,Arrow 3.1. The Calm
+#EXTINF:2443,,Arrow 3.1. The Calm
 dvd:///mnt/dvd/archive/A/Arrow/S03D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,The Flash 1.2. Fastest Man Alive
+#EXTINF:2441,,The Flash 1.2. Fastest Man Alive
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,Arrow 3.2. Sara
+#EXTINF:2443,,Arrow 3.2. Sara
 dvd:///mnt/dvd/archive/A/Arrow/S03D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,The Flash 1.3. Things You Can't Outrun
+#EXTINF:2439,,The Flash 1.3. Things You Can't Outrun
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,Arrow 3.3. Corto Maltese
+#EXTINF:2440,,Arrow 3.3. Corto Maltese
 dvd:///mnt/dvd/archive/A/Arrow/S03D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,Constantine 1. Non est asylum
+#EXTINF:2582,,Constantine 1. Non est asylum
 dvd:///mnt/dvd/archive/C/Constantine/S01D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,The Flash 1.4. Going Rogue
+#EXTINF:2440,,The Flash 1.4. Going Rogue
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,Arrow 3.4. The Magician
+#EXTINF:2436,,Arrow 3.4. The Magician
 dvd:///mnt/dvd/archive/A/Arrow/S03D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,Constantine 2. The Darkness Beneath
+#EXTINF:2584,,Constantine 2. The Darkness Beneath
 dvd:///mnt/dvd/archive/C/Constantine/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Arrow 3.5. The Secret Origin of Felicity Smoak
+#EXTINF:2441,,Arrow 3.5. The Secret Origin of Felicity Smoak
 dvd:///mnt/dvd/archive/A/Arrow/S03D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,Constantine 3. The Devil's Vinyl
+#EXTINF:2574,,Constantine 3. The Devil's Vinyl
 dvd:///mnt/dvd/archive/C/Constantine/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,The Flash 1.5. Plastique
+#EXTINF:2441,,The Flash 1.5. Plastique
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D01.%20E01%e2%80%9305.iso#8
-#EXTINF:0,,Arrow 3.6. Guilty
+#EXTINF:2440,,Arrow 3.6. Guilty
 dvd:///mnt/dvd/archive/A/Arrow/S03D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,Constantine 4. A Feast of Friends
+#EXTINF:2586,,Constantine 4. A Feast of Friends
 dvd:///mnt/dvd/archive/C/Constantine/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,The Flash 1.6. The Flash Is Born
+#EXTINF:2442,,The Flash 1.6. The Flash Is Born
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,Arrow 3.7. Draw Back Your Bow
+#EXTINF:2440,,Arrow 3.7. Draw Back Your Bow
 dvd:///mnt/dvd/archive/A/Arrow/S03D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,Constantine 5. Danse vaudou
+#EXTINF:2584,,Constantine 5. Danse vaudou
 dvd:///mnt/dvd/archive/C/Constantine/S01D02.%20E05%e2%80%9309.iso#2
-#EXTINF:0,,The Flash 1.7. Power Outage
+#EXTINF:2442,,The Flash 1.7. Power Outage
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,Constantine 6. Rage of Caliban
+#EXTINF:2547,,Constantine 6. Rage of Caliban
 dvd:///mnt/dvd/archive/C/Constantine/S01D02.%20E05%e2%80%9309.iso#3
-#EXTINF:0,,The Flash 1.8. Flash vs. Arrow
+#EXTINF:2443,,The Flash 1.8. Flash vs. Arrow
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,Arrow 3.8. The Brave and the Bold
+#EXTINF:2411,,Arrow 3.8. The Brave and the Bold
 dvd:///mnt/dvd/archive/A/Arrow/S03D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,Constantine 7. Blessed Are the Damned
+#EXTINF:2581,,Constantine 7. Blessed Are the Damned
 dvd:///mnt/dvd/archive/C/Constantine/S01D02.%20E05%e2%80%9309.iso#4
-#EXTINF:0,,The Flash 1.9. The Man in the Yellow Suit
+#EXTINF:2527,,The Flash 1.9. The Man in the Yellow Suit
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,Arrow 3.9. The Climb
+#EXTINF:2440,,Arrow 3.9. The Climb
 dvd:///mnt/dvd/archive/A/Arrow/S03D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,Constantine 8. The Saint of Last Resorts (part 1)
+#EXTINF:2585,,Constantine 8. The Saint of Last Resorts (part 1)
 dvd:///mnt/dvd/archive/C/Constantine/S01D02.%20E05%e2%80%9309.iso#5
-#EXTINF:0,,Constantine 9. The Saint of Last Resorts (part 2)
+#EXTINF:2585,,Constantine 9. The Saint of Last Resorts (part 2)
 dvd:///mnt/dvd/archive/C/Constantine/S01D02.%20E05%e2%80%9309.iso#6
-#EXTINF:0,,The Flash 1.10. Revenge of the Rogues
+#EXTINF:2442,,The Flash 1.10. Revenge of the Rogues
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D02.%20E06%e2%80%9310.iso#8
-#EXTINF:0,,Arrow 3.10. Left Behind
+#EXTINF:2441,,Arrow 3.10. Left Behind
 dvd:///mnt/dvd/archive/A/Arrow/S03D02.%20E06%e2%80%9310.iso#7
-#EXTINF:0,,Constantine 10. Quid pro quo
+#EXTINF:2584,,Constantine 10. Quid pro quo
 dvd:///mnt/dvd/archive/C/Constantine/S01D03.%20E10%e2%80%9313.iso#2
-#EXTINF:0,,The Flash 1.11. The Sound and the Fury
+#EXTINF:2443,,The Flash 1.11. The Sound and the Fury
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,Arrow 3.11. Midnight City
+#EXTINF:2442,,Arrow 3.11. Midnight City
 dvd:///mnt/dvd/archive/A/Arrow/S03D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,Constantine 11. A Whole World out There
+#EXTINF:2584,,Constantine 11. A Whole World out There
 dvd:///mnt/dvd/archive/C/Constantine/S01D03.%20E10%e2%80%9313.iso#3
-#EXTINF:0,,The Flash 1.12. Crazy for You
+#EXTINF:2433,,The Flash 1.12. Crazy for You
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,Arrow 3.12. Uprising
+#EXTINF:2442,,Arrow 3.12. Uprising
 dvd:///mnt/dvd/archive/A/Arrow/S03D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,Constantine 12. Angels and Ministers of Grace
+#EXTINF:2549,,Constantine 12. Angels and Ministers of Grace
 dvd:///mnt/dvd/archive/C/Constantine/S01D03.%20E10%e2%80%9313.iso#4
-#EXTINF:0,,The Flash 1.13. The Nuclear Man
+#EXTINF:2443,,The Flash 1.13. The Nuclear Man
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,Arrow 3.13. Canaries
+#EXTINF:2440,,Arrow 3.13. Canaries
 dvd:///mnt/dvd/archive/A/Arrow/S03D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,Constantine 13. Waiting for the Man
+#EXTINF:2587,,Constantine 13. Waiting for the Man
 dvd:///mnt/dvd/archive/C/Constantine/S01D03.%20E10%e2%80%9313.iso#5
-#EXTINF:0,,The Flash 1.14. Fallout
+#EXTINF:2440,,The Flash 1.14. Fallout
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D03.%20E11%e2%80%9315.iso#6
-#EXTINF:0,,Arrow 3.14. The Return
+#EXTINF:2473,,Arrow 3.14. The Return
 dvd:///mnt/dvd/archive/A/Arrow/S03D03.%20E11%e2%80%9315.iso#6
-#EXTINF:0,,Arrow 3.15. Nanda Parbat
+#EXTINF:2436,,Arrow 3.15. Nanda Parbat
 dvd:///mnt/dvd/archive/A/Arrow/S03D03.%20E11%e2%80%9315.iso#7
-#EXTINF:0,,The Flash 1.15. Out of Time
+#EXTINF:2422,,The Flash 1.15. Out of Time
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D03.%20E11%e2%80%9315.iso#8
-#EXTINF:0,,Arrow 3.16. The Offer
+#EXTINF:2440,,Arrow 3.16. The Offer
 dvd:///mnt/dvd/archive/A/Arrow/S03D04.%20E16%e2%80%9320.iso#3
-#EXTINF:0,,The Flash 1.16. Rogue Time
+#EXTINF:2437,,The Flash 1.16. Rogue Time
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D04.%20E16%e2%80%9320.iso#3
-#EXTINF:0,,Arrow 3.17. Suicidal Tendencies
+#EXTINF:2439,,Arrow 3.17. Suicidal Tendencies
 dvd:///mnt/dvd/archive/A/Arrow/S03D04.%20E16%e2%80%9320.iso#4
-#EXTINF:0,,The Flash 1.17. Tricksters
+#EXTINF:2448,,The Flash 1.17. Tricksters
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D04.%20E16%e2%80%9320.iso#4
-#EXTINF:0,,Arrow 3.18. Public Enemy
+#EXTINF:2445,,Arrow 3.18. Public Enemy
 dvd:///mnt/dvd/archive/A/Arrow/S03D04.%20E16%e2%80%9320.iso#5
-#EXTINF:0,,The Flash 1.18. All Star Team Up
+#EXTINF:2441,,The Flash 1.18. All Star Team Up
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D04.%20E16%e2%80%9320.iso#5
-#EXTINF:0,,Arrow 3.19. Broken Arrow
+#EXTINF:2446,,Arrow 3.19. Broken Arrow
 dvd:///mnt/dvd/archive/A/Arrow/S03D04.%20E16%e2%80%9320.iso#6
-#EXTINF:0,,The Flash 1.19. Who Is Harrison Wells?
+#EXTINF:2447,,The Flash 1.19. Who Is Harrison Wells?
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D04.%20E16%e2%80%9320.iso#6
-#EXTINF:0,,Arrow 3.20. The Fallen
+#EXTINF:2447,,Arrow 3.20. The Fallen
 dvd:///mnt/dvd/archive/A/Arrow/S03D04.%20E16%e2%80%9320.iso#7
-#EXTINF:0,,The Flash 1.20. The Trap
+#EXTINF:2448,,The Flash 1.20. The Trap
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D04.%20E16%e2%80%9320.iso#8
-#EXTINF:0,,Arrow 3.21. Al Sah-him
+#EXTINF:2399,,Arrow 3.21. Al Sah-him
 dvd:///mnt/dvd/archive/A/Arrow/S03D05.%20E21%e2%80%9323.iso#3
-#EXTINF:0,,The Flash 1.21. Grodd Lives
+#EXTINF:2446,,The Flash 1.21. Grodd Lives
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D05.%20E21%e2%80%9323.iso#3
-#EXTINF:0,,Arrow 3.22. This Is Your Sword
+#EXTINF:2446,,Arrow 3.22. This Is Your Sword
 dvd:///mnt/dvd/archive/A/Arrow/S03D05.%20E21%e2%80%9323.iso#4
-#EXTINF:0,,The Flash 1.22. Rogue Air
+#EXTINF:2445,,The Flash 1.22. Rogue Air
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D05.%20E21%e2%80%9323.iso#4
-#EXTINF:0,,Arrow 3.23. My Name Is Oliver Queen
+#EXTINF:2555,,Arrow 3.23. My Name Is Oliver Queen
 dvd:///mnt/dvd/archive/A/Arrow/S03D05.%20E21%e2%80%9323.iso#5
-#EXTINF:0,,The Flash 1.23. Fast Enough
+#EXTINF:2563,,The Flash 1.23. Fast Enough
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D05.%20E21%e2%80%9323.iso#6
 
-#EXTINF:0,,The Flash 2.1. The Man Who Saved Central City
+#EXTINF:2447,,The Flash 2.1. The Man Who Saved Central City
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Arrow 4.1. Green Arrow
+#EXTINF:2448,,Arrow 4.1. Green Arrow
 dvd:///mnt/dvd/archive/A/Arrow/S04D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,The Flash 2.2. Flash of Two Worlds
+#EXTINF:2447,,The Flash 2.2. Flash of Two Worlds
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Arrow 4.2. The Candidate
+#EXTINF:2447,,Arrow 4.2. The Candidate
 dvd:///mnt/dvd/archive/A/Arrow/S04D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,The Flash 2.3. Family of Rogues
+#EXTINF:2450,,The Flash 2.3. Family of Rogues
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,Arrow 4.3. Restoration
+#EXTINF:2445,,Arrow 4.3. Restoration
 dvd:///mnt/dvd/archive/A/Arrow/S04D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,Supergirl 1.1. Pilot
+#EXTINF:2606,,Supergirl 1.1. Pilot
 dvd:///mnt/dvd/archive/S/Supergirl/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,The Flash 2.4. The Fury of Firestorm
+#EXTINF:2450,,The Flash 2.4. The Fury of Firestorm
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Arrow 4.4. Beyond Redemption
+#EXTINF:2438,,Arrow 4.4. Beyond Redemption
 dvd:///mnt/dvd/archive/A/Arrow/S04D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,Supergirl 1.2. Stronger Together
+#EXTINF:2523,,Supergirl 1.2. Stronger Together
 dvd:///mnt/dvd/archive/S/Supergirl/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,The Flash 2.5. The Darkness and the Light
+#EXTINF:2449,,The Flash 2.5. The Darkness and the Light
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Arrow 4.5. Haunted
+#EXTINF:2448,,Arrow 4.5. Haunted
 dvd:///mnt/dvd/archive/A/Arrow/S04D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,Supergirl 1.3. Fight or Flight
+#EXTINF:2521,,Supergirl 1.3. Fight or Flight
 dvd:///mnt/dvd/archive/S/Supergirl/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,The Flash 2.6. Enter Zoom
+#EXTINF:2432,,The Flash 2.6. Enter Zoom
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Arrow 4.6. Lost Souls
+#EXTINF:2447,,Arrow 4.6. Lost Souls
 dvd:///mnt/dvd/archive/A/Arrow/S04D02.%20E06%e2%80%9309.iso#3
-#EXTINF:0,,Supergirl 1.4. Livewire
+#EXTINF:2526,,Supergirl 1.4. Livewire
 dvd:///mnt/dvd/archive/S/Supergirl/S01D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,The Flash 2.7. Gorilla Warfare
+#EXTINF:2449,,The Flash 2.7. Gorilla Warfare
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,Arrow 4.7. Brotherhood
+#EXTINF:2430,,Arrow 4.7. Brotherhood
 dvd:///mnt/dvd/archive/A/Arrow/S04D02.%20E06%e2%80%9309.iso#4
-#EXTINF:0,,Supergirl 1.5. How Does She Do It?
+#EXTINF:2518,,Supergirl 1.5. How Does She Do It?
 dvd:///mnt/dvd/archive/S/Supergirl/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Supergirl 1.6. Red Faced
+#EXTINF:2524,,Supergirl 1.6. Red Faced
 dvd:///mnt/dvd/archive/S/Supergirl/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,The Flash 2.8. Legends of Today
+#EXTINF:2505,,The Flash 2.8. Legends of Today
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,Arrow 4.8. Legends of Yesterday
+#EXTINF:2561,,Arrow 4.8. Legends of Yesterday
 dvd:///mnt/dvd/archive/A/Arrow/S04D02.%20E06%e2%80%9309.iso#6
-#EXTINF:0,,Supergirl 1.7. Human For a Day
+#EXTINF:2515,,Supergirl 1.7. Human For a Day
 dvd:///mnt/dvd/archive/S/Supergirl/S01D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,The Flash 2.9. Running to Stand Still
+#EXTINF:2446,,The Flash 2.9. Running to Stand Still
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D03.%20E09%e2%80%9311.iso#4
-#EXTINF:0,,Arrow 4.9. Dark Waters
+#EXTINF:2442,,Arrow 4.9. Dark Waters
 dvd:///mnt/dvd/archive/A/Arrow/S04D02.%20E06%e2%80%9309.iso#7
-#EXTINF:0,,Supergirl 1.8. Hostile Takeover
+#EXTINF:2521,,Supergirl 1.8. Hostile Takeover
 dvd:///mnt/dvd/archive/S/Supergirl/S01D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,Supergirl 1.9. Blood Bonds
+#EXTINF:2523,,Supergirl 1.9. Blood Bonds
 dvd:///mnt/dvd/archive/S/Supergirl/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,Supergirl 1.10. Childish Things
+#EXTINF:2526,,Supergirl 1.10. Childish Things
 dvd:///mnt/dvd/archive/S/Supergirl/S01D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,The Flash 2.10. Potential Energy
+#EXTINF:2448,,The Flash 2.10. Potential Energy
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D03.%20E09%e2%80%9311.iso#5
-#EXTINF:0,,Arrow 4.10. Blood Debts
+#EXTINF:2430,,Arrow 4.10. Blood Debts
 dvd:///mnt/dvd/archive/A/Arrow/S04D03.%20E10%e2%80%9314.iso#3
-#EXTINF:0,,Legends of Tomorrow 1.1. Pilot (part 1)
+#EXTINF:2563,,Legends of Tomorrow 1.1. Pilot (part 1)
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Supergirl 1.11. Strange Visitor from Another Planet
+#EXTINF:2525,,Supergirl 1.11. Strange Visitor from Another Planet
 dvd:///mnt/dvd/archive/S/Supergirl/S01D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,The Flash 2.11. The Reverse-Flash Returns
+#EXTINF:2449,,The Flash 2.11. The Reverse-Flash Returns
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D03.%20E09%e2%80%9311.iso#6
-#EXTINF:0,,Arrow 4.11. A.W.O.L.
+#EXTINF:2446,,Arrow 4.11. A.W.O.L.
 dvd:///mnt/dvd/archive/A/Arrow/S04D03.%20E10%e2%80%9314.iso#4
-#EXTINF:0,,Legends of Tomorrow 1.2. Pilot (part 2)
+#EXTINF:2448,,Legends of Tomorrow 1.2. Pilot (part 2)
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Supergirl 1.12. Bizarro
+#EXTINF:2522,,Supergirl 1.12. Bizarro
 dvd:///mnt/dvd/archive/S/Supergirl/S01D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,The Flash 2.12. Fast Lane
+#EXTINF:2449,,The Flash 2.12. Fast Lane
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,Arrow 4.12. Unchained
+#EXTINF:2445,,Arrow 4.12. Unchained
 dvd:///mnt/dvd/archive/A/Arrow/S04D03.%20E10%e2%80%9314.iso#5
-#EXTINF:0,,Legends of Tomorrow 1.3. Blood Ties
+#EXTINF:2449,,Legends of Tomorrow 1.3. Blood Ties
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,Supergirl 1.13. For the Girl Who Has Everything
+#EXTINF:2525,,Supergirl 1.13. For the Girl Who Has Everything
 dvd:///mnt/dvd/archive/S/Supergirl/S01D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,The Flash 2.13. Welcome to Earth-2
+#EXTINF:2448,,The Flash 2.13. Welcome to Earth-2
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,Arrow 4.13. Sins of the Father
+#EXTINF:2440,,Arrow 4.13. Sins of the Father
 dvd:///mnt/dvd/archive/A/Arrow/S04D03.%20E10%e2%80%9314.iso#6
-#EXTINF:0,,Legends of Tomorrow 1.4. White Knights
+#EXTINF:2429,,Legends of Tomorrow 1.4. White Knights
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,The Flash 2.14. Escape from Earth-2
+#EXTINF:2385,,The Flash 2.14. Escape from Earth-2
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D04.%20E12%e2%80%9315.iso#5
-#EXTINF:0,,Arrow 4.14. Code of Silence
+#EXTINF:2447,,Arrow 4.14. Code of Silence
 dvd:///mnt/dvd/archive/A/Arrow/S04D03.%20E10%e2%80%9314.iso#7
-#EXTINF:0,,Legends of Tomorrow 1.5. Fail-Safe
+#EXTINF:2449,,Legends of Tomorrow 1.5. Fail-Safe
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Supergirl 1.14. Truth, Justice and the American Way
+#EXTINF:2522,,Supergirl 1.14. Truth, Justice and the American Way
 dvd:///mnt/dvd/archive/S/Supergirl/S01D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,The Flash 2.15. King Shark
+#EXTINF:2446,,The Flash 2.15. King Shark
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D04.%20E12%e2%80%9315.iso#6
-#EXTINF:0,,Arrow 4.15. Taken
+#EXTINF:2445,,Arrow 4.15. Taken
 dvd:///mnt/dvd/archive/A/Arrow/S04D04.%20E15%e2%80%9319.iso#3
-#EXTINF:0,,Legends of Tomorrow 1.6. Star City 2046
+#EXTINF:2447,,Legends of Tomorrow 1.6. Star City 2046
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Supergirl 1.15. Solitude
+#EXTINF:2524,,Supergirl 1.15. Solitude
 dvd:///mnt/dvd/archive/S/Supergirl/S01D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,Legends of Tomorrow 1.7. Marooned
+#EXTINF:2445,,Legends of Tomorrow 1.7. Marooned
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,Legends of Tomorrow 1.8. Night of the Hawk
+#EXTINF:2447,,Legends of Tomorrow 1.8. Night of the Hawk
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,Supergirl 1.16. Falling
+#EXTINF:2515,,Supergirl 1.16. Falling
 dvd:///mnt/dvd/archive/S/Supergirl/S01D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,Supergirl 1.17. Manhunter
+#EXTINF:2524,,Supergirl 1.17. Manhunter
 dvd:///mnt/dvd/archive/S/Supergirl/S01D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,The Flash 2.16. Trajectory
+#EXTINF:2403,,The Flash 2.16. Trajectory
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,Arrow 4.16. Broken Hearts
+#EXTINF:2440,,Arrow 4.16. Broken Hearts
 dvd:///mnt/dvd/archive/A/Arrow/S04D04.%20E15%e2%80%9319.iso#4
-#EXTINF:0,,Supergirl 1.18. Worlds Finest
+#EXTINF:2517,,Supergirl 1.18. Worlds Finest
 dvd:///mnt/dvd/archive/S/Supergirl/S01D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,The Flash 2.17. Flash Back
+#EXTINF:2433,,The Flash 2.17. Flash Back
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,Arrow 4.17. Beacon of Hope
+#EXTINF:2435,,Arrow 4.17. Beacon of Hope
 dvd:///mnt/dvd/archive/A/Arrow/S04D04.%20E15%e2%80%9319.iso#5
-#EXTINF:0,,Legends of Tomorrow 1.9. Left Behind
+#EXTINF:2406,,Legends of Tomorrow 1.9. Left Behind
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,Arrow 4.18. Eleven Fifty-Nine
+#EXTINF:2442,,Arrow 4.18. Eleven Fifty-Nine
 dvd:///mnt/dvd/archive/A/Arrow/S04D04.%20E15%e2%80%9319.iso#6
-#EXTINF:0,,Legends of Tomorrow 1.10. Progeny
+#EXTINF:2448,,Legends of Tomorrow 1.10. Progeny
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,Supergirl 1.19. Myriad
+#EXTINF:2440,,Supergirl 1.19. Myriad
 dvd:///mnt/dvd/archive/S/Supergirl/S01D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,Legends of Tomorrow 1.11. The Magnificent Eight
+#EXTINF:2422,,Legends of Tomorrow 1.11. The Magnificent Eight
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,Supergirl 1.20. Better Angels
+#EXTINF:2412,,Supergirl 1.20. Better Angels
 dvd:///mnt/dvd/archive/S/Supergirl/S01D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,The Flash 2.18. Versus Zoom
+#EXTINF:2444,,The Flash 2.18. Versus Zoom
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D05.%20E16%e2%80%9319.iso#5
-#EXTINF:0,,Legends of Tomorrow 1.12. Last Refuge
+#EXTINF:2446,,Legends of Tomorrow 1.12. Last Refuge
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,The Flash 2.19. Back to Normal
+#EXTINF:2449,,The Flash 2.19. Back to Normal
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D05.%20E16%e2%80%9319.iso#6
-#EXTINF:0,,Arrow 4.19. Canary Cry
+#EXTINF:2387,,Arrow 4.19. Canary Cry
 dvd:///mnt/dvd/archive/A/Arrow/S04D04.%20E15%e2%80%9319.iso#7
-#EXTINF:0,,Legends of Tomorrow 1.13. Leviathan
+#EXTINF:2445,,Legends of Tomorrow 1.13. Leviathan
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,The Flash 2.20. Rupture
+#EXTINF:2449,,The Flash 2.20. Rupture
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D06.%20E20%e2%80%9323.iso#3
-#EXTINF:0,,Arrow 4.20. Genesis
+#EXTINF:2408,,Arrow 4.20. Genesis
 dvd:///mnt/dvd/archive/A/Arrow/S04D05.%20E20%e2%80%9323.iso#3
-#EXTINF:0,,Legends of Tomorrow 1.14. River of Time
+#EXTINF:2419,,Legends of Tomorrow 1.14. River of Time
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,The Flash 2.21. The Runaway Dinosaur
+#EXTINF:2448,,The Flash 2.21. The Runaway Dinosaur
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D06.%20E20%e2%80%9323.iso#4
-#EXTINF:0,,Arrow 4.21. Monument Point
+#EXTINF:2419,,Arrow 4.21. Monument Point
 dvd:///mnt/dvd/archive/A/Arrow/S04D05.%20E20%e2%80%9323.iso#4
-#EXTINF:0,,Legends of Tomorrow 1.15. Destiny
+#EXTINF:2444,,Legends of Tomorrow 1.15. Destiny
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,The Flash 2.22. Invincible
+#EXTINF:2448,,The Flash 2.22. Invincible
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D06.%20E20%e2%80%9323.iso#5
-#EXTINF:0,,Arrow 4.22. Lost in the Flood
+#EXTINF:2419,,Arrow 4.22. Lost in the Flood
 dvd:///mnt/dvd/archive/A/Arrow/S04D05.%20E20%e2%80%9323.iso#5
-#EXTINF:0,,Legends of Tomorrow 1.16. Legendary
+#EXTINF:2505,,Legends of Tomorrow 1.16. Legendary
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,The Flash 2.23. The Race of His Life
+#EXTINF:2488,,The Flash 2.23. The Race of His Life
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D06.%20E20%e2%80%9323.iso#6
-#EXTINF:0,,Arrow 4.23. Schism
+#EXTINF:2444,,Arrow 4.23. Schism
 dvd:///mnt/dvd/archive/A/Arrow/S04D05.%20E20%e2%80%9323.iso#6
 
-#EXTINF:0,,The Flash 3.1. Flashpoint
+#EXTINF:2449,,The Flash 3.1. Flashpoint
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Arrow 5.1. Legacy
+#EXTINF:2446,,Arrow 5.1. Legacy
 dvd:///mnt/dvd/archive/A/Arrow/S05D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,Supergirl 2.1. The Adventures of Supergirl
+#EXTINF:2444,,Supergirl 2.1. The Adventures of Supergirl
 dvd:///mnt/dvd/archive/S/Supergirl/S02D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,The Flash 3.2. Paradox
+#EXTINF:2446,,The Flash 3.2. Paradox
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Arrow 5.2. The Recruits
+#EXTINF:2446,,Arrow 5.2. The Recruits
 dvd:///mnt/dvd/archive/A/Arrow/S05D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,Legends of Tomorrow 2.1. Out of Time
+#EXTINF:2448,,Legends of Tomorrow 2.1. Out of Time
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,Supergirl 2.2. The Last Children of Krypton
+#EXTINF:2447,,Supergirl 2.2. The Last Children of Krypton
 dvd:///mnt/dvd/archive/S/Supergirl/S02D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,The Flash 3.3. Magenta
+#EXTINF:2438,,The Flash 3.3. Magenta
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,Arrow 5.3. A Matter of Trust
+#EXTINF:2447,,Arrow 5.3. A Matter of Trust
 dvd:///mnt/dvd/archive/A/Arrow/S05D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,Legends of Tomorrow 2.2. The Justice Society of America
+#EXTINF:2430,,Legends of Tomorrow 2.2. The Justice Society of America
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,Supergirl 2.3. Welcome to Earth
+#EXTINF:2432,,Supergirl 2.3. Welcome to Earth
 dvd:///mnt/dvd/archive/S/Supergirl/S02D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,The Flash 3.4. The New Rogues
+#EXTINF:2447,,The Flash 3.4. The New Rogues
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Arrow 5.4. Penance
+#EXTINF:2434,,Arrow 5.4. Penance
 dvd:///mnt/dvd/archive/A/Arrow/S05D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,Legends of Tomorrow 2.3. Shogun
+#EXTINF:2446,,Legends of Tomorrow 2.3. Shogun
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,Supergirl 2.4. Survivors
+#EXTINF:2447,,Supergirl 2.4. Survivors
 dvd:///mnt/dvd/archive/S/Supergirl/S02D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,The Flash 3.5. Monster
+#EXTINF:2448,,The Flash 3.5. Monster
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Arrow 5.5. Human Target
+#EXTINF:2445,,Arrow 5.5. Human Target
 dvd:///mnt/dvd/archive/A/Arrow/S05D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,Legends of Tomorrow 2.4. Abominations
+#EXTINF:2443,,Legends of Tomorrow 2.4. Abominations
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,Supergirl 2.5. Crossfire
+#EXTINF:2439,,Supergirl 2.5. Crossfire
 dvd:///mnt/dvd/archive/S/Supergirl/S02D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,Arrow 5.6. So It Begins
+#EXTINF:2389,,Arrow 5.6. So It Begins
 dvd:///mnt/dvd/archive/A/Arrow/S05D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,Legends of Tomorrow 2.5. Compromised
+#EXTINF:2434,,Legends of Tomorrow 2.5. Compromised
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,Supergirl 2.6. Changing
+#EXTINF:2451,,Supergirl 2.6. Changing
 dvd:///mnt/dvd/archive/S/Supergirl/S02D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,The Flash 3.6. Shade
+#EXTINF:2442,,The Flash 3.6. Shade
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Arrow 5.7. Vigilante
+#EXTINF:2445,,Arrow 5.7. Vigilante
 dvd:///mnt/dvd/archive/A/Arrow/S05D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,Legends of Tomorrow 2.6. Outlaw Country
+#EXTINF:2397,,Legends of Tomorrow 2.6. Outlaw Country
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D02.%20E06%e2%80%9309.iso#3
-#EXTINF:0,,Supergirl 2.7. The Darkest Place
+#EXTINF:2447,,Supergirl 2.7. The Darkest Place
 dvd:///mnt/dvd/archive/S/Supergirl/S02D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,The Flash 3.7. Killer Frost
+#EXTINF:2447,,The Flash 3.7. Killer Frost
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,Supergirl 2.8. Medusa
+#EXTINF:2443,,Supergirl 2.8. Medusa
 dvd:///mnt/dvd/archive/S/Supergirl/S02D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,The Flash 3.8. Invasion! (part 1)
+#EXTINF:2428,,The Flash 3.8. Invasion! (part 1)
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,Arrow 5.8. Invasion! (part 2)
+#EXTINF:2446,,Arrow 5.8. Invasion! (part 2)
 dvd:///mnt/dvd/archive/A/Arrow/S05D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,Legends of Tomorrow 2.7. Invasion! (part 3)
+#EXTINF:2446,,Legends of Tomorrow 2.7. Invasion! (part 3)
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D02.%20E06%e2%80%9309.iso#4
-#EXTINF:0,,The Flash 3.9. The Present
+#EXTINF:2422,,The Flash 3.9. The Present
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,Arrow 5.9. What We Leave Behind
+#EXTINF:2446,,Arrow 5.9. What We Leave Behind
 dvd:///mnt/dvd/archive/A/Arrow/S05D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,Legends of Tomorrow 2.8. The Chicago Way
+#EXTINF:2443,,Legends of Tomorrow 2.8. The Chicago Way
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D02.%20E06%e2%80%9309.iso#5
-#EXTINF:0,,Supergirl 2.9. Supergirl Lives
+#EXTINF:2447,,Supergirl 2.9. Supergirl Lives
 dvd:///mnt/dvd/archive/S/Supergirl/S02D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,The Flash 3.10. Borrowing Problems from the Future
+#EXTINF:2443,,The Flash 3.10. Borrowing Problems from the Future
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,Legends of Tomorrow 2.9. Raiders of the Lost Art
+#EXTINF:2402,,Legends of Tomorrow 2.9. Raiders of the Lost Art
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D02.%20E06%e2%80%9309.iso#6
-#EXTINF:0,,Arrow 5.10. Who Are You?
+#EXTINF:2444,,Arrow 5.10. Who Are You?
 dvd:///mnt/dvd/archive/A/Arrow/S05D02.%20E06%e2%80%9310.iso#7
-#EXTINF:0,,Supergirl 2.10. We Can Be Heroes
+#EXTINF:2446,,Supergirl 2.10. We Can Be Heroes
 dvd:///mnt/dvd/archive/S/Supergirl/S02D02.%20E06%e2%80%9310.iso#7
-#EXTINF:0,,The Flash 3.11. Dead or Alive
+#EXTINF:2447,,The Flash 3.11. Dead or Alive
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,Legends of Tomorrow 2.10. The Legion of Doom
+#EXTINF:2444,,Legends of Tomorrow 2.10. The Legion of Doom
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D03.%20E10%e2%80%9313.iso#3
-#EXTINF:0,,Arrow 5.11. Second Chances
+#EXTINF:2439,,Arrow 5.11. Second Chances
 dvd:///mnt/dvd/archive/A/Arrow/S05D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,Supergirl 2.11. The Martian Chronicles
+#EXTINF:2422,,Supergirl 2.11. The Martian Chronicles
 dvd:///mnt/dvd/archive/S/Supergirl/S02D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,The Flash 3.12. Untouchable
+#EXTINF:2433,,The Flash 3.12. Untouchable
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,Legends of Tomorrow 2.11. Turncoat
+#EXTINF:2359,,Legends of Tomorrow 2.11. Turncoat
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D03.%20E10%e2%80%9313.iso#4
-#EXTINF:0,,Arrow 5.12. Bratva
+#EXTINF:2447,,Arrow 5.12. Bratva
 dvd:///mnt/dvd/archive/A/Arrow/S05D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,Supergirl 2.12. Luthors
+#EXTINF:2447,,Supergirl 2.12. Luthors
 dvd:///mnt/dvd/archive/S/Supergirl/S02D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,Arrow 5.13. Spectre of the Gun
+#EXTINF:2385,,Arrow 5.13. Spectre of the Gun
 dvd:///mnt/dvd/archive/A/Arrow/S05D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,Supergirl 2.13. Mr. & Mrs. Mxyzptlk
+#EXTINF:2447,,Supergirl 2.13. Mr. & Mrs. Mxyzptlk
 dvd:///mnt/dvd/archive/S/Supergirl/S02D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,The Flash 3.13. Attack on Gorilla City
+#EXTINF:2447,,The Flash 3.13. Attack on Gorilla City
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,Legends of Tomorrow 2.12. Camelot/3000
+#EXTINF:2431,,Legends of Tomorrow 2.12. Camelot/3000
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D03.%20E10%e2%80%9313.iso#5
-#EXTINF:0,,Arrow 5.14. The Sin-Eater
+#EXTINF:2449,,Arrow 5.14. The Sin-Eater
 dvd:///mnt/dvd/archive/A/Arrow/S05D03.%20E11%e2%80%9315.iso#6
-#EXTINF:0,,Supergirl 2.14. Homecoming
+#EXTINF:2447,,Supergirl 2.14. Homecoming
 dvd:///mnt/dvd/archive/S/Supergirl/S02D03.%20E11%e2%80%9315.iso#6
-#EXTINF:0,,The Flash 3.14. Attack on Central City
+#EXTINF:2446,,The Flash 3.14. Attack on Central City
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,Arrow 5.15. Fighting Fire with Fire
+#EXTINF:2444,,Arrow 5.15. Fighting Fire with Fire
 dvd:///mnt/dvd/archive/A/Arrow/S05D03.%20E11%e2%80%9315.iso#7
-#EXTINF:0,,Supergirl 2.15. Exodus
+#EXTINF:2435,,Supergirl 2.15. Exodus
 dvd:///mnt/dvd/archive/S/Supergirl/S02D03.%20E11%e2%80%9315.iso#7
-#EXTINF:0,,The Flash 3.15. The Wrath of Savitar
+#EXTINF:2440,,The Flash 3.15. The Wrath of Savitar
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,Legends of Tomorrow 2.13. Land of the Lost
+#EXTINF:2438,,Legends of Tomorrow 2.13. Land of the Lost
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D03.%20E10%e2%80%9313.iso#6
-#EXTINF:0,,The Flash 3.16. Into the Speed Force
+#EXTINF:2429,,The Flash 3.16. Into the Speed Force
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,Legends of Tomorrow 2.14. Moonshot
+#EXTINF:2443,,Legends of Tomorrow 2.14. Moonshot
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D04.%20E14%e2%80%9317.iso#3
-#EXTINF:0,,Arrow 5.16. Checkmate
+#EXTINF:2439,,Arrow 5.16. Checkmate
 dvd:///mnt/dvd/archive/A/Arrow/S05D04.%20E16%e2%80%9320.iso#3
-#EXTINF:0,,Supergirl 2.16. Star-Crossed
+#EXTINF:2448,,Supergirl 2.16. Star-Crossed
 dvd:///mnt/dvd/archive/S/Supergirl/S02D04.%20E16%e2%80%9320.iso#3
-#EXTINF:0,,The Flash 3.17. Duet
+#EXTINF:2499,,The Flash 3.17. Duet
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,Legends of Tomorrow 2.15. Fellowship of the Spear
+#EXTINF:2388,,Legends of Tomorrow 2.15. Fellowship of the Spear
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D04.%20E14%e2%80%9317.iso#4
-#EXTINF:0,,Arrow 5.17. Kapiushon
+#EXTINF:2444,,Arrow 5.17. Kapiushon
 dvd:///mnt/dvd/archive/A/Arrow/S05D04.%20E16%e2%80%9320.iso#4
-#EXTINF:0,,Supergirl 2.17. Distant Sun
+#EXTINF:2425,,Supergirl 2.17. Distant Sun
 dvd:///mnt/dvd/archive/S/Supergirl/S02D04.%20E16%e2%80%9320.iso#4
-#EXTINF:0,,The Flash 3.18. Abra Kadabra
+#EXTINF:2445,,The Flash 3.18. Abra Kadabra
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,Legends of Tomorrow 2.16. Doomworld
+#EXTINF:2442,,Legends of Tomorrow 2.16. Doomworld
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D04.%20E14%e2%80%9317.iso#5
-#EXTINF:0,,Arrow 5.18. Disbanded
+#EXTINF:2446,,Arrow 5.18. Disbanded
 dvd:///mnt/dvd/archive/A/Arrow/S05D04.%20E16%e2%80%9320.iso#5
-#EXTINF:0,,Legends of Tomorrow 2.17. Aruba
+#EXTINF:2393,,Legends of Tomorrow 2.17. Aruba
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D04.%20E14%e2%80%9317.iso#6
-#EXTINF:0,,Supergirl 2.18. Ace Reporter
+#EXTINF:2409,,Supergirl 2.18. Ace Reporter
 dvd:///mnt/dvd/archive/S/Supergirl/S02D04.%20E16%e2%80%9320.iso#5
-#EXTINF:0,,The Flash 3.19. The Once and Future Flash
+#EXTINF:2448,,The Flash 3.19. The Once and Future Flash
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,Arrow 5.19. Dangerous Liaisons
+#EXTINF:2442,,Arrow 5.19. Dangerous Liaisons
 dvd:///mnt/dvd/archive/A/Arrow/S05D04.%20E16%e2%80%9320.iso#6
-#EXTINF:0,,Supergirl 2.19. Alex
+#EXTINF:2447,,Supergirl 2.19. Alex
 dvd:///mnt/dvd/archive/S/Supergirl/S02D04.%20E16%e2%80%9320.iso#6
-#EXTINF:0,,The Flash 3.20. I Know Who You Are
+#EXTINF:2439,,The Flash 3.20. I Know Who You Are
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,Arrow 5.20. Underneath
+#EXTINF:2444,,Arrow 5.20. Underneath
 dvd:///mnt/dvd/archive/A/Arrow/S05D04.%20E16%e2%80%9320.iso#7
-#EXTINF:0,,Supergirl 2.20. City of Lost Children
+#EXTINF:2449,,Supergirl 2.20. City of Lost Children
 dvd:///mnt/dvd/archive/S/Supergirl/S02D04.%20E16%e2%80%9320.iso#7
-#EXTINF:0,,The Flash 3.21. Cause and Effect
+#EXTINF:2440,,The Flash 3.21. Cause and Effect
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D06.%20E21%e2%80%9323.iso#3
-#EXTINF:0,,Arrow 5.21. Honor Thy Fathers
+#EXTINF:2444,,Arrow 5.21. Honor Thy Fathers
 dvd:///mnt/dvd/archive/A/Arrow/S05D05.%20E21%e2%80%9323.iso#3
-#EXTINF:0,,Supergirl 2.21. Resist
+#EXTINF:2447,,Supergirl 2.21. Resist
 dvd:///mnt/dvd/archive/S/Supergirl/S02D05.%20E21%e2%80%9322.iso#3
-#EXTINF:0,,The Flash 3.22. Infantino Street
+#EXTINF:2446,,The Flash 3.22. Infantino Street
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D06.%20E21%e2%80%9323.iso#4
-#EXTINF:0,,Arrow 5.22. Missing
+#EXTINF:2444,,Arrow 5.22. Missing
 dvd:///mnt/dvd/archive/A/Arrow/S05D05.%20E21%e2%80%9323.iso#4
-#EXTINF:0,,Supergirl 2.22. Nevertheless, She Persisted
+#EXTINF:2443,,Supergirl 2.22. Nevertheless, She Persisted
 dvd:///mnt/dvd/archive/S/Supergirl/S02D05.%20E21%e2%80%9322.iso#4
-#EXTINF:0,,The Flash 3.23. Finish Line
+#EXTINF:2420,,The Flash 3.23. Finish Line
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D06.%20E21%e2%80%9323.iso#5
-#EXTINF:0,,Arrow 5.23. Lian Yu
+#EXTINF:2445,,Arrow 5.23. Lian Yu
 dvd:///mnt/dvd/archive/A/Arrow/S05D05.%20E21%e2%80%9323.iso#5
 
-#EXTINF:0,,Supergirl 3.1. Girl of Steel
+#EXTINF:2445,,Supergirl 3.1. Girl of Steel
 dvd:///mnt/dvd/archive/S/Supergirl/S03D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,The Flash 4.1. The Flash Reborn
+#EXTINF:2445,,The Flash 4.1. The Flash Reborn
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,Legends of Tomorrow 3.1. Aruba-Con
+#EXTINF:2445,,Legends of Tomorrow 3.1. Aruba-Con
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,Arrow 6.1. Fallout
+#EXTINF:2445,,Arrow 6.1. Fallout
 dvd:///mnt/dvd/archive/A/Arrow/S06D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,Supergirl 3.2. Triggers
+#EXTINF:2446,,Supergirl 3.2. Triggers
 dvd:///mnt/dvd/archive/S/Supergirl/S03D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,The Flash 4.2. Mixed Signals
+#EXTINF:2446,,The Flash 4.2. Mixed Signals
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,Legends of Tomorrow 3.2. Freakshow
+#EXTINF:2447,,Legends of Tomorrow 3.2. Freakshow
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,Arrow 6.2. Tribute
+#EXTINF:2421,,Arrow 6.2. Tribute
 dvd:///mnt/dvd/archive/A/Arrow/S06D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,Supergirl 3.3. Far from the Tree
+#EXTINF:2448,,Supergirl 3.3. Far from the Tree
 dvd:///mnt/dvd/archive/S/Supergirl/S03D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,The Flash 4.3. Luck Be a Lady
+#EXTINF:2446,,The Flash 4.3. Luck Be a Lady
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,Legends of Tomorrow 3.3. Zari
+#EXTINF:2437,,Legends of Tomorrow 3.3. Zari
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,Arrow 6.3. Next of Kin
+#EXTINF:2419,,Arrow 6.3. Next of Kin
 dvd:///mnt/dvd/archive/A/Arrow/S06D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,Supergirl 3.4. The Faithful
+#EXTINF:2437,,Supergirl 3.4. The Faithful
 dvd:///mnt/dvd/archive/S/Supergirl/S03D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,The Flash 4.4. Elongated Journey Into Night
+#EXTINF:2414,,The Flash 4.4. Elongated Journey Into Night
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,Legends of Tomorrow 3.4. Phone Home
+#EXTINF:2447,,Legends of Tomorrow 3.4. Phone Home
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,Arrow 6.4. Reversal
+#EXTINF:2442,,Arrow 6.4. Reversal
 dvd:///mnt/dvd/archive/A/Arrow/S06D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,Supergirl 3.5. Damage
+#EXTINF:2447,,Supergirl 3.5. Damage
 dvd:///mnt/dvd/archive/S/Supergirl/S03D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,The Flash 4.5. Girls Night Out
+#EXTINF:2412,,The Flash 4.5. Girls Night Out
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,Legends of Tomorrow 3.5. Return of the Mack
+#EXTINF:2429,,Legends of Tomorrow 3.5. Return of the Mack
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,Arrow 6.5. Deathstroke Returns
+#EXTINF:2449,,Arrow 6.5. Deathstroke Returns
 dvd:///mnt/dvd/archive/A/Arrow/S06D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,Supergirl 3.6. Midvale
+#EXTINF:2448,,Supergirl 3.6. Midvale
 dvd:///mnt/dvd/archive/S/Supergirl/S03D02.%20E06%e2%80%9309.iso#3
-#EXTINF:0,,The Flash 4.6. When Harry Met Harry…
+#EXTINF:2444,,The Flash 4.6. When Harry Met Harry…
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D02.%20E06%e2%80%9309.iso#3
-#EXTINF:0,,Legends of Tomorrow 3.6. Helen Hunt
+#EXTINF:2447,,Legends of Tomorrow 3.6. Helen Hunt
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D02.%20E06%e2%80%9309.iso#3
-#EXTINF:0,,Arrow 6.6. Promises Kept
+#EXTINF:2447,,Arrow 6.6. Promises Kept
 dvd:///mnt/dvd/archive/A/Arrow/S06D02.%20E06%e2%80%9309.iso#3
-#EXTINF:0,,Supergirl 3.7. Wake Up
+#EXTINF:2440,,Supergirl 3.7. Wake Up
 dvd:///mnt/dvd/archive/S/Supergirl/S03D02.%20E06%e2%80%9309.iso#4
-#EXTINF:0,,The Flash 4.7. Therefore I Am
+#EXTINF:2428,,The Flash 4.7. Therefore I Am
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D02.%20E06%e2%80%9309.iso#4
-#EXTINF:0,,Legends of Tomorrow 3.7. Welcome to the Jungle
+#EXTINF:2430,,Legends of Tomorrow 3.7. Welcome to the Jungle
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D02.%20E06%e2%80%9309.iso#4
-#EXTINF:0,,Arrow 6.7. Thanksgiving
+#EXTINF:2429,,Arrow 6.7. Thanksgiving
 dvd:///mnt/dvd/archive/A/Arrow/S06D02.%20E06%e2%80%9309.iso#4
-#EXTINF:0,,Supergirl 3.8. Crisis on Earth-X (part 1)
+#EXTINF:2441,,Supergirl 3.8. Crisis on Earth-X (part 1)
 dvd:///mnt/dvd/archive/S/Supergirl/S03D02.%20E06%e2%80%9309.iso#5
-#EXTINF:0,,Arrow 6.8. Crisis on Earth-X (part 2)
+#EXTINF:2448,,Arrow 6.8. Crisis on Earth-X (part 2)
 dvd:///mnt/dvd/archive/A/Arrow/S06D02.%20E06%e2%80%9309.iso#5
-#EXTINF:0,,The Flash 4.8. Crisis on Earth-X (part 3)
+#EXTINF:2446,,The Flash 4.8. Crisis on Earth-X (part 3)
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D02.%20E06%e2%80%9309.iso#5
-#EXTINF:0,,Legends of Tomorrow 3.8. Crisis on Earth-X (part 4)
+#EXTINF:2440,,Legends of Tomorrow 3.8. Crisis on Earth-X (part 4)
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D02.%20E06%e2%80%9309.iso#5
-#EXTINF:0,,Supergirl 3.9. Reign
+#EXTINF:2432,,Supergirl 3.9. Reign
 dvd:///mnt/dvd/archive/S/Supergirl/S03D02.%20E06%e2%80%9309.iso#6
-#EXTINF:0,,The Flash 4.9. Don't Run
+#EXTINF:2445,,The Flash 4.9. Don't Run
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D02.%20E06%e2%80%9309.iso#6
-#EXTINF:0,,Legends of Tomorrow 3.9. Beebo the God of War
+#EXTINF:2446,,Legends of Tomorrow 3.9. Beebo the God of War
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D02.%20E06%e2%80%9309.iso#6
-#EXTINF:0,,Arrow 6.9. Irreconcilable Differences
+#EXTINF:2447,,Arrow 6.9. Irreconcilable Differences
 dvd:///mnt/dvd/archive/A/Arrow/S06D02.%20E06%e2%80%9309.iso#6
-#EXTINF:0,,Supergirl 3.10. Legion of Super-Heroes
+#EXTINF:2445,,Supergirl 3.10. Legion of Super-Heroes
 dvd:///mnt/dvd/archive/S/Supergirl/S03D03.%20E10%e2%80%9314.iso#3
-#EXTINF:0,,The Flash 4.10. The Trial of the Flash
+#EXTINF:2447,,The Flash 4.10. The Trial of the Flash
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D03.%20E10%e2%80%9314.iso#3
-#EXTINF:0,,Arrow 6.10. Divided
+#EXTINF:2442,,Arrow 6.10. Divided
 dvd:///mnt/dvd/archive/A/Arrow/S06D03.%20E10%e2%80%9314.iso#3
-#EXTINF:0,,Supergirl 3.11. Fort Rozz
+#EXTINF:2447,,Supergirl 3.11. Fort Rozz
 dvd:///mnt/dvd/archive/S/Supergirl/S03D03.%20E10%e2%80%9314.iso#4
-#EXTINF:0,,The Flash 4.11. The Elongated Knight Rises
+#EXTINF:2447,,The Flash 4.11. The Elongated Knight Rises
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D03.%20E10%e2%80%9314.iso#4
-#EXTINF:0,,Arrow 6.11. We Fall
+#EXTINF:2405,,Arrow 6.11. We Fall
 dvd:///mnt/dvd/archive/A/Arrow/S06D03.%20E10%e2%80%9314.iso#4
-#EXTINF:0,,Supergirl 3.12. For Good
+#EXTINF:2443,,Supergirl 3.12. For Good
 dvd:///mnt/dvd/archive/S/Supergirl/S03D03.%20E10%e2%80%9314.iso#5
-#EXTINF:0,,The Flash 4.12. Honey, I Shrunk Team Flash
+#EXTINF:2447,,The Flash 4.12. Honey, I Shrunk Team Flash
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D03.%20E10%e2%80%9314.iso#5
-#EXTINF:0,,Arrow 6.12. All for Nothing
+#EXTINF:2444,,Arrow 6.12. All for Nothing
 dvd:///mnt/dvd/archive/A/Arrow/S06D03.%20E10%e2%80%9314.iso#5
-#EXTINF:0,,Supergirl 3.13. Both Sides Now
+#EXTINF:2447,,Supergirl 3.13. Both Sides Now
 dvd:///mnt/dvd/archive/S/Supergirl/S03D03.%20E10%e2%80%9314.iso#6
-#EXTINF:0,,The Flash 4.13. True Colors
+#EXTINF:2441,,The Flash 4.13. True Colors
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D03.%20E10%e2%80%9314.iso#6
-#EXTINF:0,,Arrow 6.13. The Devil's Greatest Trick
+#EXTINF:2445,,Arrow 6.13. The Devil's Greatest Trick
 dvd:///mnt/dvd/archive/A/Arrow/S06D03.%20E10%e2%80%9314.iso#6
-#EXTINF:0,,Legends of Tomorrow 3.10. Daddy Darhkest
+#EXTINF:2444,,Legends of Tomorrow 3.10. Daddy Darhkest
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D03.%20E10%e2%80%9314.iso#3
-#EXTINF:0,,Legends of Tomorrow 3.11. Here I Go Again
+#EXTINF:2446,,Legends of Tomorrow 3.11. Here I Go Again
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D03.%20E10%e2%80%9314.iso#4
-#EXTINF:0,,Legends of Tomorrow 3.12. The Curse of the Earth Totem
+#EXTINF:2447,,Legends of Tomorrow 3.12. The Curse of the Earth Totem
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D03.%20E10%e2%80%9314.iso#5
-#EXTINF:0,,The Flash 4.14. Subject 9
+#EXTINF:2442,,The Flash 4.14. Subject 9
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D03.%20E10%e2%80%9314.iso#7
-#EXTINF:0,,Arrow 6.14. Collision Course
+#EXTINF:2448,,Arrow 6.14. Collision Course
 dvd:///mnt/dvd/archive/A/Arrow/S06D03.%20E10%e2%80%9314.iso#7
-#EXTINF:0,,Legends of Tomorrow 3.13. No Country for Old Dads
+#EXTINF:2446,,Legends of Tomorrow 3.13. No Country for Old Dads
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D03.%20E10%e2%80%9314.iso#6
-#EXTINF:0,,The Flash 4.15. Enter Flashtime
+#EXTINF:2396,,The Flash 4.15. Enter Flashtime
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D04.%20E15%e2%80%9319.iso#3
-#EXTINF:0,,Arrow 6.15. Doppelgänger
+#EXTINF:2448,,Arrow 6.15. Doppelgänger
 dvd:///mnt/dvd/archive/A/Arrow/S06D04.%20E15%e2%80%9319.iso#3
-#EXTINF:0,,Legends of Tomorrow 3.14. Amazing Grace
+#EXTINF:2447,,Legends of Tomorrow 3.14. Amazing Grace
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D03.%20E10%e2%80%9314.iso#7
-#EXTINF:0,,The Flash 4.16. Run, Iris, Run
+#EXTINF:2404,,The Flash 4.16. Run, Iris, Run
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D04.%20E15%e2%80%9319.iso#4
-#EXTINF:0,,Legends of Tomorrow 3.15. Necromancing the Stone
+#EXTINF:2445,,Legends of Tomorrow 3.15. Necromancing the Stone
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D04.%20E15%e2%80%9318.iso#3
-#EXTINF:0,,Legends of Tomorrow 3.16. I, Ava
+#EXTINF:2445,,Legends of Tomorrow 3.16. I, Ava
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D04.%20E15%e2%80%9318.iso#4
-#EXTINF:0,,Arrow 6.16. The Thanatos Guild
+#EXTINF:2445,,Arrow 6.16. The Thanatos Guild
 dvd:///mnt/dvd/archive/A/Arrow/S06D04.%20E15%e2%80%9319.iso#4
-#EXTINF:0,,Legends of Tomorrow 3.17. Guest Starring John Noble
+#EXTINF:2447,,Legends of Tomorrow 3.17. Guest Starring John Noble
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D04.%20E15%e2%80%9318.iso#5
-#EXTINF:0,,Arrow 6.17. Brothers in Arms
+#EXTINF:2446,,Arrow 6.17. Brothers in Arms
 dvd:///mnt/dvd/archive/A/Arrow/S06D04.%20E15%e2%80%9319.iso#5
-#EXTINF:0,,Legends of Tomorrow 3.18. The Good, the Bad and the Cuddly
+#EXTINF:2419,,Legends of Tomorrow 3.18. The Good, the Bad and the Cuddly
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D04.%20E15%e2%80%9318.iso#6
-#EXTINF:0,,The Flash 4.17. Null and Annoyed
+#EXTINF:2440,,The Flash 4.17. Null and Annoyed
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D04.%20E15%e2%80%9319.iso#5
-#EXTINF:0,,Arrow 6.18. Fundamentals
+#EXTINF:2429,,Arrow 6.18. Fundamentals
 dvd:///mnt/dvd/archive/A/Arrow/S06D04.%20E15%e2%80%9319.iso#6
-#EXTINF:0,,Supergirl 3.14. Schott Through the Heart
+#EXTINF:2433,,Supergirl 3.14. Schott Through the Heart
 dvd:///mnt/dvd/archive/S/Supergirl/S03D03.%20E10%e2%80%9314.iso#7
-#EXTINF:0,,The Flash 4.18. Lose Yourself
+#EXTINF:2447,,The Flash 4.18. Lose Yourself
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D04.%20E15%e2%80%9319.iso#6
-#EXTINF:0,,Arrow 6.19. The Dragon
+#EXTINF:2444,,Arrow 6.19. The Dragon
 dvd:///mnt/dvd/archive/A/Arrow/S06D04.%20E15%e2%80%9319.iso#7
-#EXTINF:0,,Supergirl 3.15. In Search of Lost Time
+#EXTINF:2431,,Supergirl 3.15. In Search of Lost Time
 dvd:///mnt/dvd/archive/S/Supergirl/S03D04.%20E15%e2%80%9319.iso#3
-#EXTINF:0,,The Flash 4.19. Fury Rogue
+#EXTINF:2443,,The Flash 4.19. Fury Rogue
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D04.%20E15%e2%80%9319.iso#7
-#EXTINF:0,,Arrow 6.20. Shifting Allegiances
+#EXTINF:2445,,Arrow 6.20. Shifting Allegiances
 dvd:///mnt/dvd/archive/A/Arrow/S06D05.%20E20%e2%80%9323.iso#3
-#EXTINF:0,,Supergirl 3.16. Of Two Minds
+#EXTINF:2447,,Supergirl 3.16. Of Two Minds
 dvd:///mnt/dvd/archive/S/Supergirl/S03D04.%20E15%e2%80%9319.iso#4
-#EXTINF:0,,The Flash 4.20. Therefore She Is
+#EXTINF:2447,,The Flash 4.20. Therefore She Is
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D05.%20E20%e2%80%9323.iso#3
-#EXTINF:0,,Arrow 6.21. Docket No. 11-19-41-73
+#EXTINF:2448,,Arrow 6.21. Docket No. 11-19-41-73
 dvd:///mnt/dvd/archive/A/Arrow/S06D05.%20E20%e2%80%9323.iso#4
-#EXTINF:0,,Supergirl 3.17. Trinity
+#EXTINF:2446,,Supergirl 3.17. Trinity
 dvd:///mnt/dvd/archive/S/Supergirl/S03D04.%20E15%e2%80%9319.iso#5
-#EXTINF:0,,The Flash 4.21. Harry and the Harrisons
+#EXTINF:2447,,The Flash 4.21. Harry and the Harrisons
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D05.%20E20%e2%80%9323.iso#4
-#EXTINF:0,,Arrow 6.22. The Ties that Bind
+#EXTINF:2424,,Arrow 6.22. The Ties that Bind
 dvd:///mnt/dvd/archive/A/Arrow/S06D05.%20E20%e2%80%9323.iso#5
-#EXTINF:0,,Supergirl 3.18. Shelter from the Storm
+#EXTINF:2446,,Supergirl 3.18. Shelter from the Storm
 dvd:///mnt/dvd/archive/S/Supergirl/S03D04.%20E15%e2%80%9319.iso#6
-#EXTINF:0,,The Flash 4.22. Think Fast
+#EXTINF:2424,,The Flash 4.22. Think Fast
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D05.%20E20%e2%80%9323.iso#5
-#EXTINF:0,,Arrow 6.23. Life Sentence
+#EXTINF:2443,,Arrow 6.23. Life Sentence
 dvd:///mnt/dvd/archive/A/Arrow/S06D05.%20E20%e2%80%9323.iso#6
-#EXTINF:0,,Supergirl 3.19. The Fanatical
+#EXTINF:2441,,Supergirl 3.19. The Fanatical
 dvd:///mnt/dvd/archive/S/Supergirl/S03D04.%20E15%e2%80%9319.iso#7
-#EXTINF:0,,The Flash 4.23. We Are the Flash
+#EXTINF:2445,,The Flash 4.23. We Are the Flash
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D05.%20E20%e2%80%9323.iso#6
-#EXTINF:0,,Supergirl 3.20. Dark Side of the Moon
+#EXTINF:2422,,Supergirl 3.20. Dark Side of the Moon
 dvd:///mnt/dvd/archive/S/Supergirl/S03D05.%20E20%e2%80%9323.iso#3
-#EXTINF:0,,Supergirl 3.21. Not Kansas
+#EXTINF:2447,,Supergirl 3.21. Not Kansas
 dvd:///mnt/dvd/archive/S/Supergirl/S03D05.%20E20%e2%80%9323.iso#4
-#EXTINF:0,,Supergirl 3.22. Make it Reign
+#EXTINF:2442,,Supergirl 3.22. Make it Reign
 dvd:///mnt/dvd/archive/S/Supergirl/S03D05.%20E20%e2%80%9323.iso#5
-#EXTINF:0,,Supergirl 3.23. Battles Lost and Won
+#EXTINF:2447,,Supergirl 3.23. Battles Lost and Won
 dvd:///mnt/dvd/archive/S/Supergirl/S03D05.%20E20%e2%80%9323.iso#6
 
-#EXTINF:0,,The Flash 5.1. Nora
+#EXTINF:2445,,The Flash 5.1. Nora
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D01.%20E01%e2%80%9305.iso#2
-#EXTINF:0,,Supergirl 4.1. American Alien
+#EXTINF:2447,,Supergirl 4.1. American Alien
 dvd:///mnt/dvd/archive/S/Supergirl/S04D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,Arrow 7.1. Inmate 4587
+#EXTINF:2438,,Arrow 7.1. Inmate 4587
 dvd:///mnt/dvd/archive/A/Arrow/S07D01.%20E01%e2%80%9305.iso#2
-#EXTINF:0,,The Flash 5.2. Blocked
+#EXTINF:2434,,The Flash 5.2. Blocked
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,Supergirl 4.2. Fallout
+#EXTINF:2443,,Supergirl 4.2. Fallout
 dvd:///mnt/dvd/archive/S/Supergirl/S04D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,Arrow 7.2. The Longbow Hunters
+#EXTINF:2447,,Arrow 7.2. The Longbow Hunters
 dvd:///mnt/dvd/archive/A/Arrow/S07D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,Legends of Tomorrow 4.1. The Virgin Gary
+#EXTINF:2448,,Legends of Tomorrow 4.1. The Virgin Gary
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,The Flash 5.3. The Death of Vibe
+#EXTINF:2447,,The Flash 5.3. The Death of Vibe
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,Supergirl 4.3. Man of Steel
+#EXTINF:2360,,Supergirl 4.3. Man of Steel
 dvd:///mnt/dvd/archive/S/Supergirl/S04D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,Arrow 7.3. Crossing Lines
+#EXTINF:2368,,Arrow 7.3. Crossing Lines
 dvd:///mnt/dvd/archive/A/Arrow/S07D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,Legends of Tomorrow 4.2. Witch Hunt
+#EXTINF:2430,,Legends of Tomorrow 4.2. Witch Hunt
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,The Flash 5.4. News Flash
+#EXTINF:2377,,The Flash 5.4. News Flash
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,Supergirl 4.4. Ahimsa
+#EXTINF:2440,,Supergirl 4.4. Ahimsa
 dvd:///mnt/dvd/archive/S/Supergirl/S04D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,Arrow 7.4. Level Two
+#EXTINF:2446,,Arrow 7.4. Level Two
 dvd:///mnt/dvd/archive/A/Arrow/S07D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,Legends of Tomorrow 4.3. Dancing Queen
+#EXTINF:2446,,Legends of Tomorrow 4.3. Dancing Queen
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,Supergirl 4.5. Parasite Lost
+#EXTINF:2449,,Supergirl 4.5. Parasite Lost
 dvd:///mnt/dvd/archive/S/Supergirl/S04D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,Arrow 7.5. The Demon
+#EXTINF:2449,,Arrow 7.5. The Demon
 dvd:///mnt/dvd/archive/A/Arrow/S07D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,Legends of Tomorrow 4.4. Wet Hot American Bummer
+#EXTINF:2440,,Legends of Tomorrow 4.4. Wet Hot American Bummer
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,The Flash 5.5. All Doll'd Up
+#EXTINF:2447,,The Flash 5.5. All Doll'd Up
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,Supergirl 4.6. Call to Action
+#EXTINF:2446,,Supergirl 4.6. Call to Action
 dvd:///mnt/dvd/archive/S/Supergirl/S04D02.%20E06%e2%80%9309.iso#3
-#EXTINF:0,,Arrow 7.6. Due Process
+#EXTINF:2447,,Arrow 7.6. Due Process
 dvd:///mnt/dvd/archive/A/Arrow/S07D02.%20E06%e2%80%9309.iso#2
-#EXTINF:0,,Legends of Tomorrow 4.5. Tagumo Attacks!!!
+#EXTINF:2446,,Legends of Tomorrow 4.5. Tagumo Attacks!!!
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,The Flash 5.6. The Icicle Cometh
+#EXTINF:2427,,The Flash 5.6. The Icicle Cometh
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D02.%20E06%e2%80%9309.iso#2
-#EXTINF:0,,Supergirl 4.7. Rather the Fallen Angel
+#EXTINF:2448,,Supergirl 4.7. Rather the Fallen Angel
 dvd:///mnt/dvd/archive/S/Supergirl/S04D02.%20E06%e2%80%9309.iso#4
-#EXTINF:0,,Arrow 7.7. The Slabside Redemption
+#EXTINF:2413,,Arrow 7.7. The Slabside Redemption
 dvd:///mnt/dvd/archive/A/Arrow/S07D02.%20E06%e2%80%9309.iso#3
-#EXTINF:0,,Legends of Tomorrow 4.6. Tender Is the Nate
+#EXTINF:2446,,Legends of Tomorrow 4.6. Tender Is the Nate
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D02.%20E06%e2%80%9311.iso#3
-#EXTINF:0,,The Flash 5.7. O Come, All Ye Thankful
+#EXTINF:2444,,The Flash 5.7. O Come, All Ye Thankful
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D02.%20E06%e2%80%9309.iso#3
-#EXTINF:0,,Supergirl 4.8. Bunker Hill
+#EXTINF:2447,,Supergirl 4.8. Bunker Hill
 dvd:///mnt/dvd/archive/S/Supergirl/S04D02.%20E06%e2%80%9309.iso#5
-#EXTINF:0,,Arrow 7.8. Unmasked
+#EXTINF:2446,,Arrow 7.8. Unmasked
 dvd:///mnt/dvd/archive/A/Arrow/S07D02.%20E06%e2%80%9309.iso#4
-#EXTINF:0,,Legends of Tomorrow 4.7. Hell No, Dolly!
+#EXTINF:2446,,Legends of Tomorrow 4.7. Hell No, Dolly!
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D02.%20E06%e2%80%9311.iso#4
-#EXTINF:0,,The Flash 5.8. What's Past Is Prologue
+#EXTINF:2447,,The Flash 5.8. What's Past Is Prologue
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D02.%20E06%e2%80%9309.iso#4
-#EXTINF:0,,The Flash 5.9. Elseworlds (part 1)
+#EXTINF:2447,,The Flash 5.9. Elseworlds (part 1)
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D02.%20E06%e2%80%9309.iso#5
-#EXTINF:0,,Arrow 7.9. Elseworlds (part 2)
+#EXTINF:2448,,Arrow 7.9. Elseworlds (part 2)
 dvd:///mnt/dvd/archive/A/Arrow/S07D02.%20E06%e2%80%9309.iso#5
-#EXTINF:0,,Legends of Tomorrow 4.8. Legends of To-Meow-Meow
+#EXTINF:2445,,Legends of Tomorrow 4.8. Legends of To-Meow-Meow
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D02.%20E06%e2%80%9311.iso#5
-#EXTINF:0,,Supergirl 4.9. Elseworlds (part 3)
+#EXTINF:2446,,Supergirl 4.9. Elseworlds (part 3)
 dvd:///mnt/dvd/archive/S/Supergirl/S04D02.%20E06%e2%80%9309.iso#6
-#EXTINF:0,,The Flash 5.10. The Flash & the Furious
+#EXTINF:2446,,The Flash 5.10. The Flash & the Furious
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D03.%20E10%e2%80%9314.iso#2
-#EXTINF:0,,Supergirl 4.10. Suspicious Minds
+#EXTINF:2446,,Supergirl 4.10. Suspicious Minds
 dvd:///mnt/dvd/archive/S/Supergirl/S04D03.%20E10%e2%80%9314.iso#3
-#EXTINF:0,,Arrow 7.10. My Name Is Emiko Queen
+#EXTINF:2430,,Arrow 7.10. My Name Is Emiko Queen
 dvd:///mnt/dvd/archive/A/Arrow/S07D03.%20E10%e2%80%9314.iso#2
-#EXTINF:0,,The Flash 5.11. Seeing Red
+#EXTINF:2447,,The Flash 5.11. Seeing Red
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D03.%20E10%e2%80%9314.iso#3
-#EXTINF:0,,Supergirl 4.11. Blood Memory
+#EXTINF:2439,,Supergirl 4.11. Blood Memory
 dvd:///mnt/dvd/archive/S/Supergirl/S04D03.%20E10%e2%80%9314.iso#4
-#EXTINF:0,,Arrow 7.11. Past Sins
+#EXTINF:2447,,Arrow 7.11. Past Sins
 dvd:///mnt/dvd/archive/A/Arrow/S07D03.%20E10%e2%80%9314.iso#3
-#EXTINF:0,,The Flash 5.12. Memorabilia
+#EXTINF:2436,,The Flash 5.12. Memorabilia
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D03.%20E10%e2%80%9314.iso#4
-#EXTINF:0,,Arrow 7.12. Emerald Archer
+#EXTINF:2382,,Arrow 7.12. Emerald Archer
 dvd:///mnt/dvd/archive/A/Arrow/S07D03.%20E10%e2%80%9314.iso#4
-#EXTINF:0,,The Flash 5.13. Goldfaced
+#EXTINF:2444,,The Flash 5.13. Goldfaced
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D03.%20E10%e2%80%9314.iso#5
-#EXTINF:0,,Arrow 7.13. Star City Slayer
+#EXTINF:2444,,Arrow 7.13. Star City Slayer
 dvd:///mnt/dvd/archive/A/Arrow/S07D03.%20E10%e2%80%9314.iso#5
-#EXTINF:0,,The Flash 5.14. Cause and XS
+#EXTINF:2447,,The Flash 5.14. Cause and XS
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D03.%20E10%e2%80%9314.iso#6
-#EXTINF:0,,Supergirl 4.12. Menagerie
+#EXTINF:2449,,Supergirl 4.12. Menagerie
 dvd:///mnt/dvd/archive/S/Supergirl/S04D03.%20E10%e2%80%9314.iso#5
-#EXTINF:0,,Supergirl 4.13. What's So Funny About Truth, Justice, and the American Way?
+#EXTINF:2438,,Supergirl 4.13. What's So Funny About Truth, Justice, and the American Way?
 dvd:///mnt/dvd/archive/S/Supergirl/S04D03.%20E10%e2%80%9314.iso#6
-#EXTINF:0,,Arrow 7.14. Brothers & Sisters
+#EXTINF:2447,,Arrow 7.14. Brothers & Sisters
 dvd:///mnt/dvd/archive/A/Arrow/S07D03.%20E10%e2%80%9314.iso#6
-#EXTINF:0,,The Flash 5.15. King Shark vs. Gorilla Grodd
+#EXTINF:2410,,The Flash 5.15. King Shark vs. Gorilla Grodd
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D04.%20E15%e2%80%9319.iso#2
-#EXTINF:0,,Supergirl 4.14. Stand and Deliver
+#EXTINF:2446,,Supergirl 4.14. Stand and Deliver
 dvd:///mnt/dvd/archive/S/Supergirl/S04D03.%20E10%e2%80%9314.iso#7
-#EXTINF:0,,Arrow 7.15. Training Day
+#EXTINF:2446,,Arrow 7.15. Training Day
 dvd:///mnt/dvd/archive/A/Arrow/S07D04.%20E15%e2%80%9319.iso#2
-#EXTINF:0,,The Flash 5.16. Failure Is an Orphan
+#EXTINF:2436,,The Flash 5.16. Failure Is an Orphan
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D04.%20E15%e2%80%9319.iso#3
-#EXTINF:0,,Supergirl 4.15. O Brother, Where Art Thou?
+#EXTINF:2446,,Supergirl 4.15. O Brother, Where Art Thou?
 dvd:///mnt/dvd/archive/S/Supergirl/S04D04.%20E15%e2%80%9319.iso#3
-#EXTINF:0,,Arrow 7.16. Star City 2040
+#EXTINF:2447,,Arrow 7.16. Star City 2040
 dvd:///mnt/dvd/archive/A/Arrow/S07D04.%20E15%e2%80%9319.iso#3
-#EXTINF:0,,The Flash 5.17. Time Bomb
+#EXTINF:2446,,The Flash 5.17. Time Bomb
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D04.%20E15%e2%80%9319.iso#4
-#EXTINF:0,,Supergirl 4.16. The House of L
+#EXTINF:2445,,Supergirl 4.16. The House of L
 dvd:///mnt/dvd/archive/S/Supergirl/S04D04.%20E15%e2%80%9319.iso#4
-#EXTINF:0,,Arrow 7.17. Inheritance
+#EXTINF:2448,,Arrow 7.17. Inheritance
 dvd:///mnt/dvd/archive/A/Arrow/S07D04.%20E15%e2%80%9319.iso#4
-#EXTINF:0,,Supergirl 4.17. All About Eve
+#EXTINF:2446,,Supergirl 4.17. All About Eve
 dvd:///mnt/dvd/archive/S/Supergirl/S04D04.%20E15%e2%80%9319.iso#5
-#EXTINF:0,,Legends of Tomorrow 4.9. Lucha de apuestas
+#EXTINF:2446,,Legends of Tomorrow 4.9. Lucha de apuestas
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D02.%20E06%e2%80%9311.iso#6
-#EXTINF:0,,Legends of Tomorrow 4.10. The Getaway
+#EXTINF:2446,,Legends of Tomorrow 4.10. The Getaway
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D02.%20E06%e2%80%9311.iso#7
-#EXTINF:0,,Legends of Tomorrow 4.11. Séance and Sensibility
+#EXTINF:2449,,Legends of Tomorrow 4.11. Séance and Sensibility
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D02.%20E06%e2%80%9311.iso#8
-#EXTINF:0,,Arrow 7.18. Lost Canary
+#EXTINF:2445,,Arrow 7.18. Lost Canary
 dvd:///mnt/dvd/archive/A/Arrow/S07D04.%20E15%e2%80%9319.iso#5
-#EXTINF:0,,The Flash 5.18. Godspeed
+#EXTINF:2443,,The Flash 5.18. Godspeed
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D04.%20E15%e2%80%9319.iso#5
-#EXTINF:0,,Supergirl 4.18. Crime and Punishment
+#EXTINF:2448,,Supergirl 4.18. Crime and Punishment
 dvd:///mnt/dvd/archive/S/Supergirl/S04D04.%20E15%e2%80%9319.iso#6
-#EXTINF:0,,Legends of Tomorrow 4.12. The Eggplant, the Witch & the Wardrobe
+#EXTINF:2446,,Legends of Tomorrow 4.12. The Eggplant, the Witch & the Wardrobe
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D03.%20E12%e2%80%9316.iso#3
-#EXTINF:0,,Arrow 7.19. Spartan
+#EXTINF:2446,,Arrow 7.19. Spartan
 dvd:///mnt/dvd/archive/A/Arrow/S07D04.%20E15%e2%80%9319.iso#6
-#EXTINF:0,,The Flash 5.19. Snow Pack
+#EXTINF:2427,,The Flash 5.19. Snow Pack
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D04.%20E15%e2%80%9319.iso#6
-#EXTINF:0,,Supergirl 4.19. American Dreamer
+#EXTINF:2444,,Supergirl 4.19. American Dreamer
 dvd:///mnt/dvd/archive/S/Supergirl/S04D04.%20E15%e2%80%9319.iso#7
-#EXTINF:0,,Legends of Tomorrow 4.13. Egg MacGuffin
+#EXTINF:2444,,Legends of Tomorrow 4.13. Egg MacGuffin
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D03.%20E12%e2%80%9316.iso#4
-#EXTINF:0,,Arrow 7.20. Confessions
+#EXTINF:2359,,Arrow 7.20. Confessions
 dvd:///mnt/dvd/archive/A/Arrow/S07D05.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,The Flash 5.20. Gone Rogue
+#EXTINF:2446,,The Flash 5.20. Gone Rogue
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D05.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,Supergirl 4.20. Will the Real Miss Tessmacher Please Stand Up?
+#EXTINF:2444,,Supergirl 4.20. Will the Real Miss Tessmacher Please Stand Up?
 dvd:///mnt/dvd/archive/S/Supergirl/S04D05.%20E20%e2%80%9322.iso#3
-#EXTINF:0,,Legends of Tomorrow 4.14. Nip/Stuck
+#EXTINF:2411,,Legends of Tomorrow 4.14. Nip/Stuck
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D03.%20E12%e2%80%9316.iso#5
-#EXTINF:0,,Arrow 7.21. Living Proof
+#EXTINF:2446,,Arrow 7.21. Living Proof
 dvd:///mnt/dvd/archive/A/Arrow/S07D05.%20E20%e2%80%9322.iso#3
-#EXTINF:0,,The Flash 5.21. The Girl with the Red Lightning
+#EXTINF:2437,,The Flash 5.21. The Girl with the Red Lightning
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D05.%20E20%e2%80%9322.iso#3
-#EXTINF:0,,Supergirl 4.21. Red Dawn
+#EXTINF:2447,,Supergirl 4.21. Red Dawn
 dvd:///mnt/dvd/archive/S/Supergirl/S04D05.%20E20%e2%80%9322.iso#4
-#EXTINF:0,,Legends of Tomorrow 4.15. Terms of Service
+#EXTINF:2395,,Legends of Tomorrow 4.15. Terms of Service
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D03.%20E12%e2%80%9316.iso#6
-#EXTINF:0,,Arrow 7.22. You Have Saved This City
+#EXTINF:2446,,Arrow 7.22. You Have Saved This City
 dvd:///mnt/dvd/archive/A/Arrow/S07D05.%20E20%e2%80%9322.iso#4
-#EXTINF:0,,The Flash 5.22. Legacy
+#EXTINF:2446,,The Flash 5.22. Legacy
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D05.%20E20%e2%80%9322.iso#4
-#EXTINF:0,,Supergirl 4.22. The Quest for Peace
+#EXTINF:2442,,Supergirl 4.22. The Quest for Peace
 dvd:///mnt/dvd/archive/S/Supergirl/S04D05.%20E20%e2%80%9322.iso#5
-#EXTINF:0,,Legends of Tomorrow 4.16. Hey, World!
+#EXTINF:2444,,Legends of Tomorrow 4.16. Hey, World!
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D03.%20E12%e2%80%9316.iso#7
 
-#EXTINF:0,,Batwoman 1.1. Pilot
+#EXTINF:2443,,Batwoman 1.1. Pilot
 dvd:///mnt/dvd/archive/B/Batwoman/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Supergirl 5.1. Event Horizon
+#EXTINF:2445,,Supergirl 5.1. Event Horizon
 dvd:///mnt/dvd/archive/S/Supergirl/S05D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,The Flash 6.1. Into the Void
+#EXTINF:2444,,The Flash 6.1. Into the Void
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,Batwoman 1.2. The Rabbit Hole
+#EXTINF:2445,,Batwoman 1.2. The Rabbit Hole
 dvd:///mnt/dvd/archive/B/Batwoman/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Supergirl 5.2. Stranger Beside Me
+#EXTINF:2444,,Supergirl 5.2. Stranger Beside Me
 dvd:///mnt/dvd/archive/S/Supergirl/S05D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,The Flash 6.2. A Flash of the Lightning
+#EXTINF:2436,,The Flash 6.2. A Flash of the Lightning
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,Arrow 8.1. Starling City
+#EXTINF:2445,,Arrow 8.1. Starling City
 dvd:///mnt/dvd/archive/A/Arrow/S08D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Batwoman 1.3. Down Down Down
+#EXTINF:2425,,Batwoman 1.3. Down Down Down
 dvd:///mnt/dvd/archive/B/Batwoman/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,Supergirl 5.3. Blurred Lines
+#EXTINF:2447,,Supergirl 5.3. Blurred Lines
 dvd:///mnt/dvd/archive/S/Supergirl/S05D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,The Flash 6.3. Dead Man Running
+#EXTINF:2440,,The Flash 6.3. Dead Man Running
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,Arrow 8.2. Welcome to Hong Kong
+#EXTINF:2448,,Arrow 8.2. Welcome to Hong Kong
 dvd:///mnt/dvd/archive/A/Arrow/S08D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Batwoman 1.4. Who Are You?
+#EXTINF:2419,,Batwoman 1.4. Who Are You?
 dvd:///mnt/dvd/archive/B/Batwoman/S01D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Supergirl 5.4. In Plain Sight
+#EXTINF:2447,,Supergirl 5.4. In Plain Sight
 dvd:///mnt/dvd/archive/S/Supergirl/S05D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,The Flash 6.4. There Will Be Blood
+#EXTINF:2445,,The Flash 6.4. There Will Be Blood
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,Arrow 8.3. Leap of Faith
+#EXTINF:2442,,Arrow 8.3. Leap of Faith
 dvd:///mnt/dvd/archive/A/Arrow/S08D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Batwoman 1.5. Mine Is a Long and a Sad Tale
+#EXTINF:2446,,Batwoman 1.5. Mine Is a Long and a Sad Tale
 dvd:///mnt/dvd/archive/B/Batwoman/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Supergirl 5.5. Dangerous Liaisons
+#EXTINF:2446,,Supergirl 5.5. Dangerous Liaisons
 dvd:///mnt/dvd/archive/S/Supergirl/S05D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,The Flash 6.5. Kiss Kiss Breach Breach
+#EXTINF:2448,,The Flash 6.5. Kiss Kiss Breach Breach
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,Arrow 8.4. Present Tense
+#EXTINF:2446,,Arrow 8.4. Present Tense
 dvd:///mnt/dvd/archive/A/Arrow/S08D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,Batwoman 1.6. I'll Be Judge, I'll Be Jury
+#EXTINF:2423,,Batwoman 1.6. I'll Be Judge, I'll Be Jury
 dvd:///mnt/dvd/archive/B/Batwoman/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Supergirl 5.6. Confidence Women
+#EXTINF:2447,,Supergirl 5.6. Confidence Women
 dvd:///mnt/dvd/archive/S/Supergirl/S05D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,Batwoman 1.7. Tell Me the Truth
+#EXTINF:2443,,Batwoman 1.7. Tell Me the Truth
 dvd:///mnt/dvd/archive/B/Batwoman/S01D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,Supergirl 5.7. Tremors
+#EXTINF:2444,,Supergirl 5.7. Tremors
 dvd:///mnt/dvd/archive/S/Supergirl/S05D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,The Flash 6.6. License to Elongate
+#EXTINF:2442,,The Flash 6.6. License to Elongate
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,Arrow 8.5. Prochnost
+#EXTINF:2445,,Arrow 8.5. Prochnost
 dvd:///mnt/dvd/archive/A/Arrow/S08D02.%20E05%e2%80%9307.iso#2
-#EXTINF:0,,The Flash 6.7. The Last Temptation of Barry Allen (part 1)
+#EXTINF:2447,,The Flash 6.7. The Last Temptation of Barry Allen (part 1)
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,Arrow 8.6. Reset
+#EXTINF:2447,,Arrow 8.6. Reset
 dvd:///mnt/dvd/archive/A/Arrow/S08D02.%20E05%e2%80%9307.iso#3
-#EXTINF:0,,Batwoman 1.8. A Mad Tea-Party
+#EXTINF:2412,,Batwoman 1.8. A Mad Tea-Party
 dvd:///mnt/dvd/archive/B/Batwoman/S01D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,Supergirl 5.8. The Wrath of Rama Khan
+#EXTINF:2425,,Supergirl 5.8. The Wrath of Rama Khan
 dvd:///mnt/dvd/archive/S/Supergirl/S05D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,The Flash 6.8. The Last Temptation of Barry Allen (part 2)
+#EXTINF:2443,,The Flash 6.8. The Last Temptation of Barry Allen (part 2)
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,Arrow 8.7. Purgatory
+#EXTINF:2447,,Arrow 8.7. Purgatory
 dvd:///mnt/dvd/archive/A/Arrow/S08D02.%20E05%e2%80%9307.iso#4
-#EXTINF:0,,Supergirl 5.9. Crisis on Infinite Earths (part 1)
+#EXTINF:2420,,Supergirl 5.9. Crisis on Infinite Earths (part 1)
 dvd:///mnt/dvd/archive/S/Supergirl/S05D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,Batwoman 1.9. Crisis on Infinite Earths (part 2)
+#EXTINF:2449,,Batwoman 1.9. Crisis on Infinite Earths (part 2)
 dvd:///mnt/dvd/archive/B/Batwoman/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,The Flash 6.9. Crisis on Infinite Earths (part 3)
+#EXTINF:2446,,The Flash 6.9. Crisis on Infinite Earths (part 3)
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,Arrow 8.8. Crisis on Infinite Earths (part 4)
+#EXTINF:2448,,Arrow 8.8. Crisis on Infinite Earths (part 4)
 dvd:///mnt/dvd/archive/A/Arrow/S08D03.%20E08%e2%80%9310.iso#2
-#EXTINF:0,,Legends of Tomorrow 5.1. Crisis on Infinite Earths (part 5)
+#EXTINF:2442,,Legends of Tomorrow 5.1. Crisis on Infinite Earths (part 5)
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,Batwoman 1.10. How Queer Everything Is Today!
+#EXTINF:2432,,Batwoman 1.10. How Queer Everything Is Today!
 dvd:///mnt/dvd/archive/B/Batwoman/S01D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,Supergirl 5.10. The Bottle Episode
+#EXTINF:2431,,Supergirl 5.10. The Bottle Episode
 dvd:///mnt/dvd/archive/S/Supergirl/S05D02.%20E06%e2%80%9310.iso#7
-#EXTINF:0,,Arrow 8.9. Green Arrow & the Canaries
+#EXTINF:2446,,Arrow 8.9. Green Arrow & the Canaries
 dvd:///mnt/dvd/archive/A/Arrow/S08D03.%20E08%e2%80%9310.iso#3
-#EXTINF:0,,Legends of Tomorrow 5.2. Meet the Legends
+#EXTINF:2444,,Legends of Tomorrow 5.2. Meet the Legends
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,Batwoman 1.11. An Un-Birthday Present
+#EXTINF:2447,,Batwoman 1.11. An Un-Birthday Present
 dvd:///mnt/dvd/archive/B/Batwoman/S01D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,Supergirl 5.11. Back from the Future (part 1)
+#EXTINF:2445,,Supergirl 5.11. Back from the Future (part 1)
 dvd:///mnt/dvd/archive/S/Supergirl/S05D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,Arrow 8.10. Fadeout
+#EXTINF:2504,,Arrow 8.10. Fadeout
 dvd:///mnt/dvd/archive/A/Arrow/S08D03.%20E08%e2%80%9310.iso#4
-#EXTINF:0,,The Flash 6.10. Marathon
+#EXTINF:2446,,The Flash 6.10. Marathon
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D02.%20E06%e2%80%9310.iso#7
-#EXTINF:0,,Legends of Tomorrow 5.3. Miss Me, Kiss Me, Love Me
+#EXTINF:2437,,Legends of Tomorrow 5.3. Miss Me, Kiss Me, Love Me
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,The Flash 6.11. Love Is a Battlefield
+#EXTINF:2435,,The Flash 6.11. Love Is a Battlefield
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,Legends of Tomorrow 5.4. Slay Anything
+#EXTINF:2440,,Legends of Tomorrow 5.4. Slay Anything
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,Batwoman 1.12. Take Your Choice
+#EXTINF:2444,,Batwoman 1.12. Take Your Choice
 dvd:///mnt/dvd/archive/B/Batwoman/S01D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,Supergirl 5.12. Back from the Future (part 2)
+#EXTINF:2443,,Supergirl 5.12. Back from the Future (part 2)
 dvd:///mnt/dvd/archive/S/Supergirl/S05D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,The Flash 6.12. A Girl Named Sue
+#EXTINF:2446,,The Flash 6.12. A Girl Named Sue
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,Legends of Tomorrow 5.5. A Head of Her Time
+#EXTINF:2446,,Legends of Tomorrow 5.5. A Head of Her Time
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,Batwoman 1.13. Drink Me
+#EXTINF:2445,,Batwoman 1.13. Drink Me
 dvd:///mnt/dvd/archive/B/Batwoman/S01D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,Supergirl 5.13. It's a Super Life
+#EXTINF:2447,,Supergirl 5.13. It's a Super Life
 dvd:///mnt/dvd/archive/S/Supergirl/S05D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,The Flash 6.13. Grodd Friended Me
+#EXTINF:2437,,The Flash 6.13. Grodd Friended Me
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,Legends of Tomorrow 5.6. Mortal Khanbat
+#EXTINF:2445,,Legends of Tomorrow 5.6. Mortal Khanbat
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,Batwoman 1.14. Grinning from Ear to Ear
+#EXTINF:2446,,Batwoman 1.14. Grinning from Ear to Ear
 dvd:///mnt/dvd/archive/B/Batwoman/S01D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,Supergirl 5.14. The Bodyguard
+#EXTINF:2442,,Supergirl 5.14. The Bodyguard
 dvd:///mnt/dvd/archive/S/Supergirl/S05D03.%20E11%e2%80%9315.iso#6
-#EXTINF:0,,The Flash 6.14. Death of the Speed Force
+#EXTINF:2444,,The Flash 6.14. Death of the Speed Force
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D03.%20E11%e2%80%9315.iso#6
-#EXTINF:0,,Legends of Tomorrow 5.7. Mr. Parker's Cul-de-sac
+#EXTINF:2445,,Legends of Tomorrow 5.7. Mr. Parker's Cul-de-sac
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,Batwoman 1.15. Off with Her Head
+#EXTINF:2391,,Batwoman 1.15. Off with Her Head
 dvd:///mnt/dvd/archive/B/Batwoman/S01D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,Supergirl 5.15. Reality Bytes
+#EXTINF:2439,,Supergirl 5.15. Reality Bytes
 dvd:///mnt/dvd/archive/S/Supergirl/S05D03.%20E11%e2%80%9315.iso#7
-#EXTINF:0,,The Flash 6.15. The Exorcism of Nash Wells
+#EXTINF:2444,,The Flash 6.15. The Exorcism of Nash Wells
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D03.%20E11%e2%80%9315.iso#7
-#EXTINF:0,,Legends of Tomorrow 5.8. Romeo v. Juliet: Dawn of Justness
+#EXTINF:2446,,Legends of Tomorrow 5.8. Romeo v. Juliet: Dawn of Justness
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,Batwoman 1.16. Through the Looking-Glass
+#EXTINF:2443,,Batwoman 1.16. Through the Looking-Glass
 dvd:///mnt/dvd/archive/B/Batwoman/S01D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,Supergirl 5.16. Alex in Wonderland
+#EXTINF:2446,,Supergirl 5.16. Alex in Wonderland
 dvd:///mnt/dvd/archive/S/Supergirl/S05D04.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,The Flash 6.16. So Long and Goodnight
+#EXTINF:2446,,The Flash 6.16. So Long and Goodnight
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D04.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,Legends of Tomorrow 5.9. Zari, Not Zari
+#EXTINF:2434,,Legends of Tomorrow 5.9. Zari, Not Zari
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,Batwoman 1.17. A Narrow Escape
+#EXTINF:2446,,Batwoman 1.17. A Narrow Escape
 dvd:///mnt/dvd/archive/B/Batwoman/S01D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,The Flash 6.17. Liberation
+#EXTINF:2443,,The Flash 6.17. Liberation
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D04.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,Legends of Tomorrow 5.10. The Great British Fake Off
+#EXTINF:2446,,Legends of Tomorrow 5.10. The Great British Fake Off
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D02.%20E06%e2%80%9310.iso#7
-#EXTINF:0,,Batwoman 1.18. If You Believe in Me, I'll Believe in You
+#EXTINF:2420,,Batwoman 1.18. If You Believe in Me, I'll Believe in You
 dvd:///mnt/dvd/archive/B/Batwoman/S01D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,Supergirl 5.17. Deus Lex machina
+#EXTINF:2441,,Supergirl 5.17. Deus Lex machina
 dvd:///mnt/dvd/archive/S/Supergirl/S05D04.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,The Flash 6.18. Pay the Piper
+#EXTINF:2389,,The Flash 6.18. Pay the Piper
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D04.%20E16%e2%80%9319.iso#5
-#EXTINF:0,,Legends of Tomorrow 5.11. Ship Broken
+#EXTINF:2445,,Legends of Tomorrow 5.11. Ship Broken
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,Batwoman 1.19. A Secret Kept from All the Rest
+#EXTINF:2432,,Batwoman 1.19. A Secret Kept from All the Rest
 dvd:///mnt/dvd/archive/B/Batwoman/S01D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,Supergirl 5.18. The Missing Link
+#EXTINF:2445,,Supergirl 5.18. The Missing Link
 dvd:///mnt/dvd/archive/S/Supergirl/S05D04.%20E16%e2%80%9319.iso#5
-#EXTINF:0,,The Flash 6.19. Success Is Assured
+#EXTINF:2446,,The Flash 6.19. Success Is Assured
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D04.%20E16%e2%80%9319.iso#6
-#EXTINF:0,,Legends of Tomorrow 5.12. Freaks and Greeks
+#EXTINF:2440,,Legends of Tomorrow 5.12. Freaks and Greeks
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,Batwoman 1.20. O, Mouse!
+#EXTINF:2446,,Batwoman 1.20. O, Mouse!
 dvd:///mnt/dvd/archive/B/Batwoman/S01D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,Supergirl 5.19. Immortal Kombat
+#EXTINF:2443,,Supergirl 5.19. Immortal Kombat
 dvd:///mnt/dvd/archive/S/Supergirl/S05D04.%20E16%e2%80%9319.iso#6
-#EXTINF:0,,Legends of Tomorrow 5.13. I Am Legends
+#EXTINF:2445,,Legends of Tomorrow 5.13. I Am Legends
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,Legends of Tomorrow 5.14. The One Where We're Trapped on TV
+#EXTINF:2435,,Legends of Tomorrow 5.14. The One Where We're Trapped on TV
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D03.%20E11%e2%80%9315.iso#6
-#EXTINF:0,,Legends of Tomorrow 5.15. Swan Thong
+#EXTINF:2444,,Legends of Tomorrow 5.15. Swan Thong
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D03.%20E11%e2%80%9315.iso#7
 
-#EXTINF:0,,Batwoman 2.1. Whatever Happened to Kate Kane?
+#EXTINF:2437,,Batwoman 2.1. Whatever Happened to Kate Kane?
 dvd:///mnt/dvd/archive/B/Batwoman/S02D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,Batwoman 2.2. Prior Criminal History
+#EXTINF:2350,,Batwoman 2.2. Prior Criminal History
 dvd:///mnt/dvd/archive/B/Batwoman/S02D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,Batwoman 2.3. Bat Girl Magic!
+#EXTINF:2445,,Batwoman 2.3. Bat Girl Magic!
 dvd:///mnt/dvd/archive/B/Batwoman/S02D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,Batwoman 2.4. Fair Skin, Blue Eyes
+#EXTINF:2444,,Batwoman 2.4. Fair Skin, Blue Eyes
 dvd:///mnt/dvd/archive/B/Batwoman/S02D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,Batwoman 2.5. Gore on Canvas
+#EXTINF:2445,,Batwoman 2.5. Gore on Canvas
 dvd:///mnt/dvd/archive/B/Batwoman/S02D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,Batwoman 2.6. Do Not Resuscitate
+#EXTINF:2445,,Batwoman 2.6. Do Not Resuscitate
 dvd:///mnt/dvd/archive/B/Batwoman/S02D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,The Flash 7.1. All's Wells that Ends Wells
+#EXTINF:2442,,The Flash 7.1. All's Wells that Ends Wells
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D01.%20E01%e2%80%9305.iso#2
-#EXTINF:0,,The Flash 7.2. The Speed of Thought
+#EXTINF:2447,,The Flash 7.2. The Speed of Thought
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,Batwoman 2.7. It's Best You Stop Digging
+#EXTINF:2445,,Batwoman 2.7. It's Best You Stop Digging
 dvd:///mnt/dvd/archive/B/Batwoman/S02D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,The Flash 7.3. Mother
+#EXTINF:2446,,The Flash 7.3. Mother
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,Batwoman 2.8. Survived Much Worse
+#EXTINF:2444,,Batwoman 2.8. Survived Much Worse
 dvd:///mnt/dvd/archive/B/Batwoman/S02D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,The Flash 7.4. Central City Strong
+#EXTINF:2446,,The Flash 7.4. Central City Strong
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,Batwoman 2.9. Rule #1
+#EXTINF:2384,,Batwoman 2.9. Rule #1
 dvd:///mnt/dvd/archive/B/Batwoman/S02D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,The Flash 7.5. Fear Me
+#EXTINF:2447,,The Flash 7.5. Fear Me
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,Supergirl 6.1. Rebirth
+#EXTINF:2440,,Supergirl 6.1. Rebirth
 dvd:///mnt/dvd/archive/S/Supergirl/S06D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,The Flash 7.6. The One with the Nineties
+#EXTINF:2446,,The Flash 7.6. The One with the Nineties
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D02.%20E06%e2%80%9310.iso#2
-#EXTINF:0,,Supergirl 6.2. A Few Good Women
+#EXTINF:2446,,Supergirl 6.2. A Few Good Women
 dvd:///mnt/dvd/archive/S/Supergirl/S06D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,Batwoman 2.10. Time off for Good Behavior
+#EXTINF:2444,,Batwoman 2.10. Time off for Good Behavior
 dvd:///mnt/dvd/archive/B/Batwoman/S02D02.%20E06%e2%80%9310.iso#7
-#EXTINF:0,,The Flash 7.7. Growing Pains
+#EXTINF:2431,,The Flash 7.7. Growing Pains
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,Supergirl 6.3. Phantom Menaces
+#EXTINF:2443,,Supergirl 6.3. Phantom Menaces
 dvd:///mnt/dvd/archive/S/Supergirl/S06D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,Batwoman 2.11. Arrive Alive
+#EXTINF:2444,,Batwoman 2.11. Arrive Alive
 dvd:///mnt/dvd/archive/B/Batwoman/S02D03.%20E11%e2%80%9314.iso#3
-#EXTINF:0,,Supergirl 6.4. Lost Souls
+#EXTINF:2218,,Supergirl 6.4. Lost Souls
 dvd:///mnt/dvd/archive/S/Supergirl/S06D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,Supergirl 6.5. Prom Night!
+#EXTINF:2418,,Supergirl 6.5. Prom Night!
 dvd:///mnt/dvd/archive/S/Supergirl/S06D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,Batwoman 2.12. Initiate Self-Destruct
+#EXTINF:2436,,Batwoman 2.12. Initiate Self-Destruct
 dvd:///mnt/dvd/archive/B/Batwoman/S02D03.%20E11%e2%80%9314.iso#4
-#EXTINF:0,,Legends of Tomorrow 6.1. Ground Control to Sara Lance
+#EXTINF:2442,,Legends of Tomorrow 6.1. Ground Control to Sara Lance
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D01.%20E01%e2%80%9305.iso#2
-#EXTINF:0,,The Flash 7.8. The People v. Killer Frost
+#EXTINF:2447,,The Flash 7.8. The People v. Killer Frost
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,Supergirl 6.6. Prom Again!
+#EXTINF:2363,,Supergirl 6.6. Prom Again!
 dvd:///mnt/dvd/archive/S/Supergirl/S06D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,Batwoman 2.13. I'll Give You a Clue
+#EXTINF:2445,,Batwoman 2.13. I'll Give You a Clue
 dvd:///mnt/dvd/archive/B/Batwoman/S02D03.%20E11%e2%80%9314.iso#5
-#EXTINF:0,,Legends of Tomorrow 6.2. Meat: The Legends
+#EXTINF:2428,,Legends of Tomorrow 6.2. Meat: The Legends
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,The Flash 7.9. Timeless
+#EXTINF:2438,,The Flash 7.9. Timeless
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,Supergirl 6.7. Fear Knot
+#EXTINF:2434,,Supergirl 6.7. Fear Knot
 dvd:///mnt/dvd/archive/S/Supergirl/S06D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,Batwoman 2.14. And Justice For All
+#EXTINF:2441,,Batwoman 2.14. And Justice For All
 dvd:///mnt/dvd/archive/B/Batwoman/S02D03.%20E11%e2%80%9314.iso#6
-#EXTINF:0,,Legends of Tomorrow 6.3. The Ex-Factor
+#EXTINF:2435,,Legends of Tomorrow 6.3. The Ex-Factor
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,The Flash 7.10. Family Matters (part 1)
+#EXTINF:2436,,The Flash 7.10. Family Matters (part 1)
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,The Flash 7.11. Family Matters (part 2)
+#EXTINF:2444,,The Flash 7.11. Family Matters (part 2)
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D03.%20E11%e2%80%9314.iso#2
-#EXTINF:0,,Legends of Tomorrow 6.4. Bay of Squids
+#EXTINF:2439,,Legends of Tomorrow 6.4. Bay of Squids
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,Batwoman 2.15. Armed and Dangerous
+#EXTINF:2432,,Batwoman 2.15. Armed and Dangerous
 dvd:///mnt/dvd/archive/B/Batwoman/S02D04.%20E15%e2%80%9318.iso#3
-#EXTINF:0,,Legends of Tomorrow 6.5. The Satanist's Apprentice
+#EXTINF:2444,,Legends of Tomorrow 6.5. The Satanist's Apprentice
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,The Flash 7.12. Good-Bye Vibrations
+#EXTINF:2445,,The Flash 7.12. Good-Bye Vibrations
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D03.%20E11%e2%80%9314.iso#3
-#EXTINF:0,,Batwoman 2.16. Rebirth
+#EXTINF:2446,,Batwoman 2.16. Rebirth
 dvd:///mnt/dvd/archive/B/Batwoman/S02D04.%20E15%e2%80%9318.iso#4
-#EXTINF:0,,Legends of Tomorrow 6.6. Bishop's Gambit
+#EXTINF:2443,,Legends of Tomorrow 6.6. Bishop's Gambit
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D02.%20E06%e2%80%9310.iso#2
-#EXTINF:0,,The Flash 7.13. Masquerade
+#EXTINF:2436,,The Flash 7.13. Masquerade
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D03.%20E11%e2%80%9314.iso#4
-#EXTINF:0,,Batwoman 2.17. Kane, Kate
+#EXTINF:2435,,Batwoman 2.17. Kane, Kate
 dvd:///mnt/dvd/archive/B/Batwoman/S02D04.%20E15%e2%80%9318.iso#5
-#EXTINF:0,,Legends of Tomorrow 6.7. Back to the Finale: Part II
+#EXTINF:2444,,Legends of Tomorrow 6.7. Back to the Finale: Part II
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,The Flash 7.14. Rayo de luz
+#EXTINF:2400,,The Flash 7.14. Rayo de luz
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D03.%20E11%e2%80%9314.iso#5
-#EXTINF:0,,Batwoman 2.18. Power
+#EXTINF:2440,,Batwoman 2.18. Power
 dvd:///mnt/dvd/archive/B/Batwoman/S02D04.%20E15%e2%80%9318.iso#6
-#EXTINF:0,,Legends of Tomorrow 6.8. Stressed Western
+#EXTINF:2435,,Legends of Tomorrow 6.8. Stressed Western
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,The Flash 7.15. Enemy at the Gates
+#EXTINF:2404,,The Flash 7.15. Enemy at the Gates
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D04.%20E15%e2%80%9318.iso#2
-#EXTINF:0,,The Flash 7.16. P.O.W.
+#EXTINF:2443,,The Flash 7.16. P.O.W.
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D04.%20E15%e2%80%9318.iso#3
-#EXTINF:0,,Legends of Tomorrow 6.9. This Is Gus
+#EXTINF:2424,,Legends of Tomorrow 6.9. This Is Gus
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,The Flash 7.17. Heart of the Matter (part 1)
+#EXTINF:2443,,The Flash 7.17. Heart of the Matter (part 1)
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D04.%20E15%e2%80%9318.iso#4
-#EXTINF:0,,Legends of Tomorrow 6.10. Bad Blood
+#EXTINF:2444,,Legends of Tomorrow 6.10. Bad Blood
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,The Flash 7.18. Heart of the Matter (part 2)
+#EXTINF:2440,,The Flash 7.18. Heart of the Matter (part 2)
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D04.%20E15%e2%80%9318.iso#5
-#EXTINF:0,,Legends of Tomorrow 6.11. The Final Frame
+#EXTINF:2428,,Legends of Tomorrow 6.11. The Final Frame
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D03.%20E11%e2%80%9315.iso#2
-#EXTINF:0,,Legends of Tomorrow 6.12. Bored on Board Onboard
+#EXTINF:2445,,Legends of Tomorrow 6.12. Bored on Board Onboard
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,Legends of Tomorrow 6.13. Silence of the Sonograms
+#EXTINF:2446,,Legends of Tomorrow 6.13. Silence of the Sonograms
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,Supergirl 6.8. Welcome Back, Kara!
+#EXTINF:2448,,Supergirl 6.8. Welcome Back, Kara!
 dvd:///mnt/dvd/archive/S/Supergirl/S06D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,Legends of Tomorrow 6.14. There Will Be Brood
+#EXTINF:2442,,Legends of Tomorrow 6.14. There Will Be Brood
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,Supergirl 6.9. Dream Weaver
+#EXTINF:2442,,Supergirl 6.9. Dream Weaver
 dvd:///mnt/dvd/archive/S/Supergirl/S06D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,Legends of Tomorrow 6.15. The Fungus Amongus
+#EXTINF:2446,,Legends of Tomorrow 6.15. The Fungus Amongus
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D03.%20E11%e2%80%9315.iso#6
-#EXTINF:0,,Supergirl 6.10. Still I Rise
+#EXTINF:2443,,Supergirl 6.10. Still I Rise
 dvd:///mnt/dvd/archive/S/Supergirl/S06D02.%20E06%e2%80%9310.iso#7
-#EXTINF:0,,Supergirl 6.11. Mxy in the Middle
+#EXTINF:2426,,Supergirl 6.11. Mxy in the Middle
 dvd:///mnt/dvd/archive/S/Supergirl/S06D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,Supergirl 6.12. Blind Spots
+#EXTINF:2444,,Supergirl 6.12. Blind Spots
 dvd:///mnt/dvd/archive/S/Supergirl/S06D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,Supergirl 6.13. The Gauntlet
+#EXTINF:2447,,Supergirl 6.13. The Gauntlet
 dvd:///mnt/dvd/archive/S/Supergirl/S06D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,Supergirl 6.14. Magical Thinking
+#EXTINF:2445,,Supergirl 6.14. Magical Thinking
 dvd:///mnt/dvd/archive/S/Supergirl/S06D03.%20E11%e2%80%9315.iso#6
-#EXTINF:0,,Supergirl 6.15. Hope for Tomorrow
+#EXTINF:2442,,Supergirl 6.15. Hope for Tomorrow
 dvd:///mnt/dvd/archive/S/Supergirl/S06D03.%20E11%e2%80%9315.iso#7
-#EXTINF:0,,Supergirl 6.16. Nightmare in National City
+#EXTINF:2439,,Supergirl 6.16. Nightmare in National City
 dvd:///mnt/dvd/archive/S/Supergirl/S06D04.%20E16%e2%80%9320.iso#3
-#EXTINF:0,,Supergirl 6.17. I Believe in a thing Called Love
+#EXTINF:2446,,Supergirl 6.17. I Believe in a thing Called Love
 dvd:///mnt/dvd/archive/S/Supergirl/S06D04.%20E16%e2%80%9320.iso#4
-#EXTINF:0,,Supergirl 6.18. Truth or Consequences
+#EXTINF:2446,,Supergirl 6.18. Truth or Consequences
 dvd:///mnt/dvd/archive/S/Supergirl/S06D04.%20E16%e2%80%9320.iso#5
-#EXTINF:0,,Supergirl 6.19. The Last Gauntlet
+#EXTINF:2444,,Supergirl 6.19. The Last Gauntlet
 dvd:///mnt/dvd/archive/S/Supergirl/S06D04.%20E16%e2%80%9320.iso#6
-#EXTINF:0,,Supergirl 6.20. Kara
+#EXTINF:2724,,Supergirl 6.20. Kara
 dvd:///mnt/dvd/archive/S/Supergirl/S06D04.%20E16%e2%80%9320.iso#7
index a0cd040..d469891 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,In the Beginning
+#EXTINF:5428,,In the Beginning
 dvd:///mnt/dvd/archive/B/Babylon%205%e2%80%94In%20the%20Beginning.iso#1
-#EXTINF:0,,The Gathering
+#EXTINF:5365,,The Gathering
 dvd:///mnt/dvd/archive/B/Babylon%205%e2%80%94The%20Gathering.iso#1
 
-#EXTINF:0,,1.1. Midnight on the Firing Line
+#EXTINF:2524,,1.1. Midnight on the Firing Line
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,1.2. Soul Hunter
+#EXTINF:2525,,1.2. Soul Hunter
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,1.3. Born to the Purple
+#EXTINF:2526,,1.3. Born to the Purple
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,1.4. Infection
+#EXTINF:2523,,1.4. Infection
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,1.5. The Parliament of Dreams
+#EXTINF:2525,,1.5. The Parliament of Dreams
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,1.6. Mind War
+#EXTINF:2518,,1.6. Mind War
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,1.7. The War Prayer
+#EXTINF:2516,,1.7. The War Prayer
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,1.8. And the Sky, Full of Stars
+#EXTINF:2524,,1.8. And the Sky, Full of Stars
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,1.9. Deathwalker
+#EXTINF:2515,,1.9. Deathwalker
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,1.10. Believers
+#EXTINF:2526,,1.10. Believers
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,1.11. Survivors
+#EXTINF:2516,,1.11. Survivors
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,1.12. By Any Means Necessary
+#EXTINF:2515,,1.12. By Any Means Necessary
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,1.13. Signs and Portents
+#EXTINF:2511,,1.13. Signs and Portents
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,1.14. TKO
+#EXTINF:2512,,1.14. TKO
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,1.15. Grail
+#EXTINF:2517,,1.15. Grail
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,1.16. Eyes
+#EXTINF:2517,,1.16. Eyes
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,1.17. Legacies
+#EXTINF:2514,,1.17. Legacies
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,1.18. A Voice in the Wilderness (part 1)
+#EXTINF:2515,,1.18. A Voice in the Wilderness (part 1)
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,1.19. A Voice in the Wilderness (part 2)
+#EXTINF:2515,,1.19. A Voice in the Wilderness (part 2)
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,1.20. Babylon Squared
+#EXTINF:2514,,1.20. Babylon Squared
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,1.21. The Quality of Mercy
+#EXTINF:2516,,1.21. The Quality of Mercy
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D06.%20E21%e2%80%9322.iso#1
-#EXTINF:0,,1.22. Chrysalis
+#EXTINF:2516,,1.22. Chrysalis
 dvd:///mnt/dvd/archive/B/Babylon%205/S01D06.%20E21%e2%80%9322.iso#37
 
-#EXTINF:0,,2.1. Points of Departure
+#EXTINF:2518,,2.1. Points of Departure
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.2. Revelations
+#EXTINF:2520,,2.2. Revelations
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,2.3. The Geometry of Shadows
+#EXTINF:2519,,2.3. The Geometry of Shadows
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,2.4. A Distant Star
+#EXTINF:2518,,2.4. A Distant Star
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D01.%20E01%e2%80%9304.iso#10
-#EXTINF:0,,2.5. The Long Dark
+#EXTINF:2518,,2.5. The Long Dark
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.6. Spider in the Web
+#EXTINF:2518,,2.6. Spider in the Web
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,2.7. Soul Mates
+#EXTINF:2519,,2.7. Soul Mates
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D02.%20E05%e2%80%9308.iso#8
-#EXTINF:0,,2.8. A Race Through Dark Places
+#EXTINF:2518,,2.8. A Race Through Dark Places
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D02.%20E05%e2%80%9308.iso#10
-#EXTINF:0,,2.9. The Coming of Shadows
+#EXTINF:2516,,2.9. The Coming of Shadows
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,2.10. GROPOS
+#EXTINF:2519,,2.10. GROPOS
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,2.11. All Alone in the Night
+#EXTINF:2517,,2.11. All Alone in the Night
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D03.%20E09%e2%80%9312.iso#8
-#EXTINF:0,,2.12. Acts of Sacrifice
+#EXTINF:2517,,2.12. Acts of Sacrifice
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D03.%20E09%e2%80%9312.iso#10
-#EXTINF:0,,2.13. Hunter, Prey
+#EXTINF:2518,,2.13. Hunter, Prey
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,2.14. There All the Honor Lies
+#EXTINF:2518,,2.14. There All the Honor Lies
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,2.15. And Now for a Word
+#EXTINF:2518,,2.15. And Now for a Word
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D04.%20E13%e2%80%9316.iso#8
-#EXTINF:0,,2.16. In the Shadow of Z'ha'dum
+#EXTINF:2521,,2.16. In the Shadow of Z'ha'dum
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D04.%20E13%e2%80%9316.iso#10
-#EXTINF:0,,2.17. Knives
+#EXTINF:2519,,2.17. Knives
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,2.18. Confessions and Lamentations
+#EXTINF:2518,,2.18. Confessions and Lamentations
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,2.19. Divided Loyalties
+#EXTINF:2519,,2.19. Divided Loyalties
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D05.%20E17%e2%80%9320.iso#8
-#EXTINF:0,,2.20. The Long, Twilight Struggle
+#EXTINF:2519,,2.20. The Long, Twilight Struggle
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D05.%20E17%e2%80%9320.iso#10
-#EXTINF:0,,2.21. Comes the Inquisitor
+#EXTINF:2520,,2.21. Comes the Inquisitor
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D06.%20E21%e2%80%9322.iso#4
-#EXTINF:0,,2.22. The Fall of Night
+#EXTINF:2520,,2.22. The Fall of Night
 dvd:///mnt/dvd/archive/B/Babylon%205/S02D06.%20E21%e2%80%9322.iso#6
 
-#EXTINF:0,,3.1. Matters of Honor
+#EXTINF:2517,,3.1. Matters of Honor
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,3.2. Convictions
+#EXTINF:2517,,3.2. Convictions
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,3.3. A Day in the Strife
+#EXTINF:2518,,3.3. A Day in the Strife
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,3.4. Passing Through Gethsemane
+#EXTINF:2517,,3.4. Passing Through Gethsemane
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,3.5. Voices of Authority
+#EXTINF:2518,,3.5. Voices of Authority
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,3.6. Dust to Dust
+#EXTINF:2517,,3.6. Dust to Dust
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,3.7. Exogenesis
+#EXTINF:2519,,3.7. Exogenesis
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,3.8. Messages from Earth
+#EXTINF:2517,,3.8. Messages from Earth
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,3.9. Point of No Return
+#EXTINF:2517,,3.9. Point of No Return
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,3.10. Severed Dreams
+#EXTINF:2517,,3.10. Severed Dreams
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,3.11. Ceremonies of Light and Dark
+#EXTINF:2521,,3.11. Ceremonies of Light and Dark
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,3.12. Sic transit Vir
+#EXTINF:2517,,3.12. Sic transit Vir
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,3.13. A Late Delivery from Avalon
+#EXTINF:2518,,3.13. A Late Delivery from Avalon
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,3.14. Ship of Tears
+#EXTINF:2518,,3.14. Ship of Tears
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,3.15. Interludes and Examinations
+#EXTINF:2519,,3.15. Interludes and Examinations
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,3.16. War Without End (part 1)
+#EXTINF:2518,,3.16. War Without End (part 1)
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,3.17. War Without End (part 2)
+#EXTINF:2519,,3.17. War Without End (part 2)
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,3.18. Walkabout
+#EXTINF:2517,,3.18. Walkabout
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,3.19. Grey 17 is Missing
+#EXTINF:2516,,3.19. Grey 17 is Missing
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,3.20. And the Rock Cried Out, No Hiding Place
+#EXTINF:2516,,3.20. And the Rock Cried Out, No Hiding Place
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,3.21. Shadow Dancing
+#EXTINF:2521,,3.21. Shadow Dancing
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D06.%20E21%e2%80%9322.iso#2
-#EXTINF:0,,3.22. Z'ha'dum
+#EXTINF:2519,,3.22. Z'ha'dum
 dvd:///mnt/dvd/archive/B/Babylon%205/S03D06.%20E21%e2%80%9322.iso#3
 
-#EXTINF:0,,4.1. The Hour of the Wolf
+#EXTINF:2515,,4.1. The Hour of the Wolf
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,4.2. Whatever Happened to Mr. Garibaldi?
+#EXTINF:2515,,4.2. Whatever Happened to Mr. Garibaldi?
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,4.3. The Summoning
+#EXTINF:2516,,4.3. The Summoning
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,4.4. Falling Toward Apotheosis
+#EXTINF:2519,,4.4. Falling Toward Apotheosis
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,4.5. The Long Night
+#EXTINF:2518,,4.5. The Long Night
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,4.6. Into the Fire
+#EXTINF:2518,,4.6. Into the Fire
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,4.7. Epiphanies
+#EXTINF:2517,,4.7. Epiphanies
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,4.8. The Illusion of Truth
+#EXTINF:2516,,4.8. The Illusion of Truth
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,4.9. Atonement
+#EXTINF:2516,,4.9. Atonement
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,4.10. Racing Mars
+#EXTINF:2517,,4.10. Racing Mars
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,4.11. Lines of Communication
+#EXTINF:2546,,4.11. Lines of Communication
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,4.12. Conflicts of Interest
+#EXTINF:2545,,4.12. Conflicts of Interest
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,4.13. Rumors, Bargains and Lies
+#EXTINF:2547,,4.13. Rumors, Bargains and Lies
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,4.14. Moments of Transition
+#EXTINF:2546,,4.14. Moments of Transition
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,4.15. No Surrender, No Retreat
+#EXTINF:2547,,4.15. No Surrender, No Retreat
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,4.16. The Exercise of Vital Powers
+#EXTINF:2549,,4.16. The Exercise of Vital Powers
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,4.17. The Face of the Enemy
+#EXTINF:2546,,4.17. The Face of the Enemy
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,4.18. Intersections in Real Time
+#EXTINF:2545,,4.18. Intersections in Real Time
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,4.19. Between the Darkness and the Light
+#EXTINF:2545,,4.19. Between the Darkness and the Light
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,4.20. Endgame
+#EXTINF:2544,,4.20. Endgame
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,4.21. Rising Star
+#EXTINF:2544,,4.21. Rising Star
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D06.%20E21%e2%80%9322.iso#2
-#EXTINF:0,,4.22. The Deconstruction of Falling Stars
+#EXTINF:2544,,4.22. The Deconstruction of Falling Stars
 dvd:///mnt/dvd/archive/B/Babylon%205/S04D06.%20E21%e2%80%9322.iso#3
 
-#EXTINF:0,,5.1. No Compromises
+#EXTINF:2545,,5.1. No Compromises
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,5.2. The Very Long Night of Londo Mollari
+#EXTINF:2546,,5.2. The Very Long Night of Londo Mollari
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,5.3. The Paragon of Animals
+#EXTINF:2547,,5.3. The Paragon of Animals
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,5.4. A View from the Gallery
+#EXTINF:2548,,5.4. A View from the Gallery
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D01.%20E01%e2%80%9304.iso#10
-#EXTINF:0,,5.5. Learning Curve
+#EXTINF:2547,,5.5. Learning Curve
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,5.6. Strange Relations
+#EXTINF:2548,,5.6. Strange Relations
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,5.7. Secrets of the Soul
+#EXTINF:2546,,5.7. Secrets of the Soul
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D02.%20E05%e2%80%9308.iso#8
-#EXTINF:0,,5.8. Day of the Dead
+#EXTINF:2548,,5.8. Day of the Dead
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D02.%20E05%e2%80%9308.iso#10
-#EXTINF:0,,5.9. In the Kingdom of the Blind
+#EXTINF:2546,,5.9. In the Kingdom of the Blind
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,5.10. A Tragedy of Telepaths
+#EXTINF:2547,,5.10. A Tragedy of Telepaths
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,5.11. Phoenix Rising
+#EXTINF:2544,,5.11. Phoenix Rising
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D03.%20E09%e2%80%9312.iso#8
-#EXTINF:0,,5.12. The Ragged Edge
+#EXTINF:2548,,5.12. The Ragged Edge
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D03.%20E09%e2%80%9312.iso#10
-#EXTINF:0,,5.13. The Corps Is Mother, the Corps Is Father
+#EXTINF:2546,,5.13. The Corps Is Mother, the Corps Is Father
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,5.14. Meditations on the Abyss
+#EXTINF:2541,,5.14. Meditations on the Abyss
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,5.15. Darkness Ascending
+#EXTINF:2540,,5.15. Darkness Ascending
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D04.%20E13%e2%80%9316.iso#8
-#EXTINF:0,,5.16. And All My Dreams, Torn Asunder
+#EXTINF:2543,,5.16. And All My Dreams, Torn Asunder
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D04.%20E13%e2%80%9316.iso#10
-#EXTINF:0,,5.17. Movements of Fire and Shadow
+#EXTINF:2543,,5.17. Movements of Fire and Shadow
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,5.18. The Fall of Centauri Prime
+#EXTINF:2322,,5.18. The Fall of Centauri Prime
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,5.19. The Wheel of Fire
+#EXTINF:2548,,5.19. The Wheel of Fire
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D05.%20E17%e2%80%9320.iso#8
-#EXTINF:0,,5.20. Objects in Motion
+#EXTINF:2546,,5.20. Objects in Motion
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D05.%20E17%e2%80%9320.iso#10
-#EXTINF:0,,5.21. Objects at Rest
+#EXTINF:2541,,5.21. Objects at Rest
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D06.%20E21%e2%80%9322.iso#4
-#EXTINF:0,,5.22. Sleeping in Light
+#EXTINF:2539,,5.22. Sleeping in Light
 dvd:///mnt/dvd/archive/B/Babylon%205/S05D06.%20E21%e2%80%9322.iso#6
 
-#EXTINF:0,,Thirdspace
+#EXTINF:5420,,Thirdspace
 dvd:///mnt/dvd/archive/B/Babylon%205%e2%80%94Thirdspace.iso#1
-#EXTINF:0,,The River of Souls
+#EXTINF:5391,,The River of Souls
 dvd:///mnt/dvd/archive/B/Babylon%205%e2%80%94The%20River%20of%20Souls.iso#1
-#EXTINF:0,,A Call to Arms
+#EXTINF:5391,,A Call to Arms
 dvd:///mnt/dvd/archive/B/Babylon%205%e2%80%94A%20Call%20to%20Arms.iso#1
index ef9a498..27fdb3a 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Hi Diddle Riddle
+#EXTINF:1456,,1.1. Hi Diddle Riddle
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D01.%20E01%e2%80%9308.iso#3
-#EXTINF:0,,1.2. Smack in the Middle
+#EXTINF:1453,,1.2. Smack in the Middle
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D01.%20E01%e2%80%9308.iso#4
-#EXTINF:0,,1.3. Fine Feathered Finks
+#EXTINF:1458,,1.3. Fine Feathered Finks
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D01.%20E01%e2%80%9308.iso#5
-#EXTINF:0,,1.4. The Penguin's a Jinx
+#EXTINF:1456,,1.4. The Penguin's a Jinx
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D01.%20E01%e2%80%9308.iso#6
-#EXTINF:0,,1.5. The Joker is Wild
+#EXTINF:1455,,1.5. The Joker is Wild
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D01.%20E01%e2%80%9308.iso#7
-#EXTINF:0,,1.6. Batman is Riled
+#EXTINF:1452,,1.6. Batman is Riled
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D01.%20E01%e2%80%9308.iso#8
-#EXTINF:0,,1.7. Instant Freeze
+#EXTINF:1455,,1.7. Instant Freeze
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D01.%20E01%e2%80%9308.iso#9
-#EXTINF:0,,1.8. Rats Like Cheese
+#EXTINF:1457,,1.8. Rats Like Cheese
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D01.%20E01%e2%80%9308.iso#10
-#EXTINF:0,,1.9. Zelda the Great
+#EXTINF:1457,,1.9. Zelda the Great
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D02.%20E09%e2%80%9316.iso#3
-#EXTINF:0,,1.10. A Death Worse than Fate
+#EXTINF:1457,,1.10. A Death Worse than Fate
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D02.%20E09%e2%80%9316.iso#4
-#EXTINF:0,,1.11. A Riddle a Day Keeps the Riddler Away
+#EXTINF:1455,,1.11. A Riddle a Day Keeps the Riddler Away
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D02.%20E09%e2%80%9316.iso#5
-#EXTINF:0,,1.12. When the Rat's Away the Mice Will Play
+#EXTINF:1454,,1.12. When the Rat's Away the Mice Will Play
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D02.%20E09%e2%80%9316.iso#6
-#EXTINF:0,,1.13. The Thirteenth Hat
+#EXTINF:1454,,1.13. The Thirteenth Hat
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D02.%20E09%e2%80%9316.iso#7
-#EXTINF:0,,1.14. Batman Stands Pat
+#EXTINF:1450,,1.14. Batman Stands Pat
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D02.%20E09%e2%80%9316.iso#8
-#EXTINF:0,,1.15. The Joker Goes to School
+#EXTINF:1456,,1.15. The Joker Goes to School
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D02.%20E09%e2%80%9316.iso#9
-#EXTINF:0,,1.16. He Meets His Match, the Grisly Ghoul
+#EXTINF:1459,,1.16. He Meets His Match, the Grisly Ghoul
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D02.%20E09%e2%80%9316.iso#10
-#EXTINF:0,,1.17. True or False Face
+#EXTINF:1455,,1.17. True or False Face
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D03.%20E17%e2%80%9324.iso#3
-#EXTINF:0,,1.18. Holy Rat Race
+#EXTINF:1455,,1.18. Holy Rat Race
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D03.%20E17%e2%80%9324.iso#4
-#EXTINF:0,,1.19. The Purr-Fect Crime
+#EXTINF:1456,,1.19. The Purr-Fect Crime
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D03.%20E17%e2%80%9324.iso#5
-#EXTINF:0,,1.20. Better Luck Next Time
+#EXTINF:1452,,1.20. Better Luck Next Time
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D03.%20E17%e2%80%9324.iso#6
-#EXTINF:0,,1.21. The Penguin Goes Straight
+#EXTINF:1455,,1.21. The Penguin Goes Straight
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D03.%20E17%e2%80%9324.iso#7
-#EXTINF:0,,1.22. Not Yet, He Ain't
+#EXTINF:1452,,1.22. Not Yet, He Ain't
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D03.%20E17%e2%80%9324.iso#8
-#EXTINF:0,,1.23. The Ring of Wax
+#EXTINF:1456,,1.23. The Ring of Wax
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D03.%20E17%e2%80%9324.iso#9
-#EXTINF:0,,1.24. Give 'Em the Axe
+#EXTINF:1455,,1.24. Give 'Em the Axe
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D03.%20E17%e2%80%9324.iso#10
-#EXTINF:0,,1.25. The Joker Trumps an Ace
+#EXTINF:1456,,1.25. The Joker Trumps an Ace
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D04.%20E25%e2%80%9332.iso#3
-#EXTINF:0,,1.26. Batman Sets the Pace
+#EXTINF:1458,,1.26. Batman Sets the Pace
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D04.%20E25%e2%80%9332.iso#4
-#EXTINF:0,,1.27. The Curse of Tut
+#EXTINF:1457,,1.27. The Curse of Tut
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D04.%20E25%e2%80%9332.iso#5
-#EXTINF:0,,1.28. The Pharaoh's in a Rut
+#EXTINF:1454,,1.28. The Pharaoh's in a Rut
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D04.%20E25%e2%80%9332.iso#6
-#EXTINF:0,,1.29. The Bookworm Turns
+#EXTINF:1455,,1.29. The Bookworm Turns
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D04.%20E25%e2%80%9332.iso#7
-#EXTINF:0,,1.30. While Gotham City Burns
+#EXTINF:1451,,1.30. While Gotham City Burns
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D04.%20E25%e2%80%9332.iso#8
-#EXTINF:0,,1.31. Death in Slow Motion
+#EXTINF:1458,,1.31. Death in Slow Motion
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D04.%20E25%e2%80%9332.iso#9
-#EXTINF:0,,1.32. The Riddler's False Notion
+#EXTINF:1459,,1.32. The Riddler's False Notion
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D04.%20E25%e2%80%9332.iso#10
-#EXTINF:0,,1.33. Fine Finny Fiends
+#EXTINF:1456,,1.33. Fine Finny Fiends
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D05.%20E33%e2%80%9334.iso#3
-#EXTINF:0,,1.34. Batman Makes the Scenes
+#EXTINF:1456,,1.34. Batman Makes the Scenes
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S01D05.%20E33%e2%80%9334.iso#4
 
-#EXTINF:0,,Batman
+#EXTINF:6038,,Batman
 dvd:///mnt/dvd/archive/B/Batman%20%281966%29.iso#1
 
-#EXTINF:0,,2.1. Shoot a Crooked Arrow
+#EXTINF:1424,,2.1. Shoot a Crooked Arrow
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D01.%20E01%e2%80%9308.iso#3
-#EXTINF:0,,2.2. Walk the Straight and Narrow
+#EXTINF:1451,,2.2. Walk the Straight and Narrow
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D01.%20E01%e2%80%9308.iso#4
-#EXTINF:0,,2.3. Hot off the Griddle
+#EXTINF:1456,,2.3. Hot off the Griddle
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D01.%20E01%e2%80%9308.iso#5
-#EXTINF:0,,2.4. The Cat and the Fiddle
+#EXTINF:1452,,2.4. The Cat and the Fiddle
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D01.%20E01%e2%80%9308.iso#6
-#EXTINF:0,,2.5. The Minstrel's Shakedown
+#EXTINF:1455,,2.5. The Minstrel's Shakedown
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D01.%20E01%e2%80%9308.iso#7
-#EXTINF:0,,2.6. Barbecued Batman?
+#EXTINF:1452,,2.6. Barbecued Batman?
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D01.%20E01%e2%80%9308.iso#8
-#EXTINF:0,,2.7. The Spell of Tut
+#EXTINF:1455,,2.7. The Spell of Tut
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D01.%20E01%e2%80%9308.iso#9
-#EXTINF:0,,2.8. Tut's Case Is Shut
+#EXTINF:1452,,2.8. Tut's Case Is Shut
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D01.%20E01%e2%80%9308.iso#10
-#EXTINF:0,,2.9. The Greatest Mother of Them All
+#EXTINF:1456,,2.9. The Greatest Mother of Them All
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D02.%20E09%e2%80%9316.iso#3
-#EXTINF:0,,2.10. Ma Parker
+#EXTINF:1451,,2.10. Ma Parker
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D02.%20E09%e2%80%9316.iso#4
-#EXTINF:0,,2.11. The Clock King's Crazy Crimes
+#EXTINF:1457,,2.11. The Clock King's Crazy Crimes
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D02.%20E09%e2%80%9316.iso#5
-#EXTINF:0,,2.12. The Clock King Gets Crowned
+#EXTINF:1454,,2.12. The Clock King Gets Crowned
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D02.%20E09%e2%80%9316.iso#6
-#EXTINF:0,,2.13. An Egg Grows in Gotham
+#EXTINF:1455,,2.13. An Egg Grows in Gotham
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D02.%20E09%e2%80%9316.iso#7
-#EXTINF:0,,2.14. The Yegg Foes in Gotham
+#EXTINF:1453,,2.14. The Yegg Foes in Gotham
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D02.%20E09%e2%80%9316.iso#8
-#EXTINF:0,,2.15. The Devil's Fingers
+#EXTINF:1456,,2.15. The Devil's Fingers
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D02.%20E09%e2%80%9316.iso#9
-#EXTINF:0,,2.16. The Dead Ringers
+#EXTINF:1457,,2.16. The Dead Ringers
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D02.%20E09%e2%80%9316.iso#10
-#EXTINF:0,,2.17. Hizzoner the Penguin
+#EXTINF:1459,,2.17. Hizzoner the Penguin
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D03.%20E17%e2%80%9324.iso#3
-#EXTINF:0,,2.18. Dizzoner the Penguin
+#EXTINF:1456,,2.18. Dizzoner the Penguin
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D03.%20E17%e2%80%9324.iso#4
-#EXTINF:0,,2.19. Green Ice
+#EXTINF:1455,,2.19. Green Ice
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D03.%20E17%e2%80%9324.iso#5
-#EXTINF:0,,2.20. Deep Freeze
+#EXTINF:1456,,2.20. Deep Freeze
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D03.%20E17%e2%80%9324.iso#6
-#EXTINF:0,,2.21. The Impractical Joker
+#EXTINF:1455,,2.21. The Impractical Joker
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D03.%20E17%e2%80%9324.iso#7
-#EXTINF:0,,2.22. The Joker's Provokers
+#EXTINF:1451,,2.22. The Joker's Provokers
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D03.%20E17%e2%80%9324.iso#8
-#EXTINF:0,,2.23. Marsha, Queen of Diamonds
+#EXTINF:1455,,2.23. Marsha, Queen of Diamonds
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D03.%20E17%e2%80%9324.iso#9
-#EXTINF:0,,2.24. Marsha's Scheme of Diamonds
+#EXTINF:1457,,2.24. Marsha's Scheme of Diamonds
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D03.%20E17%e2%80%9324.iso#10
-#EXTINF:0,,2.25. Come Back, Shame
+#EXTINF:1453,,2.25. Come Back, Shame
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D04.%20E25%e2%80%9330.iso#3
-#EXTINF:0,,2.26. It's How You Play the Game
+#EXTINF:1452,,2.26. It's How You Play the Game
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D04.%20E25%e2%80%9330.iso#4
-#EXTINF:0,,2.27. The Penguin's Nest
+#EXTINF:1460,,2.27. The Penguin's Nest
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D04.%20E25%e2%80%9330.iso#5
-#EXTINF:0,,2.28. The Bird's Last Jest
+#EXTINF:1451,,2.28. The Bird's Last Jest
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D04.%20E25%e2%80%9330.iso#6
-#EXTINF:0,,2.29. The Cat's Meow
+#EXTINF:1457,,2.29. The Cat's Meow
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D04.%20E25%e2%80%9330.iso#7
-#EXTINF:0,,2.30. The Bat's Kow Tow
+#EXTINF:1453,,2.30. The Bat's Kow Tow
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D04.%20E25%e2%80%9330.iso#8
-#EXTINF:0,,2.31. The Puzzles Are Coming
+#EXTINF:1455,,2.31. The Puzzles Are Coming
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D05.%20E31%e2%80%9338.iso#3
-#EXTINF:0,,2.32. The Duo Is Slumming
+#EXTINF:1453,,2.32. The Duo Is Slumming
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D05.%20E31%e2%80%9338.iso#4
-#EXTINF:0,,2.33. The Sandman Cometh
+#EXTINF:1457,,2.33. The Sandman Cometh
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D05.%20E31%e2%80%9338.iso#5
-#EXTINF:0,,2.34. The Catwoman Goeth
+#EXTINF:1451,,2.34. The Catwoman Goeth
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D05.%20E31%e2%80%9338.iso#6
-#EXTINF:0,,2.35. The Contaminated Cowl
+#EXTINF:1455,,2.35. The Contaminated Cowl
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D05.%20E31%e2%80%9338.iso#7
-#EXTINF:0,,2.36. The Mad Hatter Runs Afoul
+#EXTINF:1441,,2.36. The Mad Hatter Runs Afoul
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D05.%20E31%e2%80%9338.iso#8
-#EXTINF:0,,2.37. The Zodiac Crimes
+#EXTINF:1456,,2.37. The Zodiac Crimes
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D05.%20E31%e2%80%9338.iso#9
-#EXTINF:0,,2.38. The Joker's Hard Times
+#EXTINF:1455,,2.38. The Joker's Hard Times
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D05.%20E31%e2%80%9338.iso#10
-#EXTINF:0,,2.39. The Penguin Declines
+#EXTINF:1452,,2.39. The Penguin Declines
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D06.%20E39%e2%80%9346.iso#3
-#EXTINF:0,,2.40. That Darn Catwoman
+#EXTINF:1455,,2.40. That Darn Catwoman
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D06.%20E39%e2%80%9346.iso#4
-#EXTINF:0,,2.41. Scat!  Darn Catwoman
+#EXTINF:1444,,2.41. Scat!  Darn Catwoman
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D06.%20E39%e2%80%9346.iso#5
-#EXTINF:0,,2.42. Penguin Is a Girl's Best Friend
+#EXTINF:1456,,2.42. Penguin Is a Girl's Best Friend
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D06.%20E39%e2%80%9346.iso#6
-#EXTINF:0,,2.43. Penguin Sets a Trend
+#EXTINF:1456,,2.43. Penguin Sets a Trend
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D06.%20E39%e2%80%9346.iso#7
-#EXTINF:0,,2.44. Penguin's Disastrous End
+#EXTINF:1451,,2.44. Penguin's Disastrous End
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D06.%20E39%e2%80%9346.iso#8
-#EXTINF:0,,2.45. Batman's Anniversary
+#EXTINF:1455,,2.45. Batman's Anniversary
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D06.%20E39%e2%80%9346.iso#9
-#EXTINF:0,,2.46. A Riddling Controversy
+#EXTINF:1451,,2.46. A Riddling Controversy
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D06.%20E39%e2%80%9346.iso#10
-#EXTINF:0,,2.47. The Joker's Last Laugh
+#EXTINF:1456,,2.47. The Joker's Last Laugh
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D07.%20E47%e2%80%9354.iso#3
-#EXTINF:0,,2.48. The Joker's Epitaph
+#EXTINF:1450,,2.48. The Joker's Epitaph
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D07.%20E47%e2%80%9354.iso#4
-#EXTINF:0,,2.49. Catwoman Goes to College
+#EXTINF:1455,,2.49. Catwoman Goes to College
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D07.%20E47%e2%80%9354.iso#5
-#EXTINF:0,,2.50. Batman Displays His Knowledge
+#EXTINF:1451,,2.50. Batman Displays His Knowledge
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D07.%20E47%e2%80%9354.iso#6
-#EXTINF:0,,2.51. A Piece of the Action
+#EXTINF:1454,,2.51. A Piece of the Action
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D07.%20E47%e2%80%9354.iso#7
-#EXTINF:0,,2.52. Batman's Satisfaction
+#EXTINF:1449,,2.52. Batman's Satisfaction
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D07.%20E47%e2%80%9354.iso#8
-#EXTINF:0,,2.53. King Tut's Coup
+#EXTINF:1456,,2.53. King Tut's Coup
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D07.%20E47%e2%80%9354.iso#9
-#EXTINF:0,,2.54. Batman's Waterloo
+#EXTINF:1453,,2.54. Batman's Waterloo
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D07.%20E47%e2%80%9354.iso#10
-#EXTINF:0,,2.55. Black Widow Strikes Again
+#EXTINF:1456,,2.55. Black Widow Strikes Again
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D08.%20E55%e2%80%9360.iso#3
-#EXTINF:0,,2.56. Caught in the Spider's Den
+#EXTINF:1451,,2.56. Caught in the Spider's Den
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D08.%20E55%e2%80%9360.iso#4
-#EXTINF:0,,2.57. Pop Goes the Joker
+#EXTINF:1454,,2.57. Pop Goes the Joker
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D08.%20E55%e2%80%9360.iso#5
-#EXTINF:0,,2.58. Flop Goes the Joker
+#EXTINF:1450,,2.58. Flop Goes the Joker
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D08.%20E55%e2%80%9360.iso#6
-#EXTINF:0,,2.59. Ice Spy
+#EXTINF:1453,,2.59. Ice Spy
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D08.%20E55%e2%80%9360.iso#7
-#EXTINF:0,,2.60. The Duo Defy
+#EXTINF:1440,,2.60. The Duo Defy
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S02D08.%20E55%e2%80%9360.iso#8
 
-#EXTINF:0,,3.1. Enter Batgirl, Exit Penguin
+#EXTINF:1454,,3.1. Enter Batgirl, Exit Penguin
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D01.%20E01%e2%80%9308.iso#3
-#EXTINF:0,,3.2. Ring Around the Riddler
+#EXTINF:1455,,3.2. Ring Around the Riddler
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D01.%20E01%e2%80%9308.iso#4
-#EXTINF:0,,3.3. The Wail of the Siren
+#EXTINF:1458,,3.3. The Wail of the Siren
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D01.%20E01%e2%80%9308.iso#5
-#EXTINF:0,,3.4. The Sport of Penguins
+#EXTINF:1455,,3.4. The Sport of Penguins
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D01.%20E01%e2%80%9308.iso#6
-#EXTINF:0,,3.5. A Horse of Another Color
+#EXTINF:1446,,3.5. A Horse of Another Color
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D01.%20E01%e2%80%9308.iso#7
-#EXTINF:0,,3.6. The Unkindest Tut of All
+#EXTINF:1453,,3.6. The Unkindest Tut of All
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D01.%20E01%e2%80%9308.iso#8
-#EXTINF:0,,3.7. Louie, the Lilac
+#EXTINF:1454,,3.7. Louie, the Lilac
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D01.%20E01%e2%80%9308.iso#9
-#EXTINF:0,,3.8. The Ogg and I
+#EXTINF:1455,,3.8. The Ogg and I
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D01.%20E01%e2%80%9308.iso#10
-#EXTINF:0,,3.9. How to Hatch a Dinosaur
+#EXTINF:1456,,3.9. How to Hatch a Dinosaur
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D02.%20E09%e2%80%9316.iso#3
-#EXTINF:0,,3.10. Surf's Up!  Joker's Under!
+#EXTINF:1457,,3.10. Surf's Up!  Joker's Under!
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D02.%20E09%e2%80%9316.iso#4
-#EXTINF:0,,3.11. The Londinium Larcenies
+#EXTINF:1455,,3.11. The Londinium Larcenies
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D02.%20E09%e2%80%9316.iso#5
-#EXTINF:0,,3.12. The Foggiest Notion
+#EXTINF:1455,,3.12. The Foggiest Notion
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D02.%20E09%e2%80%9316.iso#6
-#EXTINF:0,,3.13. The Bloody Tower
+#EXTINF:1455,,3.13. The Bloody Tower
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D02.%20E09%e2%80%9316.iso#7
-#EXTINF:0,,3.14. Catwoman's Dressed to Kill
+#EXTINF:1456,,3.14. Catwoman's Dressed to Kill
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D02.%20E09%e2%80%9316.iso#8
-#EXTINF:0,,3.15. The Ogg Couple
+#EXTINF:1457,,3.15. The Ogg Couple
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D02.%20E09%e2%80%9316.iso#9
-#EXTINF:0,,3.16. The Funny Feline Felonies
+#EXTINF:1455,,3.16. The Funny Feline Felonies
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D02.%20E09%e2%80%9316.iso#10
-#EXTINF:0,,3.17. The Joke's on Catwoman
+#EXTINF:1455,,3.17. The Joke's on Catwoman
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D03.%20E17%e2%80%9324.iso#3
-#EXTINF:0,,3.18. Louie's Lethal Lilac Time
+#EXTINF:1454,,3.18. Louie's Lethal Lilac Time
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D03.%20E17%e2%80%9324.iso#4
-#EXTINF:0,,3.19. Nora Clavicle and the Ladies' Crime Club
+#EXTINF:1453,,3.19. Nora Clavicle and the Ladies' Crime Club
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D03.%20E17%e2%80%9324.iso#5
-#EXTINF:0,,3.20. Penguin's Clean Sweep
+#EXTINF:1453,,3.20. Penguin's Clean Sweep
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D03.%20E17%e2%80%9324.iso#6
-#EXTINF:0,,3.21. The Great Escape
+#EXTINF:1454,,3.21. The Great Escape
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D03.%20E17%e2%80%9324.iso#7
-#EXTINF:0,,3.22. The Great Train Robbery
+#EXTINF:1456,,3.22. The Great Train Robbery
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D03.%20E17%e2%80%9324.iso#8
-#EXTINF:0,,3.23. I'll Be a Mummy's Uncle
+#EXTINF:1455,,3.23. I'll Be a Mummy's Uncle
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D03.%20E17%e2%80%9324.iso#9
-#EXTINF:0,,3.24. The Joker's Flying Saucer
+#EXTINF:1453,,3.24. The Joker's Flying Saucer
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D03.%20E17%e2%80%9324.iso#10
-#EXTINF:0,,3.25. The Entrancing Dr. Cassandra
+#EXTINF:1455,,3.25. The Entrancing Dr. Cassandra
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D04.%20E25%e2%80%9326.iso#3
-#EXTINF:0,,3.26. Minerva, Mayhem and Millionaires
+#EXTINF:1455,,3.26. Minerva, Mayhem and Millionaires
 dvd:///mnt/dvd/archive/B/Batman%20%281966%20series%29/S03D04.%20E25%e2%80%9326.iso#4
index 20034f3..0a1d5df 100644 (file)
@@ -1,79 +1,79 @@
 #EXTM3U
 
-#EXTINF:0,,1.1. Pilot
+#EXTINF:2443,,1.1. Pilot
 dvd:///mnt/dvd/archive/B/Batwoman/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,1.2. The Rabbit Hole
+#EXTINF:2445,,1.2. The Rabbit Hole
 dvd:///mnt/dvd/archive/B/Batwoman/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,1.3. Down Down Down
+#EXTINF:2425,,1.3. Down Down Down
 dvd:///mnt/dvd/archive/B/Batwoman/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,1.4. Who Are You?
+#EXTINF:2419,,1.4. Who Are You?
 dvd:///mnt/dvd/archive/B/Batwoman/S01D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,1.5. Mine Is a Long and a Sad Tale
+#EXTINF:2446,,1.5. Mine Is a Long and a Sad Tale
 dvd:///mnt/dvd/archive/B/Batwoman/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,1.6. I'll Be Judge, I'll Be Jury
+#EXTINF:2423,,1.6. I'll Be Judge, I'll Be Jury
 dvd:///mnt/dvd/archive/B/Batwoman/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,1.7. Tell Me the Truth
+#EXTINF:2443,,1.7. Tell Me the Truth
 dvd:///mnt/dvd/archive/B/Batwoman/S01D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,1.8. A Mad Tea-Party
+#EXTINF:2412,,1.8. A Mad Tea-Party
 dvd:///mnt/dvd/archive/B/Batwoman/S01D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,1.9. Crisis on Infinite Earths (part 2)
+#EXTINF:2449,,1.9. Crisis on Infinite Earths (part 2)
 dvd:///mnt/dvd/archive/B/Batwoman/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,1.10. How Queer Everything Is Today!
+#EXTINF:2432,,1.10. How Queer Everything Is Today!
 dvd:///mnt/dvd/archive/B/Batwoman/S01D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,1.11. An Un-Birthday Present
+#EXTINF:2447,,1.11. An Un-Birthday Present
 dvd:///mnt/dvd/archive/B/Batwoman/S01D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,1.12. Take Your Choice
+#EXTINF:2444,,1.12. Take Your Choice
 dvd:///mnt/dvd/archive/B/Batwoman/S01D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,1.13. Drink Me
+#EXTINF:2445,,1.13. Drink Me
 dvd:///mnt/dvd/archive/B/Batwoman/S01D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,1.14. Grinning from Ear to Ear
+#EXTINF:2446,,1.14. Grinning from Ear to Ear
 dvd:///mnt/dvd/archive/B/Batwoman/S01D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,1.15. Off with Her Head
+#EXTINF:2391,,1.15. Off with Her Head
 dvd:///mnt/dvd/archive/B/Batwoman/S01D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,1.16. Through the Looking-Glass
+#EXTINF:2443,,1.16. Through the Looking-Glass
 dvd:///mnt/dvd/archive/B/Batwoman/S01D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,1.17. A Narrow Escape
+#EXTINF:2446,,1.17. A Narrow Escape
 dvd:///mnt/dvd/archive/B/Batwoman/S01D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,1.18. If You Believe in Me, I'll Believe in You
+#EXTINF:2420,,1.18. If You Believe in Me, I'll Believe in You
 dvd:///mnt/dvd/archive/B/Batwoman/S01D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,1.19. A Secret Kept from All the Rest
+#EXTINF:2432,,1.19. A Secret Kept from All the Rest
 dvd:///mnt/dvd/archive/B/Batwoman/S01D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,1.20. O, Mouse!
+#EXTINF:2446,,1.20. O, Mouse!
 dvd:///mnt/dvd/archive/B/Batwoman/S01D05.%20E17%e2%80%9320.iso#6
 
-#EXTINF:0,,2.1. Whatever Happened to Kate Kane?
+#EXTINF:2437,,2.1. Whatever Happened to Kate Kane?
 dvd:///mnt/dvd/archive/B/Batwoman/S02D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,2.2. Prior Criminal History
+#EXTINF:2350,,2.2. Prior Criminal History
 dvd:///mnt/dvd/archive/B/Batwoman/S02D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,2.3. Bat Girl Magic!
+#EXTINF:2445,,2.3. Bat Girl Magic!
 dvd:///mnt/dvd/archive/B/Batwoman/S02D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,2.4. Fair Skin, Blue Eyes
+#EXTINF:2444,,2.4. Fair Skin, Blue Eyes
 dvd:///mnt/dvd/archive/B/Batwoman/S02D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,2.5. Gore on Canvas
+#EXTINF:2445,,2.5. Gore on Canvas
 dvd:///mnt/dvd/archive/B/Batwoman/S02D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,2.6. Do Not Resuscitate
+#EXTINF:2445,,2.6. Do Not Resuscitate
 dvd:///mnt/dvd/archive/B/Batwoman/S02D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,2.7. It's Best You Stop Digging
+#EXTINF:2445,,2.7. It's Best You Stop Digging
 dvd:///mnt/dvd/archive/B/Batwoman/S02D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,2.8. Survived Much Worse
+#EXTINF:2444,,2.8. Survived Much Worse
 dvd:///mnt/dvd/archive/B/Batwoman/S02D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,2.9. Rule #1
+#EXTINF:2384,,2.9. Rule #1
 dvd:///mnt/dvd/archive/B/Batwoman/S02D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,2.10. Time off for Good Behavior
+#EXTINF:2444,,2.10. Time off for Good Behavior
 dvd:///mnt/dvd/archive/B/Batwoman/S02D02.%20E06%e2%80%9310.iso#7
-#EXTINF:0,,2.11. Arrive Alive
+#EXTINF:2444,,2.11. Arrive Alive
 dvd:///mnt/dvd/archive/B/Batwoman/S02D03.%20E11%e2%80%9314.iso#3
-#EXTINF:0,,2.12. Initiate Self-Destruct
+#EXTINF:2436,,2.12. Initiate Self-Destruct
 dvd:///mnt/dvd/archive/B/Batwoman/S02D03.%20E11%e2%80%9314.iso#4
-#EXTINF:0,,2.13. I'll Give You a Clue
+#EXTINF:2445,,2.13. I'll Give You a Clue
 dvd:///mnt/dvd/archive/B/Batwoman/S02D03.%20E11%e2%80%9314.iso#5
-#EXTINF:0,,2.14. And Justice For All
+#EXTINF:2441,,2.14. And Justice For All
 dvd:///mnt/dvd/archive/B/Batwoman/S02D03.%20E11%e2%80%9314.iso#6
-#EXTINF:0,,2.15. Armed and Dangerous
+#EXTINF:2432,,2.15. Armed and Dangerous
 dvd:///mnt/dvd/archive/B/Batwoman/S02D04.%20E15%e2%80%9318.iso#3
-#EXTINF:0,,2.16. Rebirth
+#EXTINF:2446,,2.16. Rebirth
 dvd:///mnt/dvd/archive/B/Batwoman/S02D04.%20E15%e2%80%9318.iso#4
-#EXTINF:0,,2.17. Kane, Kate
+#EXTINF:2435,,2.17. Kane, Kate
 dvd:///mnt/dvd/archive/B/Batwoman/S02D04.%20E15%e2%80%9318.iso#5
-#EXTINF:0,,2.18. Power
+#EXTINF:2440,,2.18. Power
 dvd:///mnt/dvd/archive/B/Batwoman/S02D04.%20E15%e2%80%9318.iso#6
index e4837a0..4c04cf3 100644 (file)
@@ -1,74 +1,74 @@
 #EXTM3U
 
-#EXTINF:0,,1.1. Private Enterprise
+#EXTINF:2771,,1.1. Private Enterprise
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,1.2. Out of the Game
+#EXTINF:3025,,1.2. Out of the Game
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,1.3. Words of Advice
+#EXTINF:2946,,1.3. Words of Advice
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S01D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,1.4. Lies and Damned Lies
+#EXTINF:3064,,1.4. Lies and Damned Lies
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S01D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,1.5. A Watch and Chain of Course
+#EXTINF:3022,,1.5. A Watch and Chain of Course
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S01D02.%20E05%e2%80%9307.iso#2
-#EXTINF:0,,1.6. Lest Ye Be Judged
+#EXTINF:3066,,1.6. Lest Ye Be Judged
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S01D02.%20E05%e2%80%9307.iso#3
-#EXTINF:0,,1.7. Breaking Point
+#EXTINF:2951,,1.7. Breaking Point
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S01D02.%20E05%e2%80%9307.iso#4
-#EXTINF:0,,1.8. The Only Good Copper
+#EXTINF:3027,,1.8. The Only Good Copper
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S01D03.%20E08%e2%80%9310.iso#4
-#EXTINF:0,,1.9. Watching the Detectives
+#EXTINF:2943,,1.9. Watching the Detectives
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S01D03.%20E08%e2%80%9310.iso#5
-#EXTINF:0,,1.10. Nothing to Declare
+#EXTINF:2917,,1.10. Nothing to Declare
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S01D03.%20E08%e2%80%9310.iso#6
-#EXTINF:0,,1.11. Nothing Personal
+#EXTINF:2892,,1.11. Nothing Personal
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S01D04.%20E11%e2%80%9313.iso#4
-#EXTINF:0,,1.12. Nobody's Fireproof
+#EXTINF:3038,,1.12. Nobody's Fireproof
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S01D04.%20E11%e2%80%9313.iso#5
-#EXTINF:0,,1.13. The Chill Factor
+#EXTINF:2963,,1.13. The Chill Factor
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S01D04.%20E11%e2%80%9313.iso#6
 
-#EXTINF:0,,2.1. New Order
+#EXTINF:2900,,2.1. New Order
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.2. Manslaughter
+#EXTINF:3577,,2.2. Manslaughter
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S02D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,2.3. Crack Up
+#EXTINF:2896,,2.3. Crack Up
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S02D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,2.4. Honourable Men
+#EXTINF:2889,,2.4. Honourable Men
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S02D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,2.5. ‘Some Must Watch…’
+#EXTINF:2986,,2.5. ‘Some Must Watch…’
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.6. Manoeuvre 11
+#EXTINF:3134,,2.6. Manoeuvre 11
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S02D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,2.7. The Fifth Estate
+#EXTINF:2895,,2.7. The Fifth Estate
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S02D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,2.8. The Great Detective
+#EXTINF:2891,,2.8. The Great Detective
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S02D02.%20E05%e2%80%9308.iso#7
-#EXTINF:0,,2.9. Jumping the Lights
+#EXTINF:3006,,2.9. Jumping the Lights
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S02D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,2.10. What's the Strength of This?
+#EXTINF:2927,,2.10. What's the Strength of This?
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S02D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,2.11. Big Boys' Rules (part 1)
+#EXTINF:2992,,2.11. Big Boys' Rules (part 1)
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S02D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,2.12. Big Boys' Rules (part 2)
+#EXTINF:2915,,2.12. Big Boys' Rules (part 2)
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S02D03.%20E09%e2%80%9312.iso#7
 
-#EXTINF:0,,3.1. Foxtrot Oscar
+#EXTINF:3168,,3.1. Foxtrot Oscar
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S03D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,3.2. A Safe Pair of Hands
+#EXTINF:3008,,3.2. A Safe Pair of Hands
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,3.3. A Face in the Crowd
+#EXTINF:2846,,3.3. A Face in the Crowd
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,3.4. Shoot to Kill
+#EXTINF:2969,,3.4. Shoot to Kill
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S03D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,3.5. Close Protection
+#EXTINF:2921,,3.5. Close Protection
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S03D02.%20E05%e2%80%9307.iso#2
-#EXTINF:0,,3.6. Blooded
+#EXTINF:2885,,3.6. Blooded
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S03D02.%20E05%e2%80%9307.iso#3
-#EXTINF:0,,3.7. Unknown Soldier
+#EXTINF:2951,,3.7. Unknown Soldier
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S03D02.%20E05%e2%80%9307.iso#4
-#EXTINF:0,,3.8. Free Trade
+#EXTINF:2945,,3.8. Free Trade
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S03D03.%20E08%e2%80%9310.iso#2
-#EXTINF:0,,3.9. The End User (part 1)
+#EXTINF:3205,,3.9. The End User (part 1)
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S03D03.%20E08%e2%80%9310.iso#3
-#EXTINF:0,,3.10. The End User (part 2)
+#EXTINF:3305,,3.10. The End User (part 2)
 dvd:///mnt/dvd/archive/B/Between%20the%20Lines/S03D03.%20E08%e2%80%9310.iso#4
index 6b32e03..51cf9d4 100644 (file)
@@ -1,62 +1,62 @@
 #EXTM3U
 
-#EXTINF:0,,The Black Adder—1. The Foretelling
+#EXTINF:2011,,The Black Adder—1. The Foretelling
 dvd:///mnt/dvd/archive/B/Blackadder/S01.%20The%20Black%20Adder%e2%80%94E01%e2%80%9306.iso#2
-#EXTINF:0,,The Black Adder—2. Born to be a King
+#EXTINF:2013,,The Black Adder—2. Born to be a King
 dvd:///mnt/dvd/archive/B/Blackadder/S01.%20The%20Black%20Adder%e2%80%94E01%e2%80%9306.iso#3
-#EXTINF:0,,The Black Adder—3. The Archbishop
+#EXTINF:1957,,The Black Adder—3. The Archbishop
 dvd:///mnt/dvd/archive/B/Blackadder/S01.%20The%20Black%20Adder%e2%80%94E01%e2%80%9306.iso#4
-#EXTINF:0,,The Black Adder—4. The Queen of Spain's Beard
+#EXTINF:2030,,The Black Adder—4. The Queen of Spain's Beard
 dvd:///mnt/dvd/archive/B/Blackadder/S01.%20The%20Black%20Adder%e2%80%94E01%e2%80%9306.iso#5
-#EXTINF:0,,The Black Adder—5. Witchsmeller Pursuivant
+#EXTINF:1808,,The Black Adder—5. Witchsmeller Pursuivant
 dvd:///mnt/dvd/archive/B/Blackadder/S01.%20The%20Black%20Adder%e2%80%94E01%e2%80%9306.iso#6
-#EXTINF:0,,The Black Adder—6. The Black Seal
+#EXTINF:1864,,The Black Adder—6. The Black Seal
 dvd:///mnt/dvd/archive/B/Blackadder/S01.%20The%20Black%20Adder%e2%80%94E01%e2%80%9306.iso#7
 
-#EXTINF:0,,Blackadder II—1. Bells
+#EXTINF:1811,,Blackadder II—1. Bells
 dvd:///mnt/dvd/archive/B/Blackadder/S02.%20Blackadder%20II%e2%80%94E01%e2%80%9306.iso#2
-#EXTINF:0,,Blackadder II—2. Head
+#EXTINF:1605,,Blackadder II—2. Head
 dvd:///mnt/dvd/archive/B/Blackadder/S02.%20Blackadder%20II%e2%80%94E01%e2%80%9306.iso#3
-#EXTINF:0,,Blackadder II—3. Potato
+#EXTINF:1803,,Blackadder II—3. Potato
 dvd:///mnt/dvd/archive/B/Blackadder/S02.%20Blackadder%20II%e2%80%94E01%e2%80%9306.iso#4
-#EXTINF:0,,Blackadder II—4. Money
+#EXTINF:1795,,Blackadder II—4. Money
 dvd:///mnt/dvd/archive/B/Blackadder/S02.%20Blackadder%20II%e2%80%94E01%e2%80%9306.iso#5
-#EXTINF:0,,Blackadder II—5. Beer
+#EXTINF:1753,,Blackadder II—5. Beer
 dvd:///mnt/dvd/archive/B/Blackadder/S02.%20Blackadder%20II%e2%80%94E01%e2%80%9306.iso#6
-#EXTINF:0,,Blackadder II—6. Chains
+#EXTINF:1757,,Blackadder II—6. Chains
 dvd:///mnt/dvd/archive/B/Blackadder/S02.%20Blackadder%20II%e2%80%94E01%e2%80%9306.iso#7
 
-#EXTINF:0,,Blackadder the Third—1. Dish and Dishonesty
+#EXTINF:1763,,Blackadder the Third—1. Dish and Dishonesty
 dvd:///mnt/dvd/archive/B/Blackadder/S03.%20Blackadder%20the%20Third%e2%80%94E01%e2%80%9306.iso#2
-#EXTINF:0,,Blackadder the Third—2. Ink and Incapability
+#EXTINF:1757,,Blackadder the Third—2. Ink and Incapability
 dvd:///mnt/dvd/archive/B/Blackadder/S03.%20Blackadder%20the%20Third%e2%80%94E01%e2%80%9306.iso#3
-#EXTINF:0,,Blackadder the Third—3. Nob and Nobility
+#EXTINF:1783,,Blackadder the Third—3. Nob and Nobility
 dvd:///mnt/dvd/archive/B/Blackadder/S03.%20Blackadder%20the%20Third%e2%80%94E01%e2%80%9306.iso#4
-#EXTINF:0,,Blackadder the Third—4. Sense and Senility
+#EXTINF:1596,,Blackadder the Third—4. Sense and Senility
 dvd:///mnt/dvd/archive/B/Blackadder/S03.%20Blackadder%20the%20Third%e2%80%94E01%e2%80%9306.iso#5
-#EXTINF:0,,Blackadder the Third—5. Amy and Amiability
+#EXTINF:1766,,Blackadder the Third—5. Amy and Amiability
 dvd:///mnt/dvd/archive/B/Blackadder/S03.%20Blackadder%20the%20Third%e2%80%94E01%e2%80%9306.iso#6
-#EXTINF:0,,Blackadder the Third—6. Duel and Duality
+#EXTINF:1793,,Blackadder the Third—6. Duel and Duality
 dvd:///mnt/dvd/archive/B/Blackadder/S03.%20Blackadder%20the%20Third%e2%80%94E01%e2%80%9306.iso#7
 
-#EXTINF:0,,Blackadder Goes Forth—1. Captain Cook
+#EXTINF:1755,,Blackadder Goes Forth—1. Captain Cook
 dvd:///mnt/dvd/archive/B/Blackadder/S04.%20Blackadder%20Goes%20Forth%e2%80%94E01%e2%80%9306.iso#1
-#EXTINF:0,,Blackadder Goes Forth—2. Corporal Punishment
+#EXTINF:1767,,Blackadder Goes Forth—2. Corporal Punishment
 dvd:///mnt/dvd/archive/B/Blackadder/S04.%20Blackadder%20Goes%20Forth%e2%80%94E01%e2%80%9306.iso#2
-#EXTINF:0,,Blackadder Goes Forth—3. Major Star
+#EXTINF:1747,,Blackadder Goes Forth—3. Major Star
 dvd:///mnt/dvd/archive/B/Blackadder/S04.%20Blackadder%20Goes%20Forth%e2%80%94E01%e2%80%9306.iso#3
-#EXTINF:0,,Blackadder Goes Forth—4. Private Plane
+#EXTINF:1740,,Blackadder Goes Forth—4. Private Plane
 dvd:///mnt/dvd/archive/B/Blackadder/S04.%20Blackadder%20Goes%20Forth%e2%80%94E01%e2%80%9306.iso#4
-#EXTINF:0,,Blackadder Goes Forth—5. General Hospital
+#EXTINF:1687,,Blackadder Goes Forth—5. General Hospital
 dvd:///mnt/dvd/archive/B/Blackadder/S04.%20Blackadder%20Goes%20Forth%e2%80%94E01%e2%80%9306.iso#5
-#EXTINF:0,,Blackadder Goes Forth—6. Goodbyeee
+#EXTINF:1765,,Blackadder Goes Forth—6. Goodbyeee
 dvd:///mnt/dvd/archive/B/Blackadder/S04.%20Blackadder%20Goes%20Forth%e2%80%94E01%e2%80%9306.iso#6
 
-#EXTINF:0,,The Cavalier Years
+#EXTINF:903,,The Cavalier Years
 dvd:///mnt/dvd/archive/B/Blackadder%e2%80%94Back%20and%20Forth.iso#3
-#EXTINF:0,,Blackadder's Christmas Carol
+#EXTINF:2599,,Blackadder's Christmas Carol
 dvd:///mnt/dvd/archive/B/Blackadder%27s%20Christmas%20Carol.iso#1
-#EXTINF:0,,Back and Forth
+#EXTINF:2020,,Back and Forth
 dvd:///mnt/dvd/archive/B/Blackadder%e2%80%94Back%20and%20Forth.iso#1
-#EXTINF:0,,Baldrick's Video Diary
+#EXTINF:1782,,Baldrick's Video Diary
 dvd:///mnt/dvd/archive/B/Blackadder%e2%80%94Back%20and%20Forth.iso#2
index 6277ce1..7c76812 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. The Way Back
+#EXTINF:2948,,1.1. The Way Back
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S01D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,1.2. Space Fall
+#EXTINF:3130,,1.2. Space Fall
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S01D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,1.3. Cygnus Alpha
+#EXTINF:3111,,1.3. Cygnus Alpha
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S01D01.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,1.4. Time Squad
+#EXTINF:3084,,1.4. Time Squad
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S01D02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,1.5. The Web
+#EXTINF:2980,,1.5. The Web
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S01D02.%20E04%e2%80%9306.iso#5
-#EXTINF:0,,1.6. Seek-Locate-Destroy
+#EXTINF:3081,,1.6. Seek-Locate-Destroy
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S01D02.%20E04%e2%80%9306.iso#6
-#EXTINF:0,,1.7. Mission to Destiny
+#EXTINF:3063,,1.7. Mission to Destiny
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S01D03.%20E07%e2%80%9309.iso#5
-#EXTINF:0,,1.8. Duel
+#EXTINF:3074,,1.8. Duel
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S01D03.%20E07%e2%80%9309.iso#6
-#EXTINF:0,,1.9. Project Avalon
+#EXTINF:3151,,1.9. Project Avalon
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S01D03.%20E07%e2%80%9309.iso#7
-#EXTINF:0,,1.10. Breakdown
+#EXTINF:3083,,1.10. Breakdown
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S01D04.%20E10%e2%80%9312.iso#4
-#EXTINF:0,,1.11. Bounty
+#EXTINF:3117,,1.11. Bounty
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S01D04.%20E10%e2%80%9312.iso#5
-#EXTINF:0,,1.12. Deliverance
+#EXTINF:2952,,1.12. Deliverance
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S01D04.%20E10%e2%80%9312.iso#6
-#EXTINF:0,,1.13. Orac
+#EXTINF:3109,,1.13. Orac
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S01D05.%20E13.iso#15
 
-#EXTINF:0,,2.1. Redemption
+#EXTINF:2980,,2.1. Redemption
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S02D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,2.2. Shadow
+#EXTINF:3031,,2.2. Shadow
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S02D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,2.3. Weapon
+#EXTINF:3103,,2.3. Weapon
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S02D01.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,2.4. Horizon
+#EXTINF:3030,,2.4. Horizon
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S02D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,2.5. Pressure Point
+#EXTINF:2964,,2.5. Pressure Point
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S02D02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,2.6. Trial
+#EXTINF:3082,,2.6. Trial
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S02D02.%20E04%e2%80%9306.iso#5
-#EXTINF:0,,2.7. Killer
+#EXTINF:3072,,2.7. Killer
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S02D03.%20E07%e2%80%9309.iso#3
-#EXTINF:0,,2.8. Hostage
+#EXTINF:3066,,2.8. Hostage
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S02D03.%20E07%e2%80%9309.iso#4
-#EXTINF:0,,2.9. Countdown
+#EXTINF:3066,,2.9. Countdown
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S02D03.%20E07%e2%80%9309.iso#5
-#EXTINF:0,,2.10. Voice from the Past
+#EXTINF:2916,,2.10. Voice from the Past
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S02D04.%20E10%e2%80%9312.iso#3
-#EXTINF:0,,2.11. Gambit
+#EXTINF:3110,,2.11. Gambit
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S02D04.%20E10%e2%80%9312.iso#4
-#EXTINF:0,,2.12. The Keeper
+#EXTINF:3079,,2.12. The Keeper
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S02D04.%20E10%e2%80%9312.iso#5
-#EXTINF:0,,2.13. Star One
+#EXTINF:2901,,2.13. Star One
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S02D05.%20E13.iso#3
 
-#EXTINF:0,,3.1. Aftermath
+#EXTINF:3109,,3.1. Aftermath
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S03D01.%20E01%e2%80%9303.iso#7
-#EXTINF:0,,3.2. Powerplay
+#EXTINF:3035,,3.2. Powerplay
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S03D01.%20E01%e2%80%9303.iso#9
-#EXTINF:0,,3.3. Volcano
+#EXTINF:3099,,3.3. Volcano
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S03D01.%20E01%e2%80%9303.iso#8
-#EXTINF:0,,3.4. Dawn of the Gods
+#EXTINF:3057,,3.4. Dawn of the Gods
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S03D02.%20E04%e2%80%9306.iso#7
-#EXTINF:0,,3.5. The Harvest of Kairos
+#EXTINF:3089,,3.5. The Harvest of Kairos
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S03D02.%20E04%e2%80%9306.iso#9
-#EXTINF:0,,3.6. City at the Edge of the World
+#EXTINF:3093,,3.6. City at the Edge of the World
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S03D02.%20E04%e2%80%9306.iso#8
-#EXTINF:0,,3.7. Children of Auron
+#EXTINF:2924,,3.7. Children of Auron
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S03D03.%20E07%e2%80%9309.iso#7
-#EXTINF:0,,3.8. Rumours of Death
+#EXTINF:3061,,3.8. Rumours of Death
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S03D03.%20E07%e2%80%9309.iso#12
-#EXTINF:0,,3.9. Sarcophagus
+#EXTINF:3110,,3.9. Sarcophagus
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S03D03.%20E07%e2%80%9309.iso#8
-#EXTINF:0,,3.10. Ultraworld
+#EXTINF:2941,,3.10. Ultraworld
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S03D04.%20E10%e2%80%9312.iso#7
-#EXTINF:0,,3.11. Moloch
+#EXTINF:3089,,3.11. Moloch
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S03D04.%20E10%e2%80%9312.iso#8
-#EXTINF:0,,3.12. Death-Watch
+#EXTINF:3064,,3.12. Death-Watch
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S03D04.%20E10%e2%80%9312.iso#11
-#EXTINF:0,,3.13. Terminal
+#EXTINF:3241,,3.13. Terminal
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S03D05.%20E13.iso#3
 
-#EXTINF:0,,4.1. Rescue
+#EXTINF:2994,,4.1. Rescue
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S04D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,4.2. Power
+#EXTINF:3000,,4.2. Power
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S04D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,4.3. Traitor
+#EXTINF:2964,,4.3. Traitor
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S04D01.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,4.4. Stardrive
+#EXTINF:2945,,4.4. Stardrive
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S04D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,4.5. Animals
+#EXTINF:3001,,4.5. Animals
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S04D02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,4.6. Headhunter
+#EXTINF:2975,,4.6. Headhunter
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S04D02.%20E04%e2%80%9306.iso#5
-#EXTINF:0,,4.7. Assassin
+#EXTINF:2974,,4.7. Assassin
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S04D03.%20E07%e2%80%9309.iso#3
-#EXTINF:0,,4.8. Games
+#EXTINF:2971,,4.8. Games
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S04D03.%20E07%e2%80%9309.iso#4
-#EXTINF:0,,4.9. Sand
+#EXTINF:2934,,4.9. Sand
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S04D03.%20E07%e2%80%9309.iso#5
-#EXTINF:0,,4.10. Gold
+#EXTINF:2913,,4.10. Gold
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S04D04.%20E10%e2%80%9312.iso#3
-#EXTINF:0,,4.11. Orbit
+#EXTINF:2919,,4.11. Orbit
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S04D04.%20E10%e2%80%9312.iso#4
-#EXTINF:0,,4.12. Warlord
+#EXTINF:2952,,4.12. Warlord
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S04D04.%20E10%e2%80%9312.iso#5
-#EXTINF:0,,4.13. Blake
+#EXTINF:2983,,4.13. Blake
 dvd:///mnt/dvd/archive/B/Blake%27s%207/S04D05.%20E13.iso#8
index c12e854..6c2f009 100644 (file)
@@ -1,34 +1,34 @@
 #EXTM3U
 
-#EXTINF:0,,Animals
+#EXTINF:1428,,Animals
 dvd:///mnt/dvd/archive/B/Brass%20Eye.iso#24
-#EXTINF:0,,Drugs
+#EXTINF:1468,,Drugs
 dvd:///mnt/dvd/archive/B/Brass%20Eye.iso#67
-#EXTINF:0,,Science
+#EXTINF:1447,,Science
 dvd:///mnt/dvd/archive/B/Brass%20Eye.iso#78
-#EXTINF:0,,Sex
+#EXTINF:1300,,Sex
 dvd:///mnt/dvd/archive/B/Brass%20Eye.iso#92
-#EXTINF:0,,Crime
+#EXTINF:1493,,Crime
 dvd:///mnt/dvd/archive/B/Brass%20Eye.iso#96
-#EXTINF:0,,Decline
+#EXTINF:1410,,Decline
 dvd:///mnt/dvd/archive/B/Brass%20Eye.iso#99
-#EXTINF:0,,Pædophilia special
+#EXTINF:1636,,Pædophilia special
 dvd:///mnt/dvd/archive/B/Brass%20Eye.iso#46
-#EXTINF:0,,Hippo interview
+#EXTINF:97,,Hippo interview
 dvd:///mnt/dvd/archive/B/Brass%20Eye.iso#25
-#EXTINF:0,,Extended elephant
+#EXTINF:83,,Extended elephant
 dvd:///mnt/dvd/archive/B/Brass%20Eye.iso#26
-#EXTINF:0,,Science 30"
+#EXTINF:33,,Science 30"
 dvd:///mnt/dvd/archive/B/Brass%20Eye.iso#29
-#EXTINF:0,,Special 24"
+#EXTINF:28,,Special 24"
 dvd:///mnt/dvd/archive/B/Brass%20Eye.iso#28
-#EXTINF:0,,Special 10"
+#EXTINF:16,,Special 10"
 dvd:///mnt/dvd/archive/B/Brass%20Eye.iso#27
-#EXTINF:0,,JLb-8: Little White Butt
+#EXTINF:61,,JLb-8: Little White Butt
 dvd:///mnt/dvd/archive/B/Brass%20Eye.iso#49
-#EXTINF:0,,Funny Eyed Guy
+#EXTINF:42,,Funny Eyed Guy
 dvd:///mnt/dvd/archive/B/Brass%20Eye.iso#51
-#EXTINF:0,,Cake Music
+#EXTINF:50,,Cake Music
 dvd:///mnt/dvd/archive/B/Brass%20Eye.iso#50
-#EXTINF:0,,Blouse: Me Oh Myra
+#EXTINF:62,,Blouse: Me Oh Myra
 dvd:///mnt/dvd/archive/B/Brass%20Eye.iso#48
index 72b2cd5..9739f62 100644 (file)
@@ -1,44 +1,44 @@
 #EXTM3U
 
-#EXTINF:0,,1–3. Saga of a Star World
+#EXTINF:8005,,1–3. Saga of a Star World
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,4. The Lost Planet of the Gods (part 1)
+#EXTINF:2806,,4. The Lost Planet of the Gods (part 1)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,5. The Lost Planet of the Gods (part 2)
+#EXTINF:2797,,5. The Lost Planet of the Gods (part 2)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,6. The Lost Warrior
+#EXTINF:2802,,6. The Lost Warrior
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,7. The Long Patrol
+#EXTINF:2807,,7. The Long Patrol
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,8. The Gun on Ice Planet Zero (part 1)
+#EXTINF:2791,,8. The Gun on Ice Planet Zero (part 1)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,9. The Gun on Ice Planet Zero (part 2)
+#EXTINF:2780,,9. The Gun on Ice Planet Zero (part 2)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,10. The Magnificent Warriors
+#EXTINF:2807,,10. The Magnificent Warriors
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,11. The Young Lords
+#EXTINF:2748,,11. The Young Lords
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,12. The Living Legend (part 1)
+#EXTINF:2806,,12. The Living Legend (part 1)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,13. The Living Legend (part 2)
+#EXTINF:2806,,13. The Living Legend (part 2)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,14. Fire in Space
+#EXTINF:2809,,14. Fire in Space
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,15. War of the Gods (part 1)
+#EXTINF:2805,,15. War of the Gods (part 1)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,16. War of the Gods (part 2)
+#EXTINF:2806,,16. War of the Gods (part 2)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,17. The Man with Nine Lives
+#EXTINF:2838,,17. The Man with Nine Lives
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,18. Murder on the Rising Star
+#EXTINF:2818,,18. Murder on the Rising Star
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,19, 20. Greetings from Earth (parts 1 & 2)
+#EXTINF:5612,,19, 20. Greetings from Earth (parts 1 & 2)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,21. Baltar's Escape
+#EXTINF:2805,,21. Baltar's Escape
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/06.%20E21%e2%80%9324.iso#1
-#EXTINF:0,,22. Experiment in Terra
+#EXTINF:2806,,22. Experiment in Terra
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/06.%20E21%e2%80%9324.iso#2
-#EXTINF:0,,23. Take the Celestra
+#EXTINF:2811,,23. Take the Celestra
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/06.%20E21%e2%80%9324.iso#3
-#EXTINF:0,,24. The Hand of God
+#EXTINF:2806,,24. The Hand of God
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%281978%29/06.%20E21%e2%80%9324.iso#4
index 8c02947..fe7acd5 100644 (file)
@@ -1,22 +1,22 @@
 #EXTM3U
 
-#EXTINF:0,,1. Galactica Discovers Earth (part 1)
+#EXTINF:2799,,1. Galactica Discovers Earth (part 1)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%201980/01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,2. Galactica Discovers Earth (part 2)
+#EXTINF:2796,,2. Galactica Discovers Earth (part 2)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%201980/01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,3. Galactica Discovers Earth (part 3)
+#EXTINF:2800,,3. Galactica Discovers Earth (part 3)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%201980/01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,4. The Super Scouts (part 1)
+#EXTINF:2758,,4. The Super Scouts (part 1)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%201980/01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,5. The Super Scouts (part 2)
+#EXTINF:2768,,5. The Super Scouts (part 2)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%201980/01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,6. Spaceball
+#EXTINF:2768,,6. Spaceball
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%201980/01.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,7. The Night the Cylons Landed (part 1)
+#EXTINF:2732,,7. The Night the Cylons Landed (part 1)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%201980/01.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,8. The Night the Cylons Landed (part 2)
+#EXTINF:2731,,8. The Night the Cylons Landed (part 2)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%201980/01.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,9. Space Croppers
+#EXTINF:2730,,9. Space Croppers
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%201980/01.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,10. The Return of Starbuck
+#EXTINF:2771,,10. The Return of Starbuck
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%201980/01.%20E06%e2%80%9310.iso#7
index 996e53f..30c229a 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,Miniseries
+#EXTINF:10507,,Miniseries
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S00.%20Miniseries.iso#1
 
-#EXTINF:0,,1.1. 33
+#EXTINF:2575,,1.1. 33
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S01D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,1.2. Water
+#EXTINF:2513,,1.2. Water
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S01D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,1.3. Bastille Day
+#EXTINF:2520,,1.3. Bastille Day
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,1.4. Act of Contrition
+#EXTINF:2509,,1.4. Act of Contrition
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,1.5. You Can't Go Home Again
+#EXTINF:2517,,1.5. You Can't Go Home Again
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S01D02.%20E05%e2%80%9307.iso#1
-#EXTINF:0,,1.6. Litmus
+#EXTINF:2519,,1.6. Litmus
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S01D02.%20E05%e2%80%9307.iso#2
-#EXTINF:0,,1.7. Six Degrees of Separation
+#EXTINF:2520,,1.7. Six Degrees of Separation
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S01D02.%20E05%e2%80%9307.iso#3
-#EXTINF:0,,1.8. Flesh and Bone
+#EXTINF:2516,,1.8. Flesh and Bone
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S01D03.%20E08%e2%80%9310.iso#1
-#EXTINF:0,,1.9. Tigh Me Up, Tigh Me Down
+#EXTINF:2517,,1.9. Tigh Me Up, Tigh Me Down
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S01D03.%20E08%e2%80%9310.iso#2
-#EXTINF:0,,1.10. The Hand of God
+#EXTINF:2519,,1.10. The Hand of God
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S01D03.%20E08%e2%80%9310.iso#3
-#EXTINF:0,,1.11. Colonial Day
+#EXTINF:2517,,1.11. Colonial Day
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S01D04.%20E11%e2%80%9313.iso#1
-#EXTINF:0,,1.12. Kobol's Last Gleaming (part 1)
+#EXTINF:2519,,1.12. Kobol's Last Gleaming (part 1)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S01D04.%20E11%e2%80%9313.iso#2
-#EXTINF:0,,1.13. Kobol's Last Gleaming (part 2)
+#EXTINF:2517,,1.13. Kobol's Last Gleaming (part 2)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S01D04.%20E11%e2%80%9313.iso#3
 
-#EXTINF:0,,2.1. Scattered
+#EXTINF:2511,,2.1. Scattered
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S02D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,2.2. Valley of Darkness
+#EXTINF:2504,,2.2. Valley of Darkness
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,2.3. Fragged
+#EXTINF:2516,,2.3. Fragged
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.4. Resistance
+#EXTINF:2517,,2.4. Resistance
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S02D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,2.5. The Farm
+#EXTINF:2512,,2.5. The Farm
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S02D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,2.6. Home (part 1)
+#EXTINF:2515,,2.6. Home (part 1)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,2.7. Home (part 2)
+#EXTINF:2515,,2.7. Home (part 2)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.8. Final Cut
+#EXTINF:2518,,2.8. Final Cut
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S02D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,2.9. Flight of the Phoenix
+#EXTINF:2516,,2.9. Flight of the Phoenix
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S02D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,2.10. Pegasus
+#EXTINF:3387,,2.10. Pegasus
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S02D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,2.11. Resurrection Ship (part 1)
+#EXTINF:2514,,2.11. Resurrection Ship (part 1)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S02D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,2.12. Resurrection Ship (part 2)
+#EXTINF:2516,,2.12. Resurrection Ship (part 2)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S02D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,2.13. Epiphanies
+#EXTINF:2518,,2.13. Epiphanies
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S02D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,2.14. Black Market
+#EXTINF:2516,,2.14. Black Market
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S02D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,2.15. Scar
+#EXTINF:2528,,2.15. Scar
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S02D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,2.16. Sacrifice
+#EXTINF:2564,,2.16. Sacrifice
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S02D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,2.17. The Captain's Hand
+#EXTINF:2518,,2.17. The Captain's Hand
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S02D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,2.18. Downloaded
+#EXTINF:2492,,2.18. Downloaded
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S02D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,2.19. Lay Down Your Burdens (part 1)
+#EXTINF:2515,,2.19. Lay Down Your Burdens (part 1)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S02D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,2.20. Lay Down Your Burdens (part 2)
+#EXTINF:3905,,2.20. Lay Down Your Burdens (part 2)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S02D05.%20E17%e2%80%9320.iso#5
 
-#EXTINF:0,,3.1. Occupation
+#EXTINF:2591,,3.1. Occupation
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,3.2. Precipice
+#EXTINF:2587,,3.2. Precipice
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,3.3. Exodus (part 1)
+#EXTINF:2513,,3.3. Exodus (part 1)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S03D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,3.4. Exodus (part 2)
+#EXTINF:2510,,3.4. Exodus (part 2)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S03D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,3.5. Collaborators
+#EXTINF:2524,,3.5. Collaborators
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,3.6. Torn
+#EXTINF:2524,,3.6. Torn
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,3.7. A Measure of Salvation
+#EXTINF:2464,,3.7. A Measure of Salvation
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S03D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,3.8. Hero
+#EXTINF:2599,,3.8. Hero
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S03D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,3.9. Unfinished Business
+#EXTINF:2519,,3.9. Unfinished Business
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S03D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,3.10. The Passage
+#EXTINF:2520,,3.10. The Passage
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S03D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,3.11. The Eye of Jupiter
+#EXTINF:2516,,3.11. The Eye of Jupiter
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S03D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,3.12. Rapture
+#EXTINF:2518,,3.12. Rapture
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S03D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,3.13. Taking a Break from All Your Worries
+#EXTINF:2517,,3.13. Taking a Break from All Your Worries
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S03D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,3.14. The Woman King
+#EXTINF:2520,,3.14. The Woman King
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S03D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,3.15. A Day in the Life
+#EXTINF:2510,,3.15. A Day in the Life
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S03D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,3.16. Dirty Hands
+#EXTINF:2517,,3.16. Dirty Hands
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S03D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,3.17. Maelstrom
+#EXTINF:2513,,3.17. Maelstrom
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S03D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,3.18. The Son Also Rises
+#EXTINF:2569,,3.18. The Son Also Rises
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S03D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,3.19. Crossroads (part 1)
+#EXTINF:2570,,3.19. Crossroads (part 1)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S03D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,3.20. Crossroads (part 2)
+#EXTINF:2755,,3.20. Crossroads (part 2)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S03D05.%20E17%e2%80%9320.iso#6
 
-#EXTINF:0,,Razor
+#EXTINF:5970,,Razor
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S04D01.%20Razor.iso#2
 
-#EXTINF:0,,Razor Flashbacks—Episode 1
+#EXTINF:146,,Razor Flashbacks—Episode 1
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S04D01.%20Razor.iso#21
-#EXTINF:0,,Razor Flashbacks—Episode 2
+#EXTINF:145,,Razor Flashbacks—Episode 2
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S04D01.%20Razor.iso#22
-#EXTINF:0,,Razor Flashbacks—Episode 3
+#EXTINF:146,,Razor Flashbacks—Episode 3
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S04D01.%20Razor.iso#23
-#EXTINF:0,,Razor Flashbacks—Episode 4
+#EXTINF:146,,Razor Flashbacks—Episode 4
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S04D01.%20Razor.iso#24
-#EXTINF:0,,Razor Flashbacks—Episode 5
+#EXTINF:146,,Razor Flashbacks—Episode 5
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S04D01.%20Razor.iso#25
-#EXTINF:0,,Razor Flashbacks—Episode 6
+#EXTINF:117,,Razor Flashbacks—Episode 6
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S04D01.%20Razor.iso#26
-#EXTINF:0,,Razor Flashbacks—Episode 7
+#EXTINF:261,,Razor Flashbacks—Episode 7
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S04D01.%20Razor.iso#27
 
-#EXTINF:0,,4.1. He that Believeth in Me
+#EXTINF:2514,,4.1. He that Believeth in Me
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S04D02.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,4.2. Six of One
+#EXTINF:2499,,4.2. Six of One
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S04D02.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,4.3. The Ties that Bind
+#EXTINF:2520,,4.3. The Ties that Bind
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S04D02.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,4.4. Escape Velocity
+#EXTINF:2517,,4.4. Escape Velocity
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S04D02.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,4.5. The Road Less Traveled
+#EXTINF:2514,,4.5. The Road Less Traveled
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S04D03.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,4.6. Faith
+#EXTINF:2520,,4.6. Faith
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S04D03.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,4.7. Guess What's Coming to Dinner?
+#EXTINF:2519,,4.7. Guess What's Coming to Dinner?
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S04D03.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,4.8. Sine qua non
+#EXTINF:2517,,4.8. Sine qua non
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S04D03.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,4.9. The Hub
+#EXTINF:2523,,4.9. The Hub
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S04D04.%20E09%e2%80%9310.iso#3
-#EXTINF:0,,4.10. Revelations
+#EXTINF:2522,,4.10. Revelations
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S04D04.%20E09%e2%80%9310.iso#4
 
-#EXTINF:0,,5.1. Sometimes a Great Notion
+#EXTINF:2687,,5.1. Sometimes a Great Notion
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S05D01.%20E01%e2%80%9304.iso#16
-#EXTINF:0,,5.2. A Disquiet Follows My Soul
+#EXTINF:3054,,5.2. A Disquiet Follows My Soul
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S05D04.%20Extras.iso#17
-#EXTINF:0,,5.3. The Oath
+#EXTINF:2514,,5.3. The Oath
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S05D01.%20E01%e2%80%9304.iso#18
-#EXTINF:0,,5.4. Blood on the Scales
+#EXTINF:2516,,5.4. Blood on the Scales
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S05D01.%20E01%e2%80%9304.iso#19
-#EXTINF:0,,5.5. No Exit
+#EXTINF:2518,,5.5. No Exit
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S05D02.%20E05%e2%80%9308.iso#25
-#EXTINF:0,,5.6. Deadlock
+#EXTINF:2512,,5.6. Deadlock
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S05D02.%20E05%e2%80%9308.iso#17
-#EXTINF:0,,5.7. Someone to Watch over Me
+#EXTINF:2527,,5.7. Someone to Watch over Me
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S05D02.%20E05%e2%80%9308.iso#18
-#EXTINF:0,,5.8. Islanded in a Stream of Stars
+#EXTINF:2523,,5.8. Islanded in a Stream of Stars
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S05D02.%20E05%e2%80%9308.iso#19
-#EXTINF:0,,5.9. Daybreak (part 1)
+#EXTINF:2516,,5.9. Daybreak (part 1)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S05D03.%20E09%e2%80%9310.iso#17
-#EXTINF:0,,5.10. Daybreak (parts 2&3)
+#EXTINF:5546,,5.10. Daybreak (parts 2&3)
 dvd:///mnt/dvd/archive/B/Battlestar%20Galactica%20%282003%29/S05D03.%20E09%e2%80%9310.iso#18
index 6cf9aaa..c1160b0 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Welcome to the Hellmouth
+#EXTINF:2490,,1.1. Welcome to the Hellmouth
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,1.2. The Harvest
+#EXTINF:2581,,1.2. The Harvest
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,1.3. Witch
+#EXTINF:2583,,1.3. Witch
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,1.4. Teacher's Pet
+#EXTINF:2586,,1.4. Teacher's Pet
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,1.5. Never Kill a Boy on the First Date
+#EXTINF:2583,,1.5. Never Kill a Boy on the First Date
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,1.6. The Pack
+#EXTINF:2584,,1.6. The Pack
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,1.7. Angel
+#EXTINF:2591,,1.7. Angel
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,1.8. I, Robot… You, Jane
+#EXTINF:2582,,1.8. I, Robot… You, Jane
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,1.9. The Puppet Show
+#EXTINF:2582,,1.9. The Puppet Show
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,1.10. Nightmares
+#EXTINF:2583,,1.10. Nightmares
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,1.11. Out of Mind, Out of Sight
+#EXTINF:2577,,1.11. Out of Mind, Out of Sight
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,1.12. Prophecy Girl
+#EXTINF:2608,,1.12. Prophecy Girl
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D03.%20E09%e2%80%9312.iso#4
 
-#EXTINF:0,,2.1. When She Was Bad
+#EXTINF:2568,,2.1. When She Was Bad
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,2.2. Some Assembly Required
+#EXTINF:2537,,2.2. Some Assembly Required
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,2.3. School Hard
+#EXTINF:2573,,2.3. School Hard
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,2.4. Inca Mummy Girl
+#EXTINF:2575,,2.4. Inca Mummy Girl
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.5. Reptile Boy
+#EXTINF:2529,,2.5. Reptile Boy
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,2.6. Halloween
+#EXTINF:2529,,2.6. Halloween
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,2.7. Lie to Me
+#EXTINF:2576,,2.7. Lie to Me
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,2.8. The Dark Age
+#EXTINF:2573,,2.8. The Dark Age
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.9. What's My Line (part 1)
+#EXTINF:2527,,2.9. What's My Line (part 1)
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,2.10. What's My Line (part 2)
+#EXTINF:2487,,2.10. What's My Line (part 2)
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,2.11. Ted
+#EXTINF:2579,,2.11. Ted
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,2.12. Bad Eggs
+#EXTINF:2548,,2.12. Bad Eggs
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,2.13. Surprise
+#EXTINF:2558,,2.13. Surprise
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,2.14. Innocence
+#EXTINF:2546,,2.14. Innocence
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,2.15. Phases
+#EXTINF:2533,,2.15. Phases
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,2.16. Bewitched, Bothered and Bewildered
+#EXTINF:2573,,2.16. Bewitched, Bothered and Bewildered
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,2.17. Passion
+#EXTINF:2501,,2.17. Passion
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,2.18. Killed by Death
+#EXTINF:2480,,2.18. Killed by Death
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,2.19. I Only Have Eyes for You
+#EXTINF:2556,,2.19. I Only Have Eyes for You
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,2.20. Go Fish
+#EXTINF:2464,,2.20. Go Fish
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,2.21. Becoming (part 1)
+#EXTINF:2542,,2.21. Becoming (part 1)
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D06.%20E21%e2%80%9322.iso#1
-#EXTINF:0,,2.22. Becoming (part 2)
+#EXTINF:2536,,2.22. Becoming (part 2)
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D06.%20E21%e2%80%9322.iso#2
 
-#EXTINF:0,,3.1. Anne
+#EXTINF:2583,,3.1. Anne
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,3.2. Dead Man's Party
+#EXTINF:2576,,3.2. Dead Man's Party
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,3.3. Faith, Hope & Trick
+#EXTINF:2582,,3.3. Faith, Hope & Trick
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,3.4. Beauty and the Beasts
+#EXTINF:2585,,3.4. Beauty and the Beasts
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,3.5. Homecoming
+#EXTINF:2580,,3.5. Homecoming
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,3.6. Band Candy
+#EXTINF:2556,,3.6. Band Candy
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,3.7. Revelations
+#EXTINF:2582,,3.7. Revelations
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,3.8. Lovers Walk
+#EXTINF:2584,,3.8. Lovers Walk
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,3.9. The Wish
+#EXTINF:2573,,3.9. The Wish
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,3.10. Amends
+#EXTINF:2613,,3.10. Amends
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,3.11. Gingerbread
+#EXTINF:2553,,3.11. Gingerbread
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,3.12. Helpless
+#EXTINF:2574,,3.12. Helpless
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,3.13. The Zeppo
+#EXTINF:2555,,3.13. The Zeppo
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,3.14. Bad Girls
+#EXTINF:2562,,3.14. Bad Girls
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,3.15. Consequences
+#EXTINF:2548,,3.15. Consequences
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,3.16. Doppelgangland
+#EXTINF:2584,,3.16. Doppelgangland
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,3.17. Enemies
+#EXTINF:2584,,3.17. Enemies
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,3.18. Earshot
+#EXTINF:2570,,3.18. Earshot
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,3.19. Choices
+#EXTINF:2526,,3.19. Choices
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,3.20. The Prom
+#EXTINF:2559,,3.20. The Prom
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D06.%20E20%e2%80%9322.iso#1
-#EXTINF:0,,3.21. Graduation Day (part 1)
+#EXTINF:2569,,3.21. Graduation Day (part 1)
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,3.22. Graduation Day (part 2)
+#EXTINF:2561,,3.22. Graduation Day (part 2)
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D06.%20E20%e2%80%9322.iso#3
 
-#EXTINF:0,,4.1. The Freshman
+#EXTINF:2557,,4.1. The Freshman
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,4.2. Living Conditions
+#EXTINF:2465,,4.2. Living Conditions
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,4.3. The Harsh Light of Day
+#EXTINF:2545,,4.3. The Harsh Light of Day
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,4.4. Fear, Itself
+#EXTINF:2449,,4.4. Fear, Itself
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,4.5. Beer Bad
+#EXTINF:2500,,4.5. Beer Bad
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,4.6. Wild at Heart
+#EXTINF:2525,,4.6. Wild at Heart
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,4.7. The Initiative
+#EXTINF:2560,,4.7. The Initiative
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,4.8. Pangs
+#EXTINF:2563,,4.8. Pangs
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,4.9. Something Blue
+#EXTINF:2561,,4.9. Something Blue
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,4.10. Hush
+#EXTINF:2562,,4.10. Hush
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,4.11. Doomed
+#EXTINF:2559,,4.11. Doomed
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,4.12. A New Man
+#EXTINF:2562,,4.12. A New Man
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,4.13. The I in Team
+#EXTINF:2562,,4.13. The I in Team
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,4.14. Goodbye Iowa
+#EXTINF:2521,,4.14. Goodbye Iowa
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,4.15. This Year's Girl
+#EXTINF:2506,,4.15. This Year's Girl
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,4.16. Who Are You
+#EXTINF:2565,,4.16. Who Are You
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,4.17. Superstar
+#EXTINF:2562,,4.17. Superstar
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,4.18. Where the Wild Things Are
+#EXTINF:2564,,4.18. Where the Wild Things Are
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,4.19. New Moon Rising
+#EXTINF:2562,,4.19. New Moon Rising
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,4.20. The Yoko Factor
+#EXTINF:2536,,4.20. The Yoko Factor
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D06.%20E20%e2%80%9322.iso#1
-#EXTINF:0,,4.21. Primeval
+#EXTINF:2534,,4.21. Primeval
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,4.22. Restless
+#EXTINF:2561,,4.22. Restless
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D06.%20E20%e2%80%9322.iso#3
 
-#EXTINF:0,,5.1. Buffy vs. Dracula
+#EXTINF:2505,,5.1. Buffy vs. Dracula
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,5.2. Real Me
+#EXTINF:2486,,5.2. Real Me
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,5.3. The Replacement
+#EXTINF:2564,,5.3. The Replacement
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,5.4. Out of My Mind
+#EXTINF:2548,,5.4. Out of My Mind
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,5.5. No Place Like Home
+#EXTINF:2563,,5.5. No Place Like Home
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,5.6. Family
+#EXTINF:2564,,5.6. Family
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,5.7. Fool for Love
+#EXTINF:2564,,5.7. Fool for Love
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,5.8. Shadow
+#EXTINF:2506,,5.8. Shadow
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,5.9. Listening to Fear
+#EXTINF:2533,,5.9. Listening to Fear
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,5.10. Into the Woods
+#EXTINF:2563,,5.10. Into the Woods
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,5.11. Triangle
+#EXTINF:2543,,5.11. Triangle
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,5.12. Checkpoint
+#EXTINF:2560,,5.12. Checkpoint
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,5.13. Blood Ties
+#EXTINF:2563,,5.13. Blood Ties
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,5.14. Crush
+#EXTINF:2561,,5.14. Crush
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,5.15. I Was Made to Love You
+#EXTINF:2529,,5.15. I Was Made to Love You
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,5.16. The Body
+#EXTINF:2558,,5.16. The Body
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,5.17. Forever
+#EXTINF:2562,,5.17. Forever
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,5.18. Intervention
+#EXTINF:2561,,5.18. Intervention
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,5.19. Tough Love
+#EXTINF:2564,,5.19. Tough Love
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,5.20. Spiral
+#EXTINF:2562,,5.20. Spiral
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D06.%20E20%e2%80%9322.iso#1
-#EXTINF:0,,5.21. The Weight of the World
+#EXTINF:2562,,5.21. The Weight of the World
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,5.22. The Gift
+#EXTINF:2562,,5.22. The Gift
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D06.%20E20%e2%80%9322.iso#3
 
-#EXTINF:0,,6.1, 2. Bargaining
+#EXTINF:5127,,6.1, 2. Bargaining
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,6.3. After Life
+#EXTINF:2491,,6.3. After Life
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,6.4. Flooded
+#EXTINF:2491,,6.4. Flooded
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,6.5. Life Serial
+#EXTINF:2492,,6.5. Life Serial
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,6.6. All the Way
+#EXTINF:2493,,6.6. All the Way
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,6.7. Once More, with Feeling
+#EXTINF:2913,,6.7. Once More, with Feeling
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,6.8. Tabula rasa
+#EXTINF:2492,,6.8. Tabula rasa
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,6.9. Smashed
+#EXTINF:2487,,6.9. Smashed
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,6.10. Wrecked
+#EXTINF:2491,,6.10. Wrecked
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,6.11. Gone
+#EXTINF:2495,,6.11. Gone
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,6.12. Doublemeat Palace
+#EXTINF:2493,,6.12. Doublemeat Palace
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,6.13. Dead Things
+#EXTINF:2493,,6.13. Dead Things
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,6.14. Older and Far Away
+#EXTINF:2492,,6.14. Older and Far Away
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,6.15. As You Were
+#EXTINF:2493,,6.15. As You Were
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,6.16. Hell's Bells
+#EXTINF:2494,,6.16. Hell's Bells
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,6.17. Normal Again
+#EXTINF:2493,,6.17. Normal Again
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,6.18. Entropy
+#EXTINF:2493,,6.18. Entropy
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,6.19. Seeing Red
+#EXTINF:2493,,6.19. Seeing Red
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,6.20. Villains
+#EXTINF:2436,,6.20. Villains
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D06.%20E20%e2%80%9322.iso#1
-#EXTINF:0,,6.21. Two to Go
+#EXTINF:2474,,6.21. Two to Go
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,6.22. Grave
+#EXTINF:2493,,6.22. Grave
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D06.%20E20%e2%80%9322.iso#3
 
-#EXTINF:0,,7.1. Lessons
+#EXTINF:2403,,7.1. Lessons
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,7.2. Beneath You
+#EXTINF:2457,,7.2. Beneath You
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,7.3. Same Time, Same Place
+#EXTINF:2459,,7.3. Same Time, Same Place
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,7.4. Help
+#EXTINF:2458,,7.4. Help
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,7.5. Selfless
+#EXTINF:2459,,7.5. Selfless
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,7.6. Him
+#EXTINF:2459,,7.6. Him
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,7.7. Conversations with Dead People
+#EXTINF:2457,,7.7. Conversations with Dead People
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,7.8. Sleeper
+#EXTINF:2458,,7.8. Sleeper
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,7.9. Never Leave Me
+#EXTINF:2402,,7.9. Never Leave Me
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,7.10. Bring on the Night
+#EXTINF:2458,,7.10. Bring on the Night
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,7.11. Showtime
+#EXTINF:2459,,7.11. Showtime
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,7.12. Potential
+#EXTINF:2458,,7.12. Potential
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,7.13. The Killer in Me
+#EXTINF:2459,,7.13. The Killer in Me
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,7.14. First Date
+#EXTINF:2459,,7.14. First Date
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,7.15. Get It Done
+#EXTINF:2461,,7.15. Get It Done
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,7.16. Storyteller
+#EXTINF:2459,,7.16. Storyteller
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,7.17. Lies My Parents Told Me
+#EXTINF:2462,,7.17. Lies My Parents Told Me
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,7.18. Dirty Girls
+#EXTINF:2457,,7.18. Dirty Girls
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,7.19. Empty Places
+#EXTINF:2458,,7.19. Empty Places
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,7.20. Touched
+#EXTINF:2458,,7.20. Touched
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D06.%20E20%e2%80%9322.iso#1
-#EXTINF:0,,7.21. End of Days
+#EXTINF:2459,,7.21. End of Days
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,7.22. Chosen
+#EXTINF:2518,,7.22. Chosen
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D06.%20E20%e2%80%9322.iso#3
index fc42d21..c6dd59a 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,Buffy the Vampire Slayer 1.1. Welcome to the Hellmouth
+#EXTINF:2490,,Buffy the Vampire Slayer 1.1. Welcome to the Hellmouth
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 1.2. The Harvest
+#EXTINF:2581,,Buffy the Vampire Slayer 1.2. The Harvest
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 1.3. Witch
+#EXTINF:2583,,Buffy the Vampire Slayer 1.3. Witch
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 1.4. Teacher's Pet
+#EXTINF:2586,,Buffy the Vampire Slayer 1.4. Teacher's Pet
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 1.5. Never Kill a Boy on the First Date
+#EXTINF:2583,,Buffy the Vampire Slayer 1.5. Never Kill a Boy on the First Date
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 1.6. The Pack
+#EXTINF:2584,,Buffy the Vampire Slayer 1.6. The Pack
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 1.7. Angel
+#EXTINF:2591,,Buffy the Vampire Slayer 1.7. Angel
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 1.8. I, Robot… You, Jane
+#EXTINF:2582,,Buffy the Vampire Slayer 1.8. I, Robot… You, Jane
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 1.9. The Puppet Show
+#EXTINF:2582,,Buffy the Vampire Slayer 1.9. The Puppet Show
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 1.10. Nightmares
+#EXTINF:2583,,Buffy the Vampire Slayer 1.10. Nightmares
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 1.11. Out of Mind, Out of Sight
+#EXTINF:2577,,Buffy the Vampire Slayer 1.11. Out of Mind, Out of Sight
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 1.12. Prophecy Girl
+#EXTINF:2608,,Buffy the Vampire Slayer 1.12. Prophecy Girl
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S01D03.%20E09%e2%80%9312.iso#4
 
-#EXTINF:0,,Buffy the Vampire Slayer 2.1. When She Was Bad
+#EXTINF:2568,,Buffy the Vampire Slayer 2.1. When She Was Bad
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 2.2. Some Assembly Required
+#EXTINF:2537,,Buffy the Vampire Slayer 2.2. Some Assembly Required
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 2.3. School Hard
+#EXTINF:2573,,Buffy the Vampire Slayer 2.3. School Hard
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 2.4. Inca Mummy Girl
+#EXTINF:2575,,Buffy the Vampire Slayer 2.4. Inca Mummy Girl
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 2.5. Reptile Boy
+#EXTINF:2529,,Buffy the Vampire Slayer 2.5. Reptile Boy
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 2.6. Halloween
+#EXTINF:2529,,Buffy the Vampire Slayer 2.6. Halloween
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 2.7. Lie to Me
+#EXTINF:2576,,Buffy the Vampire Slayer 2.7. Lie to Me
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 2.8. The Dark Age
+#EXTINF:2573,,Buffy the Vampire Slayer 2.8. The Dark Age
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 2.9. What's My Line (part 1)
+#EXTINF:2527,,Buffy the Vampire Slayer 2.9. What's My Line (part 1)
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 2.10. What's My Line (part 2)
+#EXTINF:2487,,Buffy the Vampire Slayer 2.10. What's My Line (part 2)
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 2.11. Ted
+#EXTINF:2579,,Buffy the Vampire Slayer 2.11. Ted
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 2.12. Bad Eggs
+#EXTINF:2548,,Buffy the Vampire Slayer 2.12. Bad Eggs
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 2.13. Surprise
+#EXTINF:2558,,Buffy the Vampire Slayer 2.13. Surprise
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 2.14. Innocence
+#EXTINF:2546,,Buffy the Vampire Slayer 2.14. Innocence
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 2.15. Phases
+#EXTINF:2533,,Buffy the Vampire Slayer 2.15. Phases
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 2.16. Bewitched, Bothered and Bewildered
+#EXTINF:2573,,Buffy the Vampire Slayer 2.16. Bewitched, Bothered and Bewildered
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 2.17. Passion
+#EXTINF:2501,,Buffy the Vampire Slayer 2.17. Passion
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 2.18. Killed by Death
+#EXTINF:2480,,Buffy the Vampire Slayer 2.18. Killed by Death
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 2.19. I Only Have Eyes for You
+#EXTINF:2556,,Buffy the Vampire Slayer 2.19. I Only Have Eyes for You
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 2.20. Go Fish
+#EXTINF:2464,,Buffy the Vampire Slayer 2.20. Go Fish
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 2.21. Becoming (part 1)
+#EXTINF:2542,,Buffy the Vampire Slayer 2.21. Becoming (part 1)
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D06.%20E21%e2%80%9322.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 2.22. Becoming (part 2)
+#EXTINF:2536,,Buffy the Vampire Slayer 2.22. Becoming (part 2)
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S02D06.%20E21%e2%80%9322.iso#2
 
-#EXTINF:0,,Buffy the Vampire Slayer 3.1. Anne
+#EXTINF:2583,,Buffy the Vampire Slayer 3.1. Anne
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 3.2. Dead Man's Party
+#EXTINF:2576,,Buffy the Vampire Slayer 3.2. Dead Man's Party
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 3.3. Faith, Hope & Trick
+#EXTINF:2582,,Buffy the Vampire Slayer 3.3. Faith, Hope & Trick
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 3.4. Beauty and the Beasts
+#EXTINF:2585,,Buffy the Vampire Slayer 3.4. Beauty and the Beasts
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 3.5. Homecoming
+#EXTINF:2580,,Buffy the Vampire Slayer 3.5. Homecoming
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 3.6. Band Candy
+#EXTINF:2556,,Buffy the Vampire Slayer 3.6. Band Candy
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 3.7. Revelations
+#EXTINF:2582,,Buffy the Vampire Slayer 3.7. Revelations
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 3.8. Lovers Walk
+#EXTINF:2584,,Buffy the Vampire Slayer 3.8. Lovers Walk
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 3.9. The Wish
+#EXTINF:2573,,Buffy the Vampire Slayer 3.9. The Wish
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 3.10. Amends
+#EXTINF:2613,,Buffy the Vampire Slayer 3.10. Amends
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 3.11. Gingerbread
+#EXTINF:2553,,Buffy the Vampire Slayer 3.11. Gingerbread
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 3.12. Helpless
+#EXTINF:2574,,Buffy the Vampire Slayer 3.12. Helpless
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 3.13. The Zeppo
+#EXTINF:2555,,Buffy the Vampire Slayer 3.13. The Zeppo
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 3.14. Bad Girls
+#EXTINF:2562,,Buffy the Vampire Slayer 3.14. Bad Girls
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 3.15. Consequences
+#EXTINF:2548,,Buffy the Vampire Slayer 3.15. Consequences
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 3.16. Doppelgangland
+#EXTINF:2584,,Buffy the Vampire Slayer 3.16. Doppelgangland
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 3.17. Enemies
+#EXTINF:2584,,Buffy the Vampire Slayer 3.17. Enemies
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 3.18. Earshot
+#EXTINF:2570,,Buffy the Vampire Slayer 3.18. Earshot
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 3.19. Choices
+#EXTINF:2526,,Buffy the Vampire Slayer 3.19. Choices
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 3.20. The Prom
+#EXTINF:2559,,Buffy the Vampire Slayer 3.20. The Prom
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D06.%20E20%e2%80%9322.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 3.21. Graduation Day (part 1)
+#EXTINF:2569,,Buffy the Vampire Slayer 3.21. Graduation Day (part 1)
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 3.22. Graduation Day (part 2)
+#EXTINF:2561,,Buffy the Vampire Slayer 3.22. Graduation Day (part 2)
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S03D06.%20E20%e2%80%9322.iso#3
 
-#EXTINF:0,,Buffy the Vampire Slayer 4.1. The Freshman
+#EXTINF:2557,,Buffy the Vampire Slayer 4.1. The Freshman
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,Angel 1.1. City of
+#EXTINF:2552,,Angel 1.1. City of
 dvd:///mnt/dvd/archive/A/Angel/S01D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 4.2. Living Conditions
+#EXTINF:2465,,Buffy the Vampire Slayer 4.2. Living Conditions
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Angel 1.2. Lonely Hearts
+#EXTINF:2511,,Angel 1.2. Lonely Hearts
 dvd:///mnt/dvd/archive/A/Angel/S01D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 4.3. The Harsh Light of Day
+#EXTINF:2545,,Buffy the Vampire Slayer 4.3. The Harsh Light of Day
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Angel 1.3. In the Dark
+#EXTINF:2438,,Angel 1.3. In the Dark
 dvd:///mnt/dvd/archive/A/Angel/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 4.4. Fear, Itself
+#EXTINF:2449,,Buffy the Vampire Slayer 4.4. Fear, Itself
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Angel 1.4. I Fall to Pieces
+#EXTINF:2466,,Angel 1.4. I Fall to Pieces
 dvd:///mnt/dvd/archive/A/Angel/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 4.5. Beer Bad
+#EXTINF:2500,,Buffy the Vampire Slayer 4.5. Beer Bad
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,Angel 1.5. Rm w/a Vu
+#EXTINF:2477,,Angel 1.5. Rm w/a Vu
 dvd:///mnt/dvd/archive/A/Angel/S01D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 4.6. Wild at Heart
+#EXTINF:2525,,Buffy the Vampire Slayer 4.6. Wild at Heart
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Angel 1.6. Sense & Sensitivity
+#EXTINF:2409,,Angel 1.6. Sense & Sensitivity
 dvd:///mnt/dvd/archive/A/Angel/S01D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 4.7. The Initiative
+#EXTINF:2560,,Buffy the Vampire Slayer 4.7. The Initiative
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Angel 1.7. Bachelor Party
+#EXTINF:2534,,Angel 1.7. Bachelor Party
 dvd:///mnt/dvd/archive/A/Angel/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 4.8. Pangs
+#EXTINF:2563,,Buffy the Vampire Slayer 4.8. Pangs
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Angel 1.8. I Will Remember You
+#EXTINF:2554,,Angel 1.8. I Will Remember You
 dvd:///mnt/dvd/archive/A/Angel/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 4.9. Something Blue
+#EXTINF:2561,,Buffy the Vampire Slayer 4.9. Something Blue
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,Angel 1.9. Hero
+#EXTINF:2457,,Angel 1.9. Hero
 dvd:///mnt/dvd/archive/A/Angel/S01D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 4.10. Hush
+#EXTINF:2562,,Buffy the Vampire Slayer 4.10. Hush
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,Angel 1.10. Parting Gifts
+#EXTINF:2432,,Angel 1.10. Parting Gifts
 dvd:///mnt/dvd/archive/A/Angel/S01D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 4.11. Doomed
+#EXTINF:2559,,Buffy the Vampire Slayer 4.11. Doomed
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,Angel 1.11. Somnambulist
+#EXTINF:2420,,Angel 1.11. Somnambulist
 dvd:///mnt/dvd/archive/A/Angel/S01D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 4.12. A New Man
+#EXTINF:2562,,Buffy the Vampire Slayer 4.12. A New Man
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,Angel 1.12. Expecting
+#EXTINF:2450,,Angel 1.12. Expecting
 dvd:///mnt/dvd/archive/A/Angel/S01D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 4.13. The I in Team
+#EXTINF:2562,,Buffy the Vampire Slayer 4.13. The I in Team
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,Angel 1.13. She
+#EXTINF:2539,,Angel 1.13. She
 dvd:///mnt/dvd/archive/A/Angel/S01D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 4.14. Goodbye Iowa
+#EXTINF:2521,,Buffy the Vampire Slayer 4.14. Goodbye Iowa
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,Angel 1.14. I've Got You Under My Skin
+#EXTINF:2526,,Angel 1.14. I've Got You Under My Skin
 dvd:///mnt/dvd/archive/A/Angel/S01D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,Angel 1.15. The Prodigal
+#EXTINF:2318,,Angel 1.15. The Prodigal
 dvd:///mnt/dvd/archive/A/Angel/S01D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 4.15. This Year's Girl
+#EXTINF:2506,,Buffy the Vampire Slayer 4.15. This Year's Girl
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 4.16. Who Are You
+#EXTINF:2565,,Buffy the Vampire Slayer 4.16. Who Are You
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,Angel 1.16. The Ring
+#EXTINF:2454,,Angel 1.16. The Ring
 dvd:///mnt/dvd/archive/A/Angel/S01D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 4.17. Superstar
+#EXTINF:2562,,Buffy the Vampire Slayer 4.17. Superstar
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,Angel 1.17. Eternity
+#EXTINF:2525,,Angel 1.17. Eternity
 dvd:///mnt/dvd/archive/A/Angel/S01D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 4.18. Where the Wild Things Are
+#EXTINF:2564,,Buffy the Vampire Slayer 4.18. Where the Wild Things Are
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 4.19. New Moon Rising
+#EXTINF:2562,,Buffy the Vampire Slayer 4.19. New Moon Rising
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,Angel 1.18. Five By Five
+#EXTINF:2457,,Angel 1.18. Five By Five
 dvd:///mnt/dvd/archive/A/Angel/S01D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,Angel 1.19. Sanctuary
+#EXTINF:2416,,Angel 1.19. Sanctuary
 dvd:///mnt/dvd/archive/A/Angel/S01D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 4.20. The Yoko Factor
+#EXTINF:2536,,Buffy the Vampire Slayer 4.20. The Yoko Factor
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D06.%20E20%e2%80%9322.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 4.21. Primeval
+#EXTINF:2534,,Buffy the Vampire Slayer 4.21. Primeval
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 4.22. Restless
+#EXTINF:2561,,Buffy the Vampire Slayer 4.22. Restless
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S04D06.%20E20%e2%80%9322.iso#3
-#EXTINF:0,,Angel 1.20. War Zone
+#EXTINF:2390,,Angel 1.20. War Zone
 dvd:///mnt/dvd/archive/A/Angel/S01D06.%20E20%e2%80%9322.iso#1
-#EXTINF:0,,Angel 1.21. Blind Date
+#EXTINF:2492,,Angel 1.21. Blind Date
 dvd:///mnt/dvd/archive/A/Angel/S01D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,Angel 1.22. To Shanshu in L.A.
+#EXTINF:2479,,Angel 1.22. To Shanshu in L.A.
 dvd:///mnt/dvd/archive/A/Angel/S01D06.%20E20%e2%80%9322.iso#3
 
-#EXTINF:0,,Angel 2.1. Judgment
+#EXTINF:2505,,Angel 2.1. Judgment
 dvd:///mnt/dvd/archive/A/Angel/S02D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 5.1. Buffy vs. Dracula
+#EXTINF:2505,,Buffy the Vampire Slayer 5.1. Buffy vs. Dracula
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,Angel 2.2. Are You Now or Have You Ever Been
+#EXTINF:2561,,Angel 2.2. Are You Now or Have You Ever Been
 dvd:///mnt/dvd/archive/A/Angel/S02D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 5.2. Real Me
+#EXTINF:2486,,Buffy the Vampire Slayer 5.2. Real Me
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Angel 2.3. First Impressions
+#EXTINF:2398,,Angel 2.3. First Impressions
 dvd:///mnt/dvd/archive/A/Angel/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 5.3. The Replacement
+#EXTINF:2564,,Buffy the Vampire Slayer 5.3. The Replacement
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Angel 2.4. Untouched
+#EXTINF:2563,,Angel 2.4. Untouched
 dvd:///mnt/dvd/archive/A/Angel/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 5.4. Out of My Mind
+#EXTINF:2548,,Buffy the Vampire Slayer 5.4. Out of My Mind
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Angel 2.5. Dear Boy
+#EXTINF:2564,,Angel 2.5. Dear Boy
 dvd:///mnt/dvd/archive/A/Angel/S02D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 5.5. No Place Like Home
+#EXTINF:2563,,Buffy the Vampire Slayer 5.5. No Place Like Home
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,Angel 2.6. Guise Will Be Guise
+#EXTINF:2482,,Angel 2.6. Guise Will Be Guise
 dvd:///mnt/dvd/archive/A/Angel/S02D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 5.6. Family
+#EXTINF:2564,,Buffy the Vampire Slayer 5.6. Family
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Angel 2.7. Darla
+#EXTINF:2563,,Angel 2.7. Darla
 dvd:///mnt/dvd/archive/A/Angel/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 5.7. Fool for Love
+#EXTINF:2564,,Buffy the Vampire Slayer 5.7. Fool for Love
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Angel 2.8. The Shroud of Rahmon
+#EXTINF:2482,,Angel 2.8. The Shroud of Rahmon
 dvd:///mnt/dvd/archive/A/Angel/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 5.8. Shadow
+#EXTINF:2506,,Buffy the Vampire Slayer 5.8. Shadow
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Angel 2.9. The Trial
+#EXTINF:2458,,Angel 2.9. The Trial
 dvd:///mnt/dvd/archive/A/Angel/S02D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 5.9. Listening to Fear
+#EXTINF:2533,,Buffy the Vampire Slayer 5.9. Listening to Fear
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,Angel 2.10. Reunion
+#EXTINF:2405,,Angel 2.10. Reunion
 dvd:///mnt/dvd/archive/A/Angel/S02D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 5.10. Into the Woods
+#EXTINF:2563,,Buffy the Vampire Slayer 5.10. Into the Woods
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,Angel 2.11. Redefinition
+#EXTINF:2478,,Angel 2.11. Redefinition
 dvd:///mnt/dvd/archive/A/Angel/S02D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 5.11. Triangle
+#EXTINF:2543,,Buffy the Vampire Slayer 5.11. Triangle
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,Angel 2.12. Blood Money
+#EXTINF:2463,,Angel 2.12. Blood Money
 dvd:///mnt/dvd/archive/A/Angel/S02D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 5.12. Checkpoint
+#EXTINF:2560,,Buffy the Vampire Slayer 5.12. Checkpoint
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,Angel 2.13. Happy Anniversary
+#EXTINF:2480,,Angel 2.13. Happy Anniversary
 dvd:///mnt/dvd/archive/A/Angel/S02D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 5.13. Blood Ties
+#EXTINF:2563,,Buffy the Vampire Slayer 5.13. Blood Ties
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,Angel 2.14. The Thin Dead Line
+#EXTINF:2492,,Angel 2.14. The Thin Dead Line
 dvd:///mnt/dvd/archive/A/Angel/S02D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 5.14. Crush
+#EXTINF:2561,,Buffy the Vampire Slayer 5.14. Crush
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,Angel 2.15. Reprise
+#EXTINF:2560,,Angel 2.15. Reprise
 dvd:///mnt/dvd/archive/A/Angel/S02D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,Angel 2.16. Epiphany
+#EXTINF:2563,,Angel 2.16. Epiphany
 dvd:///mnt/dvd/archive/A/Angel/S02D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 5.15. I Was Made to Love You
+#EXTINF:2529,,Buffy the Vampire Slayer 5.15. I Was Made to Love You
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 5.16. The Body
+#EXTINF:2558,,Buffy the Vampire Slayer 5.16. The Body
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,Angel 2.17. Disharmony
+#EXTINF:2511,,Angel 2.17. Disharmony
 dvd:///mnt/dvd/archive/A/Angel/S02D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 5.17. Forever
+#EXTINF:2562,,Buffy the Vampire Slayer 5.17. Forever
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,Angel 2.18. Dead End
+#EXTINF:2529,,Angel 2.18. Dead End
 dvd:///mnt/dvd/archive/A/Angel/S02D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 5.18. Intervention
+#EXTINF:2561,,Buffy the Vampire Slayer 5.18. Intervention
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,Angel 2.19. Belonging
+#EXTINF:2393,,Angel 2.19. Belonging
 dvd:///mnt/dvd/archive/A/Angel/S02D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 5.19. Tough Love
+#EXTINF:2564,,Buffy the Vampire Slayer 5.19. Tough Love
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 5.20. Spiral
+#EXTINF:2562,,Buffy the Vampire Slayer 5.20. Spiral
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D06.%20E20%e2%80%9322.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 5.21. The Weight of the World
+#EXTINF:2562,,Buffy the Vampire Slayer 5.21. The Weight of the World
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 5.22. The Gift
+#EXTINF:2562,,Buffy the Vampire Slayer 5.22. The Gift
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S05D06.%20E20%e2%80%9322.iso#3
-#EXTINF:0,,Angel 2.20. Over the Rainbow
+#EXTINF:2507,,Angel 2.20. Over the Rainbow
 dvd:///mnt/dvd/archive/A/Angel/S02D06.%20E20%e2%80%9322.iso#1
-#EXTINF:0,,Angel 2.21. Through the Looking Glass
+#EXTINF:2561,,Angel 2.21. Through the Looking Glass
 dvd:///mnt/dvd/archive/A/Angel/S02D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,Angel 2.22. There's No Place Like Plrtz Glrb
+#EXTINF:2563,,Angel 2.22. There's No Place Like Plrtz Glrb
 dvd:///mnt/dvd/archive/A/Angel/S02D06.%20E20%e2%80%9322.iso#3
 
-#EXTINF:0,,Angel 3.1. Heartthrob
+#EXTINF:2436,,Angel 3.1. Heartthrob
 dvd:///mnt/dvd/archive/A/Angel/S03D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,Angel 3.2. That Vision Thing
+#EXTINF:2517,,Angel 3.2. That Vision Thing
 dvd:///mnt/dvd/archive/A/Angel/S03D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 6.1, 2. Bargaining
+#EXTINF:5127,,Buffy the Vampire Slayer 6.1, 2. Bargaining
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,Angel 3.3. That Old Gang of Mine
+#EXTINF:2442,,Angel 3.3. That Old Gang of Mine
 dvd:///mnt/dvd/archive/A/Angel/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 6.3. After Life
+#EXTINF:2491,,Buffy the Vampire Slayer 6.3. After Life
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Angel 3.4. Carpe noctem
+#EXTINF:2417,,Angel 3.4. Carpe noctem
 dvd:///mnt/dvd/archive/A/Angel/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 6.4. Flooded
+#EXTINF:2491,,Buffy the Vampire Slayer 6.4. Flooded
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Angel 3.5. Fredless
+#EXTINF:2527,,Angel 3.5. Fredless
 dvd:///mnt/dvd/archive/A/Angel/S03D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 6.5. Life Serial
+#EXTINF:2492,,Buffy the Vampire Slayer 6.5. Life Serial
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,Angel 3.6. Billy
+#EXTINF:2546,,Angel 3.6. Billy
 dvd:///mnt/dvd/archive/A/Angel/S03D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 6.6. All the Way
+#EXTINF:2493,,Buffy the Vampire Slayer 6.6. All the Way
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Angel 3.7. Offspring
+#EXTINF:2448,,Angel 3.7. Offspring
 dvd:///mnt/dvd/archive/A/Angel/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 6.7. Once More, with Feeling
+#EXTINF:2913,,Buffy the Vampire Slayer 6.7. Once More, with Feeling
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Angel 3.8. Quickening
+#EXTINF:2467,,Angel 3.8. Quickening
 dvd:///mnt/dvd/archive/A/Angel/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 6.8. Tabula rasa
+#EXTINF:2492,,Buffy the Vampire Slayer 6.8. Tabula rasa
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Angel 3.9. Lullaby
+#EXTINF:2513,,Angel 3.9. Lullaby
 dvd:///mnt/dvd/archive/A/Angel/S03D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 6.9. Smashed
+#EXTINF:2487,,Buffy the Vampire Slayer 6.9. Smashed
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 6.10. Wrecked
+#EXTINF:2491,,Buffy the Vampire Slayer 6.10. Wrecked
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,Angel 3.10. Dad
+#EXTINF:2511,,Angel 3.10. Dad
 dvd:///mnt/dvd/archive/A/Angel/S03D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 6.11. Gone
+#EXTINF:2495,,Buffy the Vampire Slayer 6.11. Gone
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,Angel 3.11. Birthday
+#EXTINF:2505,,Angel 3.11. Birthday
 dvd:///mnt/dvd/archive/A/Angel/S03D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,Angel 3.12. Provider
+#EXTINF:2494,,Angel 3.12. Provider
 dvd:///mnt/dvd/archive/A/Angel/S03D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 6.12. Doublemeat Palace
+#EXTINF:2493,,Buffy the Vampire Slayer 6.12. Doublemeat Palace
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,Angel 3.13. Waiting in the Wings
+#EXTINF:2551,,Angel 3.13. Waiting in the Wings
 dvd:///mnt/dvd/archive/A/Angel/S03D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 6.13. Dead Things
+#EXTINF:2493,,Buffy the Vampire Slayer 6.13. Dead Things
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 6.14. Older and Far Away
+#EXTINF:2492,,Buffy the Vampire Slayer 6.14. Older and Far Away
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,Angel 3.14. Couplet
+#EXTINF:2529,,Angel 3.14. Couplet
 dvd:///mnt/dvd/archive/A/Angel/S03D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,Angel 3.15. Loyalty
+#EXTINF:2559,,Angel 3.15. Loyalty
 dvd:///mnt/dvd/archive/A/Angel/S03D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 6.15. As You Were
+#EXTINF:2493,,Buffy the Vampire Slayer 6.15. As You Were
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,Angel 3.16. Sleep Tight
+#EXTINF:2530,,Angel 3.16. Sleep Tight
 dvd:///mnt/dvd/archive/A/Angel/S03D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 6.16. Hell's Bells
+#EXTINF:2494,,Buffy the Vampire Slayer 6.16. Hell's Bells
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 6.17. Normal Again
+#EXTINF:2493,,Buffy the Vampire Slayer 6.17. Normal Again
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,Angel 3.17. Forgiving
+#EXTINF:2558,,Angel 3.17. Forgiving
 dvd:///mnt/dvd/archive/A/Angel/S03D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,Angel 3.18. Double or Nothing
+#EXTINF:2548,,Angel 3.18. Double or Nothing
 dvd:///mnt/dvd/archive/A/Angel/S03D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,Angel 3.19. The Price
+#EXTINF:2481,,Angel 3.19. The Price
 dvd:///mnt/dvd/archive/A/Angel/S03D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 6.18. Entropy
+#EXTINF:2493,,Buffy the Vampire Slayer 6.18. Entropy
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,Angel 3.20. A New World
+#EXTINF:2552,,Angel 3.20. A New World
 dvd:///mnt/dvd/archive/A/Angel/S03D06.%20E20%e2%80%9322.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 6.19. Seeing Red
+#EXTINF:2493,,Buffy the Vampire Slayer 6.19. Seeing Red
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,Angel 3.21. Benediction
+#EXTINF:2528,,Angel 3.21. Benediction
 dvd:///mnt/dvd/archive/A/Angel/S03D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 6.20. Villains
+#EXTINF:2436,,Buffy the Vampire Slayer 6.20. Villains
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D06.%20E20%e2%80%9322.iso#1
-#EXTINF:0,,Angel 3.22. Tomorrow
+#EXTINF:2563,,Angel 3.22. Tomorrow
 dvd:///mnt/dvd/archive/A/Angel/S03D06.%20E20%e2%80%9322.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 6.21. Two to Go
+#EXTINF:2474,,Buffy the Vampire Slayer 6.21. Two to Go
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 6.22. Grave
+#EXTINF:2493,,Buffy the Vampire Slayer 6.22. Grave
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S06D06.%20E20%e2%80%9322.iso#3
 
-#EXTINF:0,,Buffy the Vampire Slayer 7.1. Lessons
+#EXTINF:2403,,Buffy the Vampire Slayer 7.1. Lessons
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 7.2. Beneath You
+#EXTINF:2457,,Buffy the Vampire Slayer 7.2. Beneath You
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Angel 4.1. Deep Down
+#EXTINF:2539,,Angel 4.1. Deep Down
 dvd:///mnt/dvd/archive/A/Angel/S04D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 7.3. Same Time, Same Place
+#EXTINF:2459,,Buffy the Vampire Slayer 7.3. Same Time, Same Place
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Angel 4.2. Ground State
+#EXTINF:2458,,Angel 4.2. Ground State
 dvd:///mnt/dvd/archive/A/Angel/S04D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 7.4. Help
+#EXTINF:2458,,Buffy the Vampire Slayer 7.4. Help
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Angel 4.3. The House Always Wins
+#EXTINF:2423,,Angel 4.3. The House Always Wins
 dvd:///mnt/dvd/archive/A/Angel/S04D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 7.5. Selfless
+#EXTINF:2459,,Buffy the Vampire Slayer 7.5. Selfless
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,Angel 4.4. Slouching Toward Bethlehem
+#EXTINF:2559,,Angel 4.4. Slouching Toward Bethlehem
 dvd:///mnt/dvd/archive/A/Angel/S04D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Angel 4.5. Supersymmetry
+#EXTINF:2467,,Angel 4.5. Supersymmetry
 dvd:///mnt/dvd/archive/A/Angel/S04D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 7.6. Him
+#EXTINF:2459,,Buffy the Vampire Slayer 7.6. Him
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Angel 4.6. Spin the Bottle
+#EXTINF:2562,,Angel 4.6. Spin the Bottle
 dvd:///mnt/dvd/archive/A/Angel/S04D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 7.7. Conversations with Dead People
+#EXTINF:2457,,Buffy the Vampire Slayer 7.7. Conversations with Dead People
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Angel 4.7. Apocalypse, Nowish
+#EXTINF:2563,,Angel 4.7. Apocalypse, Nowish
 dvd:///mnt/dvd/archive/A/Angel/S04D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 7.8. Sleeper
+#EXTINF:2458,,Buffy the Vampire Slayer 7.8. Sleeper
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 7.9. Never Leave Me
+#EXTINF:2402,,Buffy the Vampire Slayer 7.9. Never Leave Me
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 7.10. Bring on the Night
+#EXTINF:2458,,Buffy the Vampire Slayer 7.10. Bring on the Night
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 7.11. Showtime
+#EXTINF:2459,,Buffy the Vampire Slayer 7.11. Showtime
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,Angel 4.8. Habeas Corpses
+#EXTINF:2544,,Angel 4.8. Habeas Corpses
 dvd:///mnt/dvd/archive/A/Angel/S04D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 7.12. Potential
+#EXTINF:2458,,Buffy the Vampire Slayer 7.12. Potential
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,Angel 4.9. Long Day's Journey
+#EXTINF:2552,,Angel 4.9. Long Day's Journey
 dvd:///mnt/dvd/archive/A/Angel/S04D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,Angel 4.10. Awakening
+#EXTINF:2562,,Angel 4.10. Awakening
 dvd:///mnt/dvd/archive/A/Angel/S04D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 7.13. The Killer in Me
+#EXTINF:2459,,Buffy the Vampire Slayer 7.13. The Killer in Me
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,Angel 4.11. Soulless
+#EXTINF:2468,,Angel 4.11. Soulless
 dvd:///mnt/dvd/archive/A/Angel/S04D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 7.14. First Date
+#EXTINF:2459,,Buffy the Vampire Slayer 7.14. First Date
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,Angel 4.12. Calvary
+#EXTINF:2548,,Angel 4.12. Calvary
 dvd:///mnt/dvd/archive/A/Angel/S04D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 7.15. Get It Done
+#EXTINF:2461,,Buffy the Vampire Slayer 7.15. Get It Done
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,Buffy the Vampire Slayer 7.16. Storyteller
+#EXTINF:2459,,Buffy the Vampire Slayer 7.16. Storyteller
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,Angel 4.13. Salvage
+#EXTINF:2553,,Angel 4.13. Salvage
 dvd:///mnt/dvd/archive/A/Angel/S04D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,Angel 4.14. Release
+#EXTINF:2519,,Angel 4.14. Release
 dvd:///mnt/dvd/archive/A/Angel/S04D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 7.17. Lies My Parents Told Me
+#EXTINF:2462,,Buffy the Vampire Slayer 7.17. Lies My Parents Told Me
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,Angel 4.15. Orpheus
+#EXTINF:2447,,Angel 4.15. Orpheus
 dvd:///mnt/dvd/archive/A/Angel/S04D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,Angel 4.16. Players
+#EXTINF:2446,,Angel 4.16. Players
 dvd:///mnt/dvd/archive/A/Angel/S04D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,Angel 4.17. Inside Out
+#EXTINF:2498,,Angel 4.17. Inside Out
 dvd:///mnt/dvd/archive/A/Angel/S04D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,Angel 4.18. Shiny Happy People
+#EXTINF:2558,,Angel 4.18. Shiny Happy People
 dvd:///mnt/dvd/archive/A/Angel/S04D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 7.18. Dirty Girls
+#EXTINF:2457,,Buffy the Vampire Slayer 7.18. Dirty Girls
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,Angel 4.19. The Magic Bullet
+#EXTINF:2561,,Angel 4.19. The Magic Bullet
 dvd:///mnt/dvd/archive/A/Angel/S04D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,Angel 4.20. Sacrifice
+#EXTINF:2481,,Angel 4.20. Sacrifice
 dvd:///mnt/dvd/archive/A/Angel/S04D06.%20E20%e2%80%9322.iso#1
-#EXTINF:0,,Buffy the Vampire Slayer 7.19. Empty Places
+#EXTINF:2458,,Buffy the Vampire Slayer 7.19. Empty Places
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,Angel 4.21. Peace Out
+#EXTINF:2511,,Angel 4.21. Peace Out
 dvd:///mnt/dvd/archive/A/Angel/S04D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 7.20. Touched
+#EXTINF:2458,,Buffy the Vampire Slayer 7.20. Touched
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D06.%20E20%e2%80%9322.iso#1
-#EXTINF:0,,Angel 4.22. Home
+#EXTINF:2555,,Angel 4.22. Home
 dvd:///mnt/dvd/archive/A/Angel/S04D06.%20E20%e2%80%9322.iso#3
-#EXTINF:0,,Buffy the Vampire Slayer 7.21. End of Days
+#EXTINF:2459,,Buffy the Vampire Slayer 7.21. End of Days
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,Buffy the Vampire Slayer 7.22. Chosen
+#EXTINF:2518,,Buffy the Vampire Slayer 7.22. Chosen
 dvd:///mnt/dvd/archive/B/Buffy%20the%20Vampire%20Slayer/S07D06.%20E20%e2%80%9322.iso#3
 
-#EXTINF:0,,Angel 5.1. Conviction
+#EXTINF:2553,,Angel 5.1. Conviction
 dvd:///mnt/dvd/archive/A/Angel/S05D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,Angel 5.2. Just Rewards
+#EXTINF:2519,,Angel 5.2. Just Rewards
 dvd:///mnt/dvd/archive/A/Angel/S05D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Angel 5.3. Unleashed
+#EXTINF:2472,,Angel 5.3. Unleashed
 dvd:///mnt/dvd/archive/A/Angel/S05D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Angel 5.4. Hell Bound
+#EXTINF:2551,,Angel 5.4. Hell Bound
 dvd:///mnt/dvd/archive/A/Angel/S05D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Angel 5.5. Life of the Party
+#EXTINF:2515,,Angel 5.5. Life of the Party
 dvd:///mnt/dvd/archive/A/Angel/S05D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,Angel 5.6. The Cautionary Tale of Numero Cinco
+#EXTINF:2496,,Angel 5.6. The Cautionary Tale of Numero Cinco
 dvd:///mnt/dvd/archive/A/Angel/S05D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Angel 5.7. Lineage
+#EXTINF:2470,,Angel 5.7. Lineage
 dvd:///mnt/dvd/archive/A/Angel/S05D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Angel 5.8. Destiny
+#EXTINF:2448,,Angel 5.8. Destiny
 dvd:///mnt/dvd/archive/A/Angel/S05D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Angel 5.9. Harm's Way
+#EXTINF:2502,,Angel 5.9. Harm's Way
 dvd:///mnt/dvd/archive/A/Angel/S05D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,Angel 5.10. Soul Purpose
+#EXTINF:2475,,Angel 5.10. Soul Purpose
 dvd:///mnt/dvd/archive/A/Angel/S05D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,Angel 5.11. Damage
+#EXTINF:2502,,Angel 5.11. Damage
 dvd:///mnt/dvd/archive/A/Angel/S05D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,Angel 5.12. You're Welcome
+#EXTINF:2517,,Angel 5.12. You're Welcome
 dvd:///mnt/dvd/archive/A/Angel/S05D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,Angel 5.13. Why We Fight
+#EXTINF:2448,,Angel 5.13. Why We Fight
 dvd:///mnt/dvd/archive/A/Angel/S05D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,Angel 5.14. Smile Time
+#EXTINF:2472,,Angel 5.14. Smile Time
 dvd:///mnt/dvd/archive/A/Angel/S05D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,Angel 5.15. A Hole in the World
+#EXTINF:2523,,Angel 5.15. A Hole in the World
 dvd:///mnt/dvd/archive/A/Angel/S05D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,Angel 5.16. Shells
+#EXTINF:2532,,Angel 5.16. Shells
 dvd:///mnt/dvd/archive/A/Angel/S05D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,Angel 5.17. Underneath
+#EXTINF:2425,,Angel 5.17. Underneath
 dvd:///mnt/dvd/archive/A/Angel/S05D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,Angel 5.18. Origin
+#EXTINF:2445,,Angel 5.18. Origin
 dvd:///mnt/dvd/archive/A/Angel/S05D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,Angel 5.19. Time Bomb
+#EXTINF:2435,,Angel 5.19. Time Bomb
 dvd:///mnt/dvd/archive/A/Angel/S05D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,Angel 5.20. The Girl in Question
+#EXTINF:2456,,Angel 5.20. The Girl in Question
 dvd:///mnt/dvd/archive/A/Angel/S05D06.%20E20%e2%80%9322.iso#1
-#EXTINF:0,,Angel 5.21. Power Play
+#EXTINF:2517,,Angel 5.21. Power Play
 dvd:///mnt/dvd/archive/A/Angel/S05D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,Angel 5.22. Not Fade Away
+#EXTINF:2520,,Angel 5.22. Not Fade Away
 dvd:///mnt/dvd/archive/A/Angel/S05D06.%20E20%e2%80%9322.iso#3
index 5fbadda..7efc437 100644 (file)
@@ -1,39 +1,39 @@
 #EXTM3U
 
-#EXTINF:0,,1.1. Pilot
+#EXTINF:5314,,1.1. Pilot
 dvd:///mnt/dvd/archive/C/Caprica/S01D01.%20Extended%20pilot.iso#4
-#EXTINF:0,,1.2. Rebirth
+#EXTINF:2674,,1.2. Rebirth
 dvd:///mnt/dvd/archive/C/Caprica/S01D02.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,1.3. Reins of a Waterfall
+#EXTINF:2525,,1.3. Reins of a Waterfall
 dvd:///mnt/dvd/archive/C/Caprica/S01D02.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,1.4. Gravedancing
+#EXTINF:2529,,1.4. Gravedancing
 dvd:///mnt/dvd/archive/C/Caprica/S01D03.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,1.5. There Is Another Sky
+#EXTINF:2524,,1.5. There Is Another Sky
 dvd:///mnt/dvd/archive/C/Caprica/S01D03.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,1.6. Know Thy Enemy
+#EXTINF:2503,,1.6. Know Thy Enemy
 dvd:///mnt/dvd/archive/C/Caprica/S01D03.%20E04%e2%80%9306.iso#5
-#EXTINF:0,,1.7. The Imperfections of Memory
+#EXTINF:2525,,1.7. The Imperfections of Memory
 dvd:///mnt/dvd/archive/C/Caprica/S01D04.%20E07%e2%80%9309.iso#3
-#EXTINF:0,,1.8. Ghosts in the Machine
+#EXTINF:2524,,1.8. Ghosts in the Machine
 dvd:///mnt/dvd/archive/C/Caprica/S01D04.%20E07%e2%80%9309.iso#4
-#EXTINF:0,,1.9. End of Line
+#EXTINF:2518,,1.9. End of Line
 dvd:///mnt/dvd/archive/C/Caprica/S01D04.%20E07%e2%80%9309.iso#5
 
-#EXTINF:0,,2.1. Unvanquished
+#EXTINF:2527,,2.1. Unvanquished
 dvd:///mnt/dvd/archive/C/Caprica/S02D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,2.2. Retribution
+#EXTINF:2518,,2.2. Retribution
 dvd:///mnt/dvd/archive/C/Caprica/S02D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,2.3. Things We Lock Away
+#EXTINF:2472,,2.3. Things We Lock Away
 dvd:///mnt/dvd/archive/C/Caprica/S02D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,2.4. False Labor
+#EXTINF:2523,,2.4. False Labor
 dvd:///mnt/dvd/archive/C/Caprica/S02D02.%20E04%e2%80%9306.iso#2
-#EXTINF:0,,2.5. Blowback
+#EXTINF:2580,,2.5. Blowback
 dvd:///mnt/dvd/archive/C/Caprica/S02D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,2.6. The Dirteaters
+#EXTINF:2505,,2.6. The Dirteaters
 dvd:///mnt/dvd/archive/C/Caprica/S02D02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,2.7. The Heavens Will Rise
+#EXTINF:2523,,2.7. The Heavens Will Rise
 dvd:///mnt/dvd/archive/C/Caprica/S02D03.%20E07%e2%80%9309.iso#2
-#EXTINF:0,,2.8. Here Be Dragons
+#EXTINF:2527,,2.8. Here Be Dragons
 dvd:///mnt/dvd/archive/C/Caprica/S02D03.%20E07%e2%80%9309.iso#3
-#EXTINF:0,,2.9. Apotheosis
+#EXTINF:2457,,2.9. Apotheosis
 dvd:///mnt/dvd/archive/C/Caprica/S02D03.%20E07%e2%80%9309.iso#4
index 70173f6..a1761fb 100644 (file)
@@ -1,28 +1,28 @@
 #EXTM3U
 
-#EXTINF:0,,1. Non est asylum
+#EXTINF:2582,,1. Non est asylum
 dvd:///mnt/dvd/archive/C/Constantine/S01D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,2. The Darkness Beneath
+#EXTINF:2584,,2. The Darkness Beneath
 dvd:///mnt/dvd/archive/C/Constantine/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,3. The Devil's Vinyl
+#EXTINF:2574,,3. The Devil's Vinyl
 dvd:///mnt/dvd/archive/C/Constantine/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,4. A Feast of Friends
+#EXTINF:2586,,4. A Feast of Friends
 dvd:///mnt/dvd/archive/C/Constantine/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,5. Danse vaudou
+#EXTINF:2584,,5. Danse vaudou
 dvd:///mnt/dvd/archive/C/Constantine/S01D02.%20E05%e2%80%9309.iso#2
-#EXTINF:0,,6. Rage of Caliban
+#EXTINF:2547,,6. Rage of Caliban
 dvd:///mnt/dvd/archive/C/Constantine/S01D02.%20E05%e2%80%9309.iso#3
-#EXTINF:0,,7. Blessed Are the Damned
+#EXTINF:2581,,7. Blessed Are the Damned
 dvd:///mnt/dvd/archive/C/Constantine/S01D02.%20E05%e2%80%9309.iso#4
-#EXTINF:0,,8. The Saint of Last Resorts (part 1)
+#EXTINF:2585,,8. The Saint of Last Resorts (part 1)
 dvd:///mnt/dvd/archive/C/Constantine/S01D02.%20E05%e2%80%9309.iso#5
-#EXTINF:0,,9. The Saint of Last Resorts (part 2)
+#EXTINF:2585,,9. The Saint of Last Resorts (part 2)
 dvd:///mnt/dvd/archive/C/Constantine/S01D02.%20E05%e2%80%9309.iso#6
-#EXTINF:0,,10. Quid pro quo
+#EXTINF:2584,,10. Quid pro quo
 dvd:///mnt/dvd/archive/C/Constantine/S01D03.%20E10%e2%80%9313.iso#2
-#EXTINF:0,,11. A Whole World out There
+#EXTINF:2584,,11. A Whole World out There
 dvd:///mnt/dvd/archive/C/Constantine/S01D03.%20E10%e2%80%9313.iso#3
-#EXTINF:0,,12. Angels and Ministers of Grace
+#EXTINF:2549,,12. Angels and Ministers of Grace
 dvd:///mnt/dvd/archive/C/Constantine/S01D03.%20E10%e2%80%9313.iso#4
-#EXTINF:0,,13. Waiting for the Man
+#EXTINF:2587,,13. Waiting for the Man
 dvd:///mnt/dvd/archive/C/Constantine/S01D03.%20E10%e2%80%9313.iso#5
index b6745e6..60546f4 100644 (file)
@@ -1,22 +1,22 @@
 #EXTM3U
 
-#EXTINF:0,,1. The Mad Woman in the Attic
+#EXTINF:5938,,1. The Mad Woman in the Attic
 dvd:///mnt/dvd/archive/C/Cracker/01.%20The%20Mad%20Woman%20in%20the%20Attic.iso#1
-#EXTINF:0,,2. To Say I Love You
+#EXTINF:9175,,2. To Say I Love You
 dvd:///mnt/dvd/archive/C/Cracker/02.%20To%20Say%20I%20Love%20You.iso#1
-#EXTINF:0,,3. One Day a Lemming Will Fly
+#EXTINF:5839,,3. One Day a Lemming Will Fly
 dvd:///mnt/dvd/archive/C/Cracker/03.%20One%20Day%20a%20Lemming%20Will%20Fly.iso#1
-#EXTINF:0,,4. To Be a Somebody
+#EXTINF:8883,,4. To Be a Somebody
 dvd:///mnt/dvd/archive/C/Cracker/04.%20To%20Be%20a%20Somebody.iso#1
-#EXTINF:0,,5. The Big Crunch
+#EXTINF:8862,,5. The Big Crunch
 dvd:///mnt/dvd/archive/C/Cracker/05.%20The%20Big%20Crunch.iso#1
-#EXTINF:0,,6. Men Should Weep
+#EXTINF:8914,,6. Men Should Weep
 dvd:///mnt/dvd/archive/C/Cracker/06.%20Men%20Should%20Weep.iso#1
-#EXTINF:0,,7. Brotherly Love
+#EXTINF:8886,,7. Brotherly Love
 dvd:///mnt/dvd/archive/C/Cracker/07.%20Brotherly%20Love.iso#1
-#EXTINF:0,,8. Best Boys
+#EXTINF:5953,,8. Best Boys
 dvd:///mnt/dvd/archive/C/Cracker/08.%20Best%20Boys.iso#1
-#EXTINF:0,,9. True Romance
+#EXTINF:6023,,9. True Romance
 dvd:///mnt/dvd/archive/C/Cracker/09.%20True%20Romance.iso#1
-#EXTINF:0,,10. White Ghost
+#EXTINF:6023,,10. White Ghost
 dvd:///mnt/dvd/archive/C/Cracker/10.%20White%20Ghost.iso#1
index 993171c..f7d755e 100644 (file)
@@ -1,46 +1,46 @@
 #EXTM3U
 
-#EXTINF:0,,1. The Soul Can't Rest
+#EXTINF:2632,,1. The Soul Can't Rest
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,2. Souled Out
+#EXTINF:2632,,2. Souled Out
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,3. Get a Life
+#EXTINF:2635,,3. Get a Life
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,4. Like It's 1999
+#EXTINF:2629,,4. Like It's 1999
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,5. Voices
+#EXTINF:2631,,5. Voices
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/02.%20E05%e2%80%9309.iso#5
-#EXTINF:0,,6. Solitude's Revenge
+#EXTINF:2633,,6. Solitude's Revenge
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/02.%20E05%e2%80%9309.iso#6
-#EXTINF:0,,7. Double Take
+#EXTINF:2629,,7. Double Take
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/02.%20E05%e2%80%9309.iso#7
-#EXTINF:0,,8. Give Me Death
+#EXTINF:2631,,8. Give Me Death
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/02.%20E05%e2%80%9309.iso#8
-#EXTINF:0,,9. Before I Wake
+#EXTINF:2627,,9. Before I Wake
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/02.%20E05%e2%80%9309.iso#9
-#EXTINF:0,,10. Death Wish
+#EXTINF:2633,,10. Death Wish
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/03.%20E10%e2%80%9314.iso#5
-#EXTINF:0,,11. Through a Dark Circle
+#EXTINF:2636,,11. Through a Dark Circle
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/03.%20E10%e2%80%9314.iso#6
-#EXTINF:0,,12. Disclosure
+#EXTINF:2636,,12. Disclosure
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/03.%20E10%e2%80%9314.iso#7
-#EXTINF:0,,13. The People vs. Eric Draven
+#EXTINF:2638,,13. The People vs. Eric Draven
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/03.%20E10%e2%80%9314.iso#8
-#EXTINF:0,,14. It's a Wonderful Death
+#EXTINF:2625,,14. It's a Wonderful Death
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/03.%20E10%e2%80%9314.iso#9
-#EXTINF:0,,15. Birds of a Feather
+#EXTINF:2629,,15. Birds of a Feather
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/04.%20E15%e2%80%9319.iso#5
-#EXTINF:0,,16. Never Say Die
+#EXTINF:2640,,16. Never Say Die
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/04.%20E15%e2%80%9319.iso#6
-#EXTINF:0,,17. Lazarus Rising
+#EXTINF:2639,,17. Lazarus Rising
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/04.%20E15%e2%80%9319.iso#7
-#EXTINF:0,,18. Closing Time
+#EXTINF:2630,,18. Closing Time
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/04.%20E15%e2%80%9319.iso#8
-#EXTINF:0,,19. The Road Not Taken
+#EXTINF:2625,,19. The Road Not Taken
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/04.%20E15%e2%80%9319.iso#9
-#EXTINF:0,,20. Brother's Keeper
+#EXTINF:2629,,20. Brother's Keeper
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/05.%20E20%e2%80%9322.iso#6
-#EXTINF:0,,21. Dead to Rights
+#EXTINF:2639,,21. Dead to Rights
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/05.%20E20%e2%80%9322.iso#7
-#EXTINF:0,,22. A Gathering Storm
+#EXTINF:2636,,22. A Gathering Storm
 dvd:///mnt/dvd/archive/C/The%20Crow%e2%80%94Stairway%20to%20Heaven/05.%20E20%e2%80%9322.iso#8
index ccd1d33..53932ec 100644 (file)
@@ -1,88 +1,88 @@
 #EXTM3U
 
-#EXTINF:0,,1. Custard
+#EXTINF:1140,,1. Custard
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Close%20Encounters%20of%20the%20Absurd%20Kind!.iso#2:1-2:2
-#EXTINF:0,,2. Close Encounters of the Absurd Kind
+#EXTINF:1065,,2. Close Encounters of the Absurd Kind
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Close%20Encounters%20of%20the%20Absurd%20Kind!.iso#2:3-2:3
-#EXTINF:0,,3. The Duel
+#EXTINF:1160,,3. The Duel
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Close%20Encounters%20of%20the%20Absurd%20Kind!.iso#2:4-2:4
-#EXTINF:0,,4. Day of the Suds
+#EXTINF:1019,,4. Day of the Suds
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Close%20Encounters%20of%20the%20Absurd%20Kind!.iso#2:5-2:5
-#EXTINF:0,,5. The Bad Luck Eye of the Little Yellow God
+#EXTINF:1121,,5. The Bad Luck Eye of the Little Yellow God
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Close%20Encounters%20of%20the%20Absurd%20Kind!.iso#2:6-2:6
-#EXTINF:0,,6. The Four Tasks of Danger Mouse
+#EXTINF:1066,,6. The Four Tasks of Danger Mouse
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Close%20Encounters%20of%20the%20Absurd%20Kind!.iso#2:7-2:7
-#EXTINF:0,,7. The Invasion of Colonel K
+#EXTINF:1051,,7. The Invasion of Colonel K
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Danger%20Mouse%20Saves%20the%20World%e2%80%a6%20Again!.iso#2:1-2:1
-#EXTINF:0,,8. Danger Mouse Saves the World
+#EXTINF:1093,,8. Danger Mouse Saves the World
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Danger%20Mouse%20Saves%20the%20World%e2%80%a6%20Again!.iso#2:2-2:2
-#EXTINF:0,,9. The Odd Ball Run-a-Round
+#EXTINF:1017,,9. The Odd Ball Run-a-Round
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Danger%20Mouse%20Saves%20the%20World%e2%80%a6%20Again!.iso#2:3-2:3
-#EXTINF:0,,10. Wild, Wild, Goose Chase
+#EXTINF:1139,,10. Wild, Wild, Goose Chase
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Danger%20Mouse%20Saves%20the%20World%e2%80%a6%20Again!.iso#2:4-2:4
-#EXTINF:0,,11. The Return of Count Duckula
+#EXTINF:1117,,11. The Return of Count Duckula
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Danger%20Mouse%20Saves%20the%20World%e2%80%a6%20Again!.iso#2:5-2:5
-#EXTINF:0,,12. Demons Aren't Dull
+#EXTINF:1109,,12. Demons Aren't Dull
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Danger%20Mouse%20Saves%20the%20World%e2%80%a6%20Again!.iso#2:6-2:6
-#EXTINF:0,,13. The Long Lost Crown Affair
+#EXTINF:606,,13. The Long Lost Crown Affair
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Project%20Moon.iso#2:1-2:1
-#EXTINF:0,,14. By George It's a Dragon!
+#EXTINF:604,,14. By George It's a Dragon!
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Project%20Moon.iso#2:2-2:2
-#EXTINF:0,,15. Project Moon
+#EXTINF:603,,15. Project Moon
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Project%20Moon.iso#2:3-2:3
-#EXTINF:0,,16. Remote Controlled Chaos
+#EXTINF:596,,16. Remote Controlled Chaos
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Project%20Moon.iso#2:4-2:4
-#EXTINF:0,,17. Ee-Tea!
+#EXTINF:599,,17. Ee-Tea!
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Project%20Moon.iso#2:5-2:5
-#EXTINF:0,,18. Journey to the Earth's Cor
+#EXTINF:605,,18. Journey to the Earth's Cor
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Project%20Moon.iso#2:6-2:6
-#EXTINF:0,,19. Play It Again Wufgang
+#EXTINF:603,,19. Play It Again Wufgang
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Project%20Moon.iso#2:7-2:7
-#EXTINF:0,,20. The Clock Strikes Back
+#EXTINF:601,,20. The Clock Strikes Back
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Project%20Moon.iso#2:8-2:8
-#EXTINF:0,,21. 150 Million Years Lost
+#EXTINF:1048,,21. 150 Million Years Lost
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/The%20Great%20Bone%20Idol.iso#2:1-2:1
-#EXTINF:0,,22. Planet of the Cats
+#EXTINF:1062,,22. Planet of the Cats
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/The%20Great%20Bone%20Idol.iso#2:2-2:2
-#EXTINF:0,,23. Four Heads Are Better than Two
+#EXTINF:1006,,23. Four Heads Are Better than Two
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/The%20Great%20Bone%20Idol.iso#2:3-2:3
-#EXTINF:0,,24. Tower of Terror
+#EXTINF:1094,,24. Tower of Terror
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/The%20Great%20Bone%20Idol.iso#2:4-2:4
-#EXTINF:0,,25. The Great Bone Idol
+#EXTINF:1056,,25. The Great Bone Idol
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/The%20Great%20Bone%20Idol.iso#2:5-2:5
-#EXTINF:0,,26. Public Enemy No. 1
+#EXTINF:1111,,26. Public Enemy No. 1
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/The%20Great%20Bone%20Idol.iso#2:6-2:6
-#EXTINF:0,,27. Viva Danger Mouse
+#EXTINF:610,,27. Viva Danger Mouse
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Viva%20Danger%20Mouse.iso#2:1-2:1
-#EXTINF:0,,28. Gremlin Alert
+#EXTINF:608,,28. Gremlin Alert
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Viva%20Danger%20Mouse.iso#2:2-2:2
-#EXTINF:0,,29. Tut, Tut, It's Not Pharaoh
+#EXTINF:603,,29. Tut, Tut, It's Not Pharaoh
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Viva%20Danger%20Mouse.iso#2:3-2:3
-#EXTINF:0,,30. Multiplcation Fable
+#EXTINF:609,,30. Multiplcation Fable
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Viva%20Danger%20Mouse.iso#2:4-2:4
-#EXTINF:0,,31. Lost, Found and Spellbound
+#EXTINF:609,,31. Lost, Found and Spellbound
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Viva%20Danger%20Mouse.iso#2:5-2:5
-#EXTINF:0,,32. Mechanised Mayhem
+#EXTINF:606,,32. Mechanised Mayhem
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Viva%20Danger%20Mouse.iso#2:6-2:6
-#EXTINF:0,,33. Bandits, Beans and Ballyhoo!
+#EXTINF:606,,33. Bandits, Beans and Ballyhoo!
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Viva%20Danger%20Mouse.iso#2:7-2:7
-#EXTINF:0,,34. The Martian Misfit
+#EXTINF:666,,34. The Martian Misfit
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Viva%20Danger%20Mouse.iso#2:8-2:8
-#EXTINF:0,,35. Who Stole the Bagpipes
+#EXTINF:664,,35. Who Stole the Bagpipes
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Who%20Stole%20the%20Bagpipes%3f.iso#2:1-2:1
-#EXTINF:0,,36. Aaagghg!! Spiders
+#EXTINF:602,,36. Aaagghg!! Spiders
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Who%20Stole%20the%20Bagpipes%3f.iso#2:2-2:2
-#EXTINF:0,,37. Chicken Run
+#EXTINF:665,,37. Chicken Run
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Who%20Stole%20the%20Bagpipes%3f.iso#2:3-2:3
-#EXTINF:0,,38. Tiptoe Through the Penfolds
+#EXTINF:607,,38. Tiptoe Through the Penfolds
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Who%20Stole%20the%20Bagpipes%3f.iso#2:4-2:4
-#EXTINF:0,,39. Trouble with Ghosts
+#EXTINF:664,,39. Trouble with Ghosts
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Who%20Stole%20the%20Bagpipes%3f.iso#2:5-2:5
-#EXTINF:0,,40. Nero Power
+#EXTINF:601,,40. Nero Power
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Who%20Stole%20the%20Bagpipes%3f.iso#2:6-2:6
-#EXTINF:0,,41. A Plague of Pyramids
+#EXTINF:661,,41. A Plague of Pyramids
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Who%20Stole%20the%20Bagpipes%3f.iso#2:7-2:7
-#EXTINF:0,,42. Alping Is Snow Easy Matter
+#EXTINF:604,,42. Alping Is Snow Easy Matter
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Who%20Stole%20the%20Bagpipes%3f.iso#2:8-2:8
-#EXTINF:0,,43. Count Duckula—No Sax Please We're Egyptian
+#EXTINF:1347,,43. Count Duckula—No Sax Please We're Egyptian
 dvd:///mnt/dvd/archive/D/Danger%20Mouse/Close%20Encounters%20of%20the%20Absurd%20Kind!.iso#3
index 5930906..c25530b 100644 (file)
@@ -1,87 +1,87 @@
 #EXTM3U
 
-#EXTINF:0,,1.1. Pilot
+#EXTINF:4981,,1.1. Pilot
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D01.%20E01%e2%80%9303.iso#1
-#EXTINF:0,,1.2. Heat
+#EXTINF:2459,,1.2. Heat
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,1.3. Flushed
+#EXTINF:2523,,1.3. Flushed
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,1.4. C.R.E.A.M.
+#EXTINF:2524,,1.4. C.R.E.A.M.
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D02.%20E04%e2%80%9307.iso#1
-#EXTINF:0,,1.5. 411 on the DL
+#EXTINF:2523,,1.5. 411 on the DL
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D02.%20E04%e2%80%9307.iso#2
-#EXTINF:0,,1.6. Prodigy
+#EXTINF:2494,,1.6. Prodigy
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D02.%20E04%e2%80%9307.iso#3
-#EXTINF:0,,1.7. Cold Comfort
+#EXTINF:2523,,1.7. Cold Comfort
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D02.%20E04%e2%80%9307.iso#4
-#EXTINF:0,,1.8. Blah Blah Woof Woof
+#EXTINF:2511,,1.8. Blah Blah Woof Woof
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D03.%20E08%e2%80%9310.iso#1
-#EXTINF:0,,1.9. Out
+#EXTINF:2494,,1.9. Out
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D03.%20E08%e2%80%9310.iso#2
-#EXTINF:0,,1.10. Red
+#EXTINF:2522,,1.10. Red
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D03.%20E08%e2%80%9310.iso#3
-#EXTINF:0,,1.11. Art Attack
+#EXTINF:2493,,1.11. Art Attack
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D04.%20E11%e2%80%9314.iso#1
-#EXTINF:0,,1.12. Rising
+#EXTINF:2481,,1.12. Rising
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D04.%20E11%e2%80%9314.iso#2
-#EXTINF:0,,1.13. The Kidz Are Aiight
+#EXTINF:2522,,1.13. The Kidz Are Aiight
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D04.%20E11%e2%80%9314.iso#3
-#EXTINF:0,,1.14. Female Trouble
+#EXTINF:2522,,1.14. Female Trouble
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D04.%20E11%e2%80%9314.iso#4
-#EXTINF:0,,1.15. Haven
+#EXTINF:2524,,1.15. Haven
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D05.%20E15%e2%80%9318.iso#1
-#EXTINF:0,,1.16. Shorties in Love
+#EXTINF:2524,,1.16. Shorties in Love
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D05.%20E15%e2%80%9318.iso#2
-#EXTINF:0,,1.17. Pollo Loco
+#EXTINF:2523,,1.17. Pollo Loco
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D05.%20E15%e2%80%9318.iso#3
-#EXTINF:0,,1.18. I and I Am a Camera
+#EXTINF:2523,,1.18. I and I Am a Camera
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D05.%20E15%e2%80%9318.iso#4
-#EXTINF:0,,1.19. Hit a Sista Back
+#EXTINF:2523,,1.19. Hit a Sista Back
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D06.%20E19%e2%80%9321.iso#1
-#EXTINF:0,,1.20. Meow
+#EXTINF:2522,,1.20. Meow
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D06.%20E19%e2%80%9321.iso#2
-#EXTINF:0,,1.21. … and Jesus Brought a Casserole
+#EXTINF:2524,,1.21. … and Jesus Brought a Casserole
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S01D06.%20E19%e2%80%9321.iso#3
 
-#EXTINF:0,,2.1. Designate This
+#EXTINF:2509,,2.1. Designate This
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,2.2. Bag 'Em
+#EXTINF:2509,,2.2. Bag 'Em
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,2.3. Proof of Purchase
+#EXTINF:2527,,2.3. Proof of Purchase
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,2.4. Radar Love
+#EXTINF:2511,,2.4. Radar Love
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.5. Boo
+#EXTINF:2527,,2.5. Boo
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,2.6. Two
+#EXTINF:2565,,2.6. Two
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,2.7. Some Assembly Required
+#EXTINF:2565,,2.7. Some Assembly Required
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,2.8. Gill Girl
+#EXTINF:2565,,2.8. Gill Girl
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.9. Medium Is the Message
+#EXTINF:2565,,2.9. Medium Is the Message
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,2.10. Brainiac
+#EXTINF:2564,,2.10. Brainiac
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,2.11. The Berrisford Agenda
+#EXTINF:2565,,2.11. The Berrisford Agenda
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,2.12. Borrowed Time
+#EXTINF:2565,,2.12. Borrowed Time
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,2.13. Harbor Lights
+#EXTINF:2564,,2.13. Harbor Lights
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,2.14. Love in Vein
+#EXTINF:2566,,2.14. Love in Vein
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,2.15. Fuhgeddaboudit
+#EXTINF:2565,,2.15. Fuhgeddaboudit
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,2.16. Exposure
+#EXTINF:2533,,2.16. Exposure
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D05.%20E16%e2%80%9319.iso#1
-#EXTINF:0,,2.17. Hello, Goodbye
+#EXTINF:2532,,2.17. Hello, Goodbye
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,2.18. Dawg Day Afternoon
+#EXTINF:2475,,2.18. Dawg Day Afternoon
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,2.19. She Ain't Heavy
+#EXTINF:2475,,2.19. She Ain't Heavy
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,2.20. Love Among the Runes
+#EXTINF:2476,,2.20. Love Among the Runes
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D06.%20E20%e2%80%9321.iso#1
-#EXTINF:0,,2.21. Freak Nation
+#EXTINF:3679,,2.21. Freak Nation
 dvd:///mnt/dvd/archive/D/Dark%20Angel/S02D06.%20E20%e2%80%9321.iso#2
index d33c428..6718fa5 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Dexter
+#EXTINF:3051,,1.1. Dexter
 dvd:///mnt/dvd/archive/D/Dexter/S01D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,1.2. Crocodile
+#EXTINF:3144,,1.2. Crocodile
 dvd:///mnt/dvd/archive/D/Dexter/S01D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,1.3. Popping Cherry
+#EXTINF:2930,,1.3. Popping Cherry
 dvd:///mnt/dvd/archive/D/Dexter/S01D01.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,1.4. Let's Give the Boy a Hand
+#EXTINF:3323,,1.4. Let's Give the Boy a Hand
 dvd:///mnt/dvd/archive/D/Dexter/S01D02.%20E04%e2%80%9306.iso#2
-#EXTINF:0,,1.5. Love American Style
+#EXTINF:3202,,1.5. Love American Style
 dvd:///mnt/dvd/archive/D/Dexter/S01D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,1.6. Return to Sender
+#EXTINF:3043,,1.6. Return to Sender
 dvd:///mnt/dvd/archive/D/Dexter/S01D02.%20E04%e2%80%9306.iso#7
-#EXTINF:0,,1.7. Circle of Friends
+#EXTINF:3018,,1.7. Circle of Friends
 dvd:///mnt/dvd/archive/D/Dexter/S01D03.%20E07%e2%80%9309.iso#2
-#EXTINF:0,,1.8. Shrink Wrap
+#EXTINF:3089,,1.8. Shrink Wrap
 dvd:///mnt/dvd/archive/D/Dexter/S01D03.%20E07%e2%80%9309.iso#3
-#EXTINF:0,,1.9. Father Knows Best
+#EXTINF:3199,,1.9. Father Knows Best
 dvd:///mnt/dvd/archive/D/Dexter/S01D03.%20E07%e2%80%9309.iso#4
-#EXTINF:0,,1.10. Seeing Red
+#EXTINF:3246,,1.10. Seeing Red
 dvd:///mnt/dvd/archive/D/Dexter/S01D04.%20E10%e2%80%9312.iso#2
-#EXTINF:0,,1.11. Truth Be Told
+#EXTINF:3104,,1.11. Truth Be Told
 dvd:///mnt/dvd/archive/D/Dexter/S01D04.%20E10%e2%80%9312.iso#3
-#EXTINF:0,,1.12. Born Free
+#EXTINF:3247,,1.12. Born Free
 dvd:///mnt/dvd/archive/D/Dexter/S01D04.%20E10%e2%80%9312.iso#7
 
-#EXTINF:0,,2.1. It's Alive!
+#EXTINF:3068,,2.1. It's Alive!
 dvd:///mnt/dvd/archive/D/Dexter/S02D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,2.2. Waiting to Exhale
+#EXTINF:3212,,2.2. Waiting to Exhale
 dvd:///mnt/dvd/archive/D/Dexter/S02D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,2.3. An Inconvenient Lie
+#EXTINF:3013,,2.3. An Inconvenient Lie
 dvd:///mnt/dvd/archive/D/Dexter/S02D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,2.4. See-Through
+#EXTINF:3049,,2.4. See-Through
 dvd:///mnt/dvd/archive/D/Dexter/S02D02.%20E04%e2%80%9306.iso#2
-#EXTINF:0,,2.5. The Dark Defender
+#EXTINF:3219,,2.5. The Dark Defender
 dvd:///mnt/dvd/archive/D/Dexter/S02D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,2.6. Dex, Lies, and Videotape
+#EXTINF:3082,,2.6. Dex, Lies, and Videotape
 dvd:///mnt/dvd/archive/D/Dexter/S02D02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,2.7. That Night, a Forest Grew
+#EXTINF:3178,,2.7. That Night, a Forest Grew
 dvd:///mnt/dvd/archive/D/Dexter/S02D03.%20E07%e2%80%9309.iso#2
-#EXTINF:0,,2.8. Morning Comes
+#EXTINF:2855,,2.8. Morning Comes
 dvd:///mnt/dvd/archive/D/Dexter/S02D03.%20E07%e2%80%9309.iso#3
-#EXTINF:0,,2.9. Resistance Is Futile
+#EXTINF:2878,,2.9. Resistance Is Futile
 dvd:///mnt/dvd/archive/D/Dexter/S02D03.%20E07%e2%80%9309.iso#4
-#EXTINF:0,,2.10. There's Something About Harry
+#EXTINF:3192,,2.10. There's Something About Harry
 dvd:///mnt/dvd/archive/D/Dexter/S02D04.%20E10%e2%80%9312.iso#2
-#EXTINF:0,,2.11. Left Turn Ahead
+#EXTINF:2962,,2.11. Left Turn Ahead
 dvd:///mnt/dvd/archive/D/Dexter/S02D04.%20E10%e2%80%9312.iso#3
-#EXTINF:0,,2.12. The British Invasion
+#EXTINF:2968,,2.12. The British Invasion
 dvd:///mnt/dvd/archive/D/Dexter/S02D04.%20E10%e2%80%9312.iso#4
 
-#EXTINF:0,,3.1. Our Father
+#EXTINF:3347,,3.1. Our Father
 dvd:///mnt/dvd/archive/D/Dexter/S03D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,3.2. Finding Freebo
+#EXTINF:2845,,3.2. Finding Freebo
 dvd:///mnt/dvd/archive/D/Dexter/S03D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,3.3. The Lion Sleeps Tonight
+#EXTINF:2836,,3.3. The Lion Sleeps Tonight
 dvd:///mnt/dvd/archive/D/Dexter/S03D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,3.4. All in the Family
+#EXTINF:3135,,3.4. All in the Family
 dvd:///mnt/dvd/archive/D/Dexter/S03D02.%20E04%e2%80%9306.iso#2
-#EXTINF:0,,3.5. Turning Biminese
+#EXTINF:2811,,3.5. Turning Biminese
 dvd:///mnt/dvd/archive/D/Dexter/S03D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,3.6. Sí se puede
+#EXTINF:3116,,3.6. Sí se puede
 dvd:///mnt/dvd/archive/D/Dexter/S03D02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,3.7. Easy as Pie
+#EXTINF:3333,,3.7. Easy as Pie
 dvd:///mnt/dvd/archive/D/Dexter/S03D03.%20E07%e2%80%9309.iso#2
-#EXTINF:0,,3.8. The Damage a Man Can Do
+#EXTINF:3149,,3.8. The Damage a Man Can Do
 dvd:///mnt/dvd/archive/D/Dexter/S03D03.%20E07%e2%80%9309.iso#3
-#EXTINF:0,,3.9. About Last Night
+#EXTINF:2942,,3.9. About Last Night
 dvd:///mnt/dvd/archive/D/Dexter/S03D03.%20E07%e2%80%9309.iso#4
-#EXTINF:0,,3.10. Go Your Own Way
+#EXTINF:2889,,3.10. Go Your Own Way
 dvd:///mnt/dvd/archive/D/Dexter/S03D04.%20E10%e2%80%9312.iso#2
-#EXTINF:0,,3.11. I Had a Dream
+#EXTINF:2925,,3.11. I Had a Dream
 dvd:///mnt/dvd/archive/D/Dexter/S03D04.%20E10%e2%80%9312.iso#3
-#EXTINF:0,,3.12. Do You Take Dexter Morgan?
+#EXTINF:2969,,3.12. Do You Take Dexter Morgan?
 dvd:///mnt/dvd/archive/D/Dexter/S03D04.%20E10%e2%80%9312.iso#4
 
-#EXTINF:0,,4.1. Living the Dream
+#EXTINF:3118,,4.1. Living the Dream
 dvd:///mnt/dvd/archive/D/Dexter/S04D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,4.2. Remains to Be Seen
+#EXTINF:2870,,4.2. Remains to Be Seen
 dvd:///mnt/dvd/archive/D/Dexter/S04D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,4.3. Blinded by the Light
+#EXTINF:2976,,4.3. Blinded by the Light
 dvd:///mnt/dvd/archive/D/Dexter/S04D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,4.4. Dex Takes a Holiday
+#EXTINF:3152,,4.4. Dex Takes a Holiday
 dvd:///mnt/dvd/archive/D/Dexter/S04D02.%20E04%e2%80%9306.iso#2
-#EXTINF:0,,4.5. Dirty Harry
+#EXTINF:2829,,4.5. Dirty Harry
 dvd:///mnt/dvd/archive/D/Dexter/S04D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,4.6. If I Had a Hammer
+#EXTINF:3200,,4.6. If I Had a Hammer
 dvd:///mnt/dvd/archive/D/Dexter/S04D02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,4.7. Slack Tide
+#EXTINF:3027,,4.7. Slack Tide
 dvd:///mnt/dvd/archive/D/Dexter/S04D03.%20E07%e2%80%9309.iso#2
-#EXTINF:0,,4.8. Road Kill
+#EXTINF:3154,,4.8. Road Kill
 dvd:///mnt/dvd/archive/D/Dexter/S04D03.%20E07%e2%80%9309.iso#3
-#EXTINF:0,,4.9. Hungry Man
+#EXTINF:2944,,4.9. Hungry Man
 dvd:///mnt/dvd/archive/D/Dexter/S04D03.%20E07%e2%80%9309.iso#4
-#EXTINF:0,,4.10. Lost Boys
+#EXTINF:3278,,4.10. Lost Boys
 dvd:///mnt/dvd/archive/D/Dexter/S04D04.%20E10%e2%80%9312.iso#2
-#EXTINF:0,,4.11. Hello, Dexter Morgan
+#EXTINF:2942,,4.11. Hello, Dexter Morgan
 dvd:///mnt/dvd/archive/D/Dexter/S04D04.%20E10%e2%80%9312.iso#3
-#EXTINF:0,,4.12. The Getaway
+#EXTINF:2954,,4.12. The Getaway
 dvd:///mnt/dvd/archive/D/Dexter/S04D04.%20E10%e2%80%9312.iso#4
 
-#EXTINF:0,,5.1. My Bad
+#EXTINF:3136,,5.1. My Bad
 dvd:///mnt/dvd/archive/D/Dexter/S05D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,5.2. Hello, Bandit
+#EXTINF:2869,,5.2. Hello, Bandit
 dvd:///mnt/dvd/archive/D/Dexter/S05D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,5.3. Practically Perfect
+#EXTINF:2825,,5.3. Practically Perfect
 dvd:///mnt/dvd/archive/D/Dexter/S05D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,5.4. Beauty and the Beast
+#EXTINF:2916,,5.4. Beauty and the Beast
 dvd:///mnt/dvd/archive/D/Dexter/S05D02.%20E04%e2%80%9306.iso#2
-#EXTINF:0,,5.5. First Blood
+#EXTINF:2934,,5.5. First Blood
 dvd:///mnt/dvd/archive/D/Dexter/S05D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,5.6. Everything Is Illumenated
+#EXTINF:2903,,5.6. Everything Is Illumenated
 dvd:///mnt/dvd/archive/D/Dexter/S05D02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,5.7. Circle Us
+#EXTINF:2777,,5.7. Circle Us
 dvd:///mnt/dvd/archive/D/Dexter/S05D03.%20E07%e2%80%9309.iso#2
-#EXTINF:0,,5.8. Take It!
+#EXTINF:3021,,5.8. Take It!
 dvd:///mnt/dvd/archive/D/Dexter/S05D03.%20E07%e2%80%9309.iso#3
-#EXTINF:0,,5.9. Teenage Wasteland
+#EXTINF:3168,,5.9. Teenage Wasteland
 dvd:///mnt/dvd/archive/D/Dexter/S05D03.%20E07%e2%80%9309.iso#4
-#EXTINF:0,,5.10. In the Beginning
+#EXTINF:3110,,5.10. In the Beginning
 dvd:///mnt/dvd/archive/D/Dexter/S05D04.%20E10%e2%80%9312.iso#2
-#EXTINF:0,,5.11. Hop a Freighter
+#EXTINF:2723,,5.11. Hop a Freighter
 dvd:///mnt/dvd/archive/D/Dexter/S05D04.%20E10%e2%80%9312.iso#3
-#EXTINF:0,,5.12. The Big One
+#EXTINF:3211,,5.12. The Big One
 dvd:///mnt/dvd/archive/D/Dexter/S05D04.%20E10%e2%80%9312.iso#4
 
-#EXTINF:0,,6.1. Those Kinds of Things
+#EXTINF:3097,,6.1. Those Kinds of Things
 dvd:///mnt/dvd/archive/D/Dexter/S06D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,6.2. Once Upon a Time…
+#EXTINF:3073,,6.2. Once Upon a Time…
 dvd:///mnt/dvd/archive/D/Dexter/S06D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,6.3. Smokey and the Bandit
+#EXTINF:2903,,6.3. Smokey and the Bandit
 dvd:///mnt/dvd/archive/D/Dexter/S06D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,6.4. A Horse of a Different Color
+#EXTINF:3007,,6.4. A Horse of a Different Color
 dvd:///mnt/dvd/archive/D/Dexter/S06D02.%20E04%e2%80%9306.iso#2
-#EXTINF:0,,6.5. The Angel of Death
+#EXTINF:2956,,6.5. The Angel of Death
 dvd:///mnt/dvd/archive/D/Dexter/S06D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,6.6. Just Let Go
+#EXTINF:3125,,6.6. Just Let Go
 dvd:///mnt/dvd/archive/D/Dexter/S06D02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,6.7. Nebraska
+#EXTINF:2992,,6.7. Nebraska
 dvd:///mnt/dvd/archive/D/Dexter/S06D03.%20E07%e2%80%9309.iso#2
-#EXTINF:0,,6.8. Sin of Omission
+#EXTINF:3024,,6.8. Sin of Omission
 dvd:///mnt/dvd/archive/D/Dexter/S06D03.%20E07%e2%80%9309.iso#3
-#EXTINF:0,,6.9. Get Gellar
+#EXTINF:2903,,6.9. Get Gellar
 dvd:///mnt/dvd/archive/D/Dexter/S06D03.%20E07%e2%80%9309.iso#4
-#EXTINF:0,,6.10. Ricochet Rabbit
+#EXTINF:2839,,6.10. Ricochet Rabbit
 dvd:///mnt/dvd/archive/D/Dexter/S06D04.%20E10%e2%80%9312.iso#2
-#EXTINF:0,,6.11. Talk to the Hand
+#EXTINF:2766,,6.11. Talk to the Hand
 dvd:///mnt/dvd/archive/D/Dexter/S06D04.%20E10%e2%80%9312.iso#3
-#EXTINF:0,,6.12. This is the Way the World Ends
+#EXTINF:2958,,6.12. This is the Way the World Ends
 dvd:///mnt/dvd/archive/D/Dexter/S06D04.%20E10%e2%80%9312.iso#4
 
-#EXTINF:0,,7.1. Are You…?
+#EXTINF:3176,,7.1. Are You…?
 dvd:///mnt/dvd/archive/D/Dexter/S07D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,7.2. Sunshine and Frosty Swirl
+#EXTINF:3374,,7.2. Sunshine and Frosty Swirl
 dvd:///mnt/dvd/archive/D/Dexter/S07D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,7.3. Buck the System
+#EXTINF:3262,,7.3. Buck the System
 dvd:///mnt/dvd/archive/D/Dexter/S07D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,7.4. Run
+#EXTINF:3103,,7.4. Run
 dvd:///mnt/dvd/archive/D/Dexter/S07D02.%20E04%e2%80%9306.iso#2
-#EXTINF:0,,7.5. Swim Deep
+#EXTINF:3318,,7.5. Swim Deep
 dvd:///mnt/dvd/archive/D/Dexter/S07D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,7.6. Do the Wrong Thing
+#EXTINF:3129,,7.6. Do the Wrong Thing
 dvd:///mnt/dvd/archive/D/Dexter/S07D02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,7.7. Chemistry
+#EXTINF:3077,,7.7. Chemistry
 dvd:///mnt/dvd/archive/D/Dexter/S07D03.%20E07%e2%80%9309.iso#2
-#EXTINF:0,,7.8. Argentina
+#EXTINF:3330,,7.8. Argentina
 dvd:///mnt/dvd/archive/D/Dexter/S07D03.%20E07%e2%80%9309.iso#3
-#EXTINF:0,,7.9. Helter Skelter
+#EXTINF:3278,,7.9. Helter Skelter
 dvd:///mnt/dvd/archive/D/Dexter/S07D03.%20E07%e2%80%9309.iso#4
-#EXTINF:0,,7.10. The Dark… Whatever
+#EXTINF:3104,,7.10. The Dark… Whatever
 dvd:///mnt/dvd/archive/D/Dexter/S07D04.%20E10%e2%80%9312.iso#2
-#EXTINF:0,,7.11. Do You See What I See?
+#EXTINF:3315,,7.11. Do You See What I See?
 dvd:///mnt/dvd/archive/D/Dexter/S07D04.%20E10%e2%80%9312.iso#3
-#EXTINF:0,,7.12. Surprise, Motherfucker!
+#EXTINF:3227,,7.12. Surprise, Motherfucker!
 dvd:///mnt/dvd/archive/D/Dexter/S07D04.%20E10%e2%80%9312.iso#4
 
-#EXTINF:0,,8.1. A Beautiful Day
+#EXTINF:3049,,8.1. A Beautiful Day
 dvd:///mnt/dvd/archive/D/Dexter/S08D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,8.2. Every Silver Lining…
+#EXTINF:3295,,8.2. Every Silver Lining…
 dvd:///mnt/dvd/archive/D/Dexter/S08D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,8.3. What's Eating Dexter Morgan?
+#EXTINF:2814,,8.3. What's Eating Dexter Morgan?
 dvd:///mnt/dvd/archive/D/Dexter/S08D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,8.4. Scar Tissue
+#EXTINF:2882,,8.4. Scar Tissue
 dvd:///mnt/dvd/archive/D/Dexter/S08D02.%20E04%e2%80%9306.iso#2
-#EXTINF:0,,8.5. This Little Piggy
+#EXTINF:2766,,8.5. This Little Piggy
 dvd:///mnt/dvd/archive/D/Dexter/S08D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,8.6. A Little Reflection
+#EXTINF:3178,,8.6. A Little Reflection
 dvd:///mnt/dvd/archive/D/Dexter/S08D02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,8.7. Dress Code
+#EXTINF:3050,,8.7. Dress Code
 dvd:///mnt/dvd/archive/D/Dexter/S08D03.%20E07%e2%80%9309.iso#2
-#EXTINF:0,,8.8. Are We There Yet?
+#EXTINF:3018,,8.8. Are We There Yet?
 dvd:///mnt/dvd/archive/D/Dexter/S08D03.%20E07%e2%80%9309.iso#3
-#EXTINF:0,,8.9. Make Your Own Kind of Music
+#EXTINF:3205,,8.9. Make Your Own Kind of Music
 dvd:///mnt/dvd/archive/D/Dexter/S08D03.%20E07%e2%80%9309.iso#4
-#EXTINF:0,,8.10. Goodbye Miami
+#EXTINF:3054,,8.10. Goodbye Miami
 dvd:///mnt/dvd/archive/D/Dexter/S08D04.%20E10%e2%80%9312.iso#2
-#EXTINF:0,,8.11. Monkey in a Box
+#EXTINF:3027,,8.11. Monkey in a Box
 dvd:///mnt/dvd/archive/D/Dexter/S08D04.%20E10%e2%80%9312.iso#3
-#EXTINF:0,,8.12. Remember the Monsters?
+#EXTINF:3253,,8.12. Remember the Monsters?
 dvd:///mnt/dvd/archive/D/Dexter/S08D04.%20E10%e2%80%9312.iso#4
index 6da6abe..ba75152 100644 (file)
@@ -1,55 +1,55 @@
 #EXTM3U
 
-#EXTINF:0,,1.1. Ghost
+#EXTINF:2892,,1.1. Ghost
 dvd:///mnt/dvd/archive/D/Dollhouse/S01D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,1.2. The Target
+#EXTINF:2825,,1.2. The Target
 dvd:///mnt/dvd/archive/D/Dollhouse/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,1.3. Stage Fright
+#EXTINF:2844,,1.3. Stage Fright
 dvd:///mnt/dvd/archive/D/Dollhouse/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,1.4. Gray Hour
+#EXTINF:2795,,1.4. Gray Hour
 dvd:///mnt/dvd/archive/D/Dollhouse/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,1.5. True Believer
+#EXTINF:2862,,1.5. True Believer
 dvd:///mnt/dvd/archive/D/Dollhouse/S01D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,1.6. Man on the Street
+#EXTINF:2864,,1.6. Man on the Street
 dvd:///mnt/dvd/archive/D/Dollhouse/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,1.7. Echoes
+#EXTINF:2831,,1.7. Echoes
 dvd:///mnt/dvd/archive/D/Dollhouse/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,1.8. Needs
+#EXTINF:2862,,1.8. Needs
 dvd:///mnt/dvd/archive/D/Dollhouse/S01D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,1.9. A Spy in the House of Love
+#EXTINF:2863,,1.9. A Spy in the House of Love
 dvd:///mnt/dvd/archive/D/Dollhouse/S01D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,1.10. Haunted
+#EXTINF:2866,,1.10. Haunted
 dvd:///mnt/dvd/archive/D/Dollhouse/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,1.11. Briar Rose
+#EXTINF:2789,,1.11. Briar Rose
 dvd:///mnt/dvd/archive/D/Dollhouse/S01D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,1.12. Omega
+#EXTINF:2850,,1.12. Omega
 dvd:///mnt/dvd/archive/D/Dollhouse/S01D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,1.13. Epitaph One
+#EXTINF:2867,,1.13. Epitaph One
 dvd:///mnt/dvd/archive/D/Dollhouse/S01D04.%20E13.iso#1
 
-#EXTINF:0,,2.1. Vows
+#EXTINF:2509,,2.1. Vows
 dvd:///mnt/dvd/archive/D/Dollhouse/S02D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,2.2. Instinct
+#EXTINF:2524,,2.2. Instinct
 dvd:///mnt/dvd/archive/D/Dollhouse/S02D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,2.3. Belle Chose
+#EXTINF:2532,,2.3. Belle Chose
 dvd:///mnt/dvd/archive/D/Dollhouse/S02D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,2.4. Belonging
+#EXTINF:2530,,2.4. Belonging
 dvd:///mnt/dvd/archive/D/Dollhouse/S02D02.%20E04%e2%80%9307.iso#2
-#EXTINF:0,,2.5. The Public Eye
+#EXTINF:2491,,2.5. The Public Eye
 dvd:///mnt/dvd/archive/D/Dollhouse/S02D02.%20E04%e2%80%9307.iso#3
-#EXTINF:0,,2.6. The Left Hand
+#EXTINF:2532,,2.6. The Left Hand
 dvd:///mnt/dvd/archive/D/Dollhouse/S02D02.%20E04%e2%80%9307.iso#4
-#EXTINF:0,,2.7. Meet Jane Doe
+#EXTINF:2533,,2.7. Meet Jane Doe
 dvd:///mnt/dvd/archive/D/Dollhouse/S02D02.%20E04%e2%80%9307.iso#5
-#EXTINF:0,,2.8. A Love Supreme
+#EXTINF:2533,,2.8. A Love Supreme
 dvd:///mnt/dvd/archive/D/Dollhouse/S02D03.%20E08%e2%80%9311.iso#2
-#EXTINF:0,,2.9. Stop-Loss
+#EXTINF:2533,,2.9. Stop-Loss
 dvd:///mnt/dvd/archive/D/Dollhouse/S02D03.%20E08%e2%80%9311.iso#3
-#EXTINF:0,,2.10. The Attic
+#EXTINF:2525,,2.10. The Attic
 dvd:///mnt/dvd/archive/D/Dollhouse/S02D03.%20E08%e2%80%9311.iso#4
-#EXTINF:0,,2.11. Getting Closer
+#EXTINF:2533,,2.11. Getting Closer
 dvd:///mnt/dvd/archive/D/Dollhouse/S02D03.%20E08%e2%80%9311.iso#5
-#EXTINF:0,,2.12. The Hollow Men
+#EXTINF:2532,,2.12. The Hollow Men
 dvd:///mnt/dvd/archive/D/Dollhouse/S02D04.%20E12%e2%80%9313.iso#2
-#EXTINF:0,,2.13. Epitaph Two—Return
+#EXTINF:2533,,2.13. Epitaph Two—Return
 dvd:///mnt/dvd/archive/D/Dollhouse/S02D04.%20E12%e2%80%9313.iso#3
index 7d3eb2c..c5fca26 100644 (file)
@@ -1,10 +1,10 @@
 #EXTM3U
 
-#EXTINF:0,,1. The Lion
+#EXTINF:1492,,1. The Lion
 dvd:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94Lost%20in%20Time/01.%20Hartnell%20era.iso#10
-#EXTINF:0,,2. The Knight of Jaffa
+#EXTINF:1463,,2. The Knight of Jaffa
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S02E06%20P.%20The%20Crusade/E02.%20The%20Knight%20of%20Jaffa.flac
-#EXTINF:0,,3. The Wheel of Fortune
+#EXTINF:1493,,3. The Wheel of Fortune
 dvd:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94Lost%20in%20Time/01.%20Hartnell%20era.iso#7
-#EXTINF:0,,4. The Warlords
+#EXTINF:1474,,4. The Warlords
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S02E06%20P.%20The%20Crusade/E04.%20The%20Warlords.flac
index ffff628..20ce1ce 100644 (file)
@@ -1,10 +1,10 @@
 #EXTM3U
 
-#EXTINF:0,,The Highlanders—Part 1
+#EXTINF:1485,,The Highlanders—Part 1
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S04E04%20FF.%20The%20Highlanders/E01.flac
-#EXTINF:0,,The Highlanders—Part 2
+#EXTINF:1422,,The Highlanders—Part 2
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S04E04%20FF.%20The%20Highlanders/E02.flac
-#EXTINF:0,,The Highlanders—Part 3
+#EXTINF:1378,,The Highlanders—Part 3
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S04E04%20FF.%20The%20Highlanders/E03.flac
-#EXTINF:0,,The Highlanders—Part 4
+#EXTINF:1460,,The Highlanders—Part 4
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S04E04%20FF.%20The%20Highlanders/E04.flac
index 7de985e..799c743 100644 (file)
@@ -1,18 +1,18 @@
 #EXTM3U
 
-#EXTINF:0,,The Invasion—Part 1
+#EXTINF:1424,,The Invasion—Part 1
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S06E03%20VV.%20The%20Invasion%20%28parts%201%e2%80%934%29.iso#3
-#EXTINF:0,,The Invasion—Part 2
+#EXTINF:1468,,The Invasion—Part 2
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S06E03%20VV.%20The%20Invasion%20%28parts%201%e2%80%934%29.iso#4
-#EXTINF:0,,The Invasion—Part 3
+#EXTINF:1425,,The Invasion—Part 3
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S06E03%20VV.%20The%20Invasion%20%28parts%201%e2%80%934%29.iso#5
-#EXTINF:0,,The Invasion—Part 4
+#EXTINF:1386,,The Invasion—Part 4
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S06E03%20VV.%20The%20Invasion%20%28parts%201%e2%80%934%29.iso#6
-#EXTINF:0,,The Invasion—Part 5
+#EXTINF:1408,,The Invasion—Part 5
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S06E03%20VV.%20The%20Invasion%20%28parts%205%e2%80%938%29.iso#4
-#EXTINF:0,,The Invasion—Part 6
+#EXTINF:1401,,The Invasion—Part 6
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S06E03%20VV.%20The%20Invasion%20%28parts%205%e2%80%938%29.iso#5
-#EXTINF:0,,The Invasion—Part 7
+#EXTINF:1485,,The Invasion—Part 7
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S06E03%20VV.%20The%20Invasion%20%28parts%205%e2%80%938%29.iso#6
-#EXTINF:0,,The Invasion—Part 8
+#EXTINF:1439,,The Invasion—Part 8
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S06E03%20VV.%20The%20Invasion%20%28parts%205%e2%80%938%29.iso#7
index 249f897..3ee6ad4 100644 (file)
@@ -1,16 +1,16 @@
 #EXTM3U
 
-#EXTINF:0,,1. The Roof of the World
+#EXTINF:1457,,1. The Roof of the World
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S01E04%20D.%20Marco%20Polo/E01.%20The%20Roof%20of%20the%20World.flac
-#EXTINF:0,,2. The Singing Sands
+#EXTINF:1638,,2. The Singing Sands
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S01E04%20D.%20Marco%20Polo/E02.%20The%20Singing%20Sands.flac
-#EXTINF:0,,3. Five Hundred Eyes
+#EXTINF:1381,,3. Five Hundred Eyes
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S01E04%20D.%20Marco%20Polo/E03.%20Five%20Hundred%20Eyes.flac
-#EXTINF:0,,4. The Wall of Lies
+#EXTINF:1490,,4. The Wall of Lies
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S01E04%20D.%20Marco%20Polo/E04.%20The%20Wall%20of%20Lies.flac
-#EXTINF:0,,5. Rider from Shang-tu
+#EXTINF:1411,,5. Rider from Shang-tu
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S01E04%20D.%20Marco%20Polo/E05.%20Rider%20from%20Shang-tu.flac
-#EXTINF:0,,6. Mighty Kublai Khan
+#EXTINF:1530,,6. Mighty Kublai Khan
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S01E04%20D.%20Marco%20Polo/E06.%20Mighty%20Kublai%20Khan.flac
-#EXTINF:0,,7. Assassin at Peking
+#EXTINF:1474,,7. Assassin at Peking
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S01E04%20D.%20Marco%20Polo/E07.%20Assassin%20at%20Peking.flac
index 5dd6262..1ea3f12 100644 (file)
@@ -1,10 +1,10 @@
 #EXTM3U
 
-#EXTINF:0,,1. War of God
+#EXTINF:1506,,1. War of God
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E05%20W.%20The%20Massacre%20of%20St%20Bartholomew%27s%20Eve/E01.%20War%20of%20God.flac
-#EXTINF:0,,2. The Sea Beggar
+#EXTINF:1489,,2. The Sea Beggar
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E05%20W.%20The%20Massacre%20of%20St%20Bartholomew%27s%20Eve/E02.%20The%20Sea%20Beggar.flac
-#EXTINF:0,,3. Priest of Death
+#EXTINF:1496,,3. Priest of Death
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E05%20W.%20The%20Massacre%20of%20St%20Bartholomew%27s%20Eve/E03.%20Priest%20of%20Death.flac
-#EXTINF:0,,4. Bell of Doom
+#EXTINF:1525,,4. Bell of Doom
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E05%20W.%20The%20Massacre%20of%20St%20Bartholomew%27s%20Eve/E04.%20Bell%20of%20Doom.flac
index 7675721..a3ddf04 100644 (file)
@@ -1,28 +1,28 @@
 #EXTM3U
 
-#EXTINF:0,,0. Mission to the Unknown
+#EXTINF:1488,,0. Mission to the Unknown
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E02%20T-A.%20Mission%20to%20the%20Unknown/E01.flac
-#EXTINF:0,,1. The Nightmare Begins
+#EXTINF:1520,,1. The Nightmare Begins
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E04%20V.%20The%20Daleks%27%20Master%20Plan/E01.%20The%20Nightmare%20Begins.flac
-#EXTINF:0,,2. Day of Armageddon
+#EXTINF:1460,,2. Day of Armageddon
 dvd:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94Lost%20in%20Time/01.%20Hartnell%20era.iso#23
-#EXTINF:0,,3. Devil's Planet
+#EXTINF:1473,,3. Devil's Planet
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E04%20V.%20The%20Daleks%27%20Master%20Plan/E03.%20Devil%27s%20Planet.flac
-#EXTINF:0,,4. The Traitors
+#EXTINF:1485,,4. The Traitors
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E04%20V.%20The%20Daleks%27%20Master%20Plan/E04.%20The%20Traitors.flac
-#EXTINF:0,,5. Counter Plot
+#EXTINF:1445,,5. Counter Plot
 dvd:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94Lost%20in%20Time/01.%20Hartnell%20era.iso#13
-#EXTINF:0,,6. Coronas of the Sun
+#EXTINF:1496,,6. Coronas of the Sun
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E04%20V.%20The%20Daleks%27%20Master%20Plan/E06.%20Coronas%20of%20the%20Sun.flac
-#EXTINF:0,,7. The Feast of Steven
+#EXTINF:1490,,7. The Feast of Steven
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E04%20V.%20The%20Daleks%27%20Master%20Plan/E07.%20The%20Feast%20of%20Steven.flac
-#EXTINF:0,,8. Volcano
+#EXTINF:1495,,8. Volcano
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E04%20V.%20The%20Daleks%27%20Master%20Plan/E08.%20Volcano.flac
-#EXTINF:0,,9. Golden Death
+#EXTINF:1486,,9. Golden Death
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E04%20V.%20The%20Daleks%27%20Master%20Plan/E09.%20Golden%20Death.flac
-#EXTINF:0,,10. Escape Switch
+#EXTINF:1416,,10. Escape Switch
 dvd:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94Lost%20in%20Time/01.%20Hartnell%20era.iso#14
-#EXTINF:0,,11. The Abandoned Planet
+#EXTINF:1489,,11. The Abandoned Planet
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E04%20V.%20The%20Daleks%27%20Master%20Plan/E11.%20The%20Abandoned%20Planet.flac
-#EXTINF:0,,12. Destruction of Time
+#EXTINF:1421,,12. Destruction of Time
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E04%20V.%20The%20Daleks%27%20Master%20Plan/E12.%20Destruction%20of%20Time.flac
index 06e6c94..fd4f6fe 100644 (file)
@@ -1,14 +1,14 @@
 #EXTM3U
 
-#EXTINF:0,,The Space Pirates—Part 1
+#EXTINF:1463,,The Space Pirates—Part 1
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S06E06%20YY.%20The%20Space%20Pirates/E01.flac
-#EXTINF:0,,The Space Pirates—Part 2
+#EXTINF:1496,,The Space Pirates—Part 2
 dvd:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94Lost%20in%20Time/03.%20Troughton%20era,%20seasons%205%20%26%206.iso#18
-#EXTINF:0,,The Space Pirates—Part 3
+#EXTINF:1459,,The Space Pirates—Part 3
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S06E06%20YY.%20The%20Space%20Pirates/E03.flac
-#EXTINF:0,,The Space Pirates—Part 4
+#EXTINF:1382,,The Space Pirates—Part 4
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S06E06%20YY.%20The%20Space%20Pirates/E04.flac
-#EXTINF:0,,The Space Pirates—Part 5
+#EXTINF:1522,,The Space Pirates—Part 5
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S06E06%20YY.%20The%20Space%20Pirates/E05.flac
-#EXTINF:0,,The Space Pirates—Part 6
+#EXTINF:1494,,The Space Pirates—Part 6
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S06E06%20YY.%20The%20Space%20Pirates/E06.flac
index 1280000..4938adf 100644 (file)
@@ -1,10 +1,10 @@
 #EXTM3U
 
-#EXTINF:0,,The Savages—Part 1
+#EXTINF:1516,,The Savages—Part 1
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E09%20AA.%20The%20Savages/E01.flac
-#EXTINF:0,,The Savages—Part 2
+#EXTINF:1482,,The Savages—Part 2
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E09%20AA.%20The%20Savages/E02.flac
-#EXTINF:0,,The Savages—Part 3
+#EXTINF:1546,,The Savages—Part 3
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E09%20AA.%20The%20Savages/E03.flac
-#EXTINF:0,,The Savages—Part 4
+#EXTINF:1533,,The Savages—Part 4
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E09%20AA.%20The%20Savages/E04.flac
index d65a58d..7aba96c 100644 (file)
@@ -1,16 +1,16 @@
 #EXTM3U
 
-#EXTINF:0,,Doctor Who and the Silurians—Part 1
+#EXTINF:1459,,Doctor Who and the Silurians—Part 1
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S07E02%20BBB.%20Doctor%20Who%20and%20the%20Silurians%20%28parts%201%e2%80%934%29.iso#3
-#EXTINF:0,,Doctor Who and the Silurians—Part 2
+#EXTINF:1394,,Doctor Who and the Silurians—Part 2
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S07E02%20BBB.%20Doctor%20Who%20and%20the%20Silurians%20%28parts%201%e2%80%934%29.iso#4
-#EXTINF:0,,Doctor Who and the Silurians—Part 3
+#EXTINF:1403,,Doctor Who and the Silurians—Part 3
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S07E02%20BBB.%20Doctor%20Who%20and%20the%20Silurians%20%28parts%201%e2%80%934%29.iso#5
-#EXTINF:0,,Doctor Who and the Silurians—Part 4
+#EXTINF:1505,,Doctor Who and the Silurians—Part 4
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S07E02%20BBB.%20Doctor%20Who%20and%20the%20Silurians%20%28parts%201%e2%80%934%29.iso#6
-#EXTINF:0,,Doctor Who and the Silurians—Part 5
+#EXTINF:1440,,Doctor Who and the Silurians—Part 5
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S07E02%20BBB.%20Doctor%20Who%20and%20the%20Silurians%20%28parts%205%e2%80%937%29.iso#3
-#EXTINF:0,,Doctor Who and the Silurians—Part 6
+#EXTINF:1459,,Doctor Who and the Silurians—Part 6
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S07E02%20BBB.%20Doctor%20Who%20and%20the%20Silurians%20%28parts%205%e2%80%937%29.iso#4
-#EXTINF:0,,Doctor Who and the Silurians—Part 7
+#EXTINF:1471,,Doctor Who and the Silurians—Part 7
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S07E02%20BBB.%20Doctor%20Who%20and%20the%20Silurians%20%28parts%205%e2%80%937%29.iso#5
index 24cb0f5..0af05a4 100644 (file)
@@ -1,10 +1,10 @@
 #EXTM3U
 
-#EXTINF:0,,The Smugglers—Part 1
+#EXTINF:1523,,The Smugglers—Part 1
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S04E01%20CC.%20The%20Smugglers/E01.flac
-#EXTINF:0,,The Smugglers—Part 2
+#EXTINF:1494,,The Smugglers—Part 2
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S04E01%20CC.%20The%20Smugglers/E02.flac
-#EXTINF:0,,The Smugglers—Part 3
+#EXTINF:1470,,The Smugglers—Part 3
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S04E01%20CC.%20The%20Smugglers/E03.flac
-#EXTINF:0,,The Smugglers—Part 4
+#EXTINF:1430,,The Smugglers—Part 4
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S04E01%20CC.%20The%20Smugglers/E04.flac
index 029030b..4f2ecb8 100644 (file)
@@ -1,10 +1,10 @@
 #EXTM3U
 
-#EXTINF:0,,The Abominable Snowmen—Part 1
+#EXTINF:1378,,The Abominable Snowmen—Part 1
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S05E02%20NN.%20The%20Abominable%20Snowmen/E01.flac
-#EXTINF:0,,The Abominable Snowmen—Part 2
+#EXTINF:1395,,The Abominable Snowmen—Part 2
 dvd:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94Lost%20in%20Time/03.%20Troughton%20era,%20seasons%205%20%26%206.iso#12
-#EXTINF:0,,The Abominable Snowmen—Part 3
+#EXTINF:1432,,The Abominable Snowmen—Part 3
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S05E02%20NN.%20The%20Abominable%20Snowmen/E03.flac
-#EXTINF:0,,The Abominable Snowmen—Part 4
+#EXTINF:1463,,The Abominable Snowmen—Part 4
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S05E02%20NN.%20The%20Abominable%20Snowmen/E04.flac
index 4faae66..db7b633 100644 (file)
@@ -1,10 +1,10 @@
 #EXTM3U
 
-#EXTINF:0,,1. The Celestial Toyroom
+#EXTINF:1588,,1. The Celestial Toyroom
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E07%20Y.%20The%20Celestial%20Toymaker/E01.%20The%20Celestial%20Toyroom.flac
-#EXTINF:0,,2. The Hall of Dolls
+#EXTINF:1503,,2. The Hall of Dolls
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E07%20Y.%20The%20Celestial%20Toymaker/E02.%20The%20Hall%20of%20Dolls.flac
-#EXTINF:0,,3. The Dancing Floor
+#EXTINF:1460,,3. The Dancing Floor
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S03E07%20Y.%20The%20Celestial%20Toymaker/E03.%20The%20Dancing%20Floor.flac
-#EXTINF:0,,4. The Final Test
+#EXTINF:1430,,4. The Final Test
 dvd:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94Lost%20in%20Time/01.%20Hartnell%20era.iso#15
index ddce247..6007526 100644 (file)
@@ -1,22 +1,22 @@
 #EXTM3U
 
-#EXTINF:0,,The War Games—Part 1
+#EXTINF:1504,,The War Games—Part 1
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S06E07%20ZZ.%20The%20War%20Games%20%28parts%201%e2%80%935%29.iso#3
-#EXTINF:0,,The War Games—Part 2
+#EXTINF:1495,,The War Games—Part 2
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S06E07%20ZZ.%20The%20War%20Games%20%28parts%201%e2%80%935%29.iso#4
-#EXTINF:0,,The War Games—Part 3
+#EXTINF:1439,,The War Games—Part 3
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S06E07%20ZZ.%20The%20War%20Games%20%28parts%201%e2%80%935%29.iso#5
-#EXTINF:0,,The War Games—Part 4
+#EXTINF:1379,,The War Games—Part 4
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S06E07%20ZZ.%20The%20War%20Games%20%28parts%201%e2%80%935%29.iso#6
-#EXTINF:0,,The War Games—Part 5
+#EXTINF:1479,,The War Games—Part 5
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S06E07%20ZZ.%20The%20War%20Games%20%28parts%201%e2%80%935%29.iso#7
-#EXTINF:0,,The War Games—Part 6
+#EXTINF:1379,,The War Games—Part 6
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S06E07%20ZZ.%20The%20War%20Games%20%28parts%206%e2%80%9310%29.iso#3
-#EXTINF:0,,The War Games—Part 7
+#EXTINF:1352,,The War Games—Part 7
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S06E07%20ZZ.%20The%20War%20Games%20%28parts%206%e2%80%9310%29.iso#4
-#EXTINF:0,,The War Games—Part 8
+#EXTINF:1479,,The War Games—Part 8
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S06E07%20ZZ.%20The%20War%20Games%20%28parts%206%e2%80%9310%29.iso#5
-#EXTINF:0,,The War Games—Part 9
+#EXTINF:1480,,The War Games—Part 9
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S06E07%20ZZ.%20The%20War%20Games%20%28parts%206%e2%80%9310%29.iso#6
-#EXTINF:0,,The War Games—Part 10
+#EXTINF:1469,,The War Games—Part 10
 dvd:///mnt/dvd/archive/D/Doctor%20Who/S06E07%20ZZ.%20The%20War%20Games%20%28parts%206%e2%80%9310%29.iso#7
index 7eddd65..6547f2b 100644 (file)
@@ -1,14 +1,14 @@
 #EXTM3U
 
-#EXTINF:0,,The Wheel in Space—Part 1
+#EXTINF:1441,,The Wheel in Space—Part 1
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S05E07%20SS.%20The%20Wheel%20in%20Space/E01.flac
-#EXTINF:0,,The Wheel in Space—Part 2
+#EXTINF:1395,,The Wheel in Space—Part 2
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S05E07%20SS.%20The%20Wheel%20in%20Space/E02.flac
-#EXTINF:0,,The Wheel in Space—Part 3
+#EXTINF:1464,,The Wheel in Space—Part 3
 dvd:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94Lost%20in%20Time/03.%20Troughton%20era,%20seasons%205%20%26%206.iso#16
-#EXTINF:0,,The Wheel in Space—Part 4
+#EXTINF:1484,,The Wheel in Space—Part 4
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S05E07%20SS.%20The%20Wheel%20in%20Space/E04.flac
-#EXTINF:0,,The Wheel in Space—Part 5
+#EXTINF:1321,,The Wheel in Space—Part 5
 file:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94The%20Lost%20TV%20Episodes%20%28audio%29/S05E07%20SS.%20The%20Wheel%20in%20Space/E05.flac
-#EXTINF:0,,The Wheel in Space—Part 6
+#EXTINF:1385,,The Wheel in Space—Part 6
 dvd:///mnt/dvd/archive/D/Doctor%20Who%e2%80%94Lost%20in%20Time/03.%20Troughton%20era,%20seasons%205%20%26%206.iso#14
index 9f281a0..6a25ded 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,Episode 1.1
+#EXTINF:2862,,Episode 1.1
 dvd:///mnt/dvd/archive/E/Engrenages/S01D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,Episode 1.2
+#EXTINF:3053,,Episode 1.2
 dvd:///mnt/dvd/archive/E/Engrenages/S01D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Episode 1.3
+#EXTINF:3039,,Episode 1.3
 dvd:///mnt/dvd/archive/E/Engrenages/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Episode 1.4
+#EXTINF:2966,,Episode 1.4
 dvd:///mnt/dvd/archive/E/Engrenages/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Episode 1.5
+#EXTINF:2902,,Episode 1.5
 dvd:///mnt/dvd/archive/E/Engrenages/S01D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,Episode 1.6
+#EXTINF:2867,,Episode 1.6
 dvd:///mnt/dvd/archive/E/Engrenages/S01D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Episode 1.7
+#EXTINF:2950,,Episode 1.7
 dvd:///mnt/dvd/archive/E/Engrenages/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Episode 1.8
+#EXTINF:2808,,Episode 1.8
 dvd:///mnt/dvd/archive/E/Engrenages/S01D02.%20E05%e2%80%9308.iso#4
 
-#EXTINF:0,,Episode 2.1
+#EXTINF:2909,,Episode 2.1
 dvd:///mnt/dvd/archive/E/Engrenages/S02D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Episode 2.2
+#EXTINF:3199,,Episode 2.2
 dvd:///mnt/dvd/archive/E/Engrenages/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Episode 2.3
+#EXTINF:3048,,Episode 2.3
 dvd:///mnt/dvd/archive/E/Engrenages/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Episode 2.4
+#EXTINF:3310,,Episode 2.4
 dvd:///mnt/dvd/archive/E/Engrenages/S02D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Episode 2.5
+#EXTINF:3036,,Episode 2.5
 dvd:///mnt/dvd/archive/E/Engrenages/S02D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Episode 2.6
+#EXTINF:3307,,Episode 2.6
 dvd:///mnt/dvd/archive/E/Engrenages/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Episode 2.7
+#EXTINF:3143,,Episode 2.7
 dvd:///mnt/dvd/archive/E/Engrenages/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Episode 2.8
+#EXTINF:3131,,Episode 2.8
 dvd:///mnt/dvd/archive/E/Engrenages/S02D02.%20E05%e2%80%9308.iso#6
 
-#EXTINF:0,,Episode 3.1
+#EXTINF:3141,,Episode 3.1
 dvd:///mnt/dvd/archive/E/Engrenages/S03D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Episode 3.2
+#EXTINF:3331,,Episode 3.2
 dvd:///mnt/dvd/archive/E/Engrenages/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Episode 3.3
+#EXTINF:3220,,Episode 3.3
 dvd:///mnt/dvd/archive/E/Engrenages/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Episode 3.4
+#EXTINF:3295,,Episode 3.4
 dvd:///mnt/dvd/archive/E/Engrenages/S03D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Episode 3.5
+#EXTINF:3346,,Episode 3.5
 dvd:///mnt/dvd/archive/E/Engrenages/S03D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Episode 3.6
+#EXTINF:3492,,Episode 3.6
 dvd:///mnt/dvd/archive/E/Engrenages/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Episode 3.7
+#EXTINF:3281,,Episode 3.7
 dvd:///mnt/dvd/archive/E/Engrenages/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Episode 3.8
+#EXTINF:3242,,Episode 3.8
 dvd:///mnt/dvd/archive/E/Engrenages/S03D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,Episode 3.9
+#EXTINF:3151,,Episode 3.9
 dvd:///mnt/dvd/archive/E/Engrenages/S03D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,Episode 3.10
+#EXTINF:3321,,Episode 3.10
 dvd:///mnt/dvd/archive/E/Engrenages/S03D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,Episode 3.11
+#EXTINF:3220,,Episode 3.11
 dvd:///mnt/dvd/archive/E/Engrenages/S03D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,Episode 3.12
+#EXTINF:3302,,Episode 3.12
 dvd:///mnt/dvd/archive/E/Engrenages/S03D03.%20E09%e2%80%9312.iso#6
 
-#EXTINF:0,,Episode 4.1
+#EXTINF:3187,,Episode 4.1
 dvd:///mnt/dvd/archive/E/Engrenages/S04D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Episode 4.2
+#EXTINF:2970,,Episode 4.2
 dvd:///mnt/dvd/archive/E/Engrenages/S04D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Episode 4.3
+#EXTINF:3127,,Episode 4.3
 dvd:///mnt/dvd/archive/E/Engrenages/S04D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,Episode 4.4
+#EXTINF:3038,,Episode 4.4
 dvd:///mnt/dvd/archive/E/Engrenages/S04D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Episode 4.5
+#EXTINF:2972,,Episode 4.5
 dvd:///mnt/dvd/archive/E/Engrenages/S04D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Episode 4.6
+#EXTINF:3210,,Episode 4.6
 dvd:///mnt/dvd/archive/E/Engrenages/S04D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Episode 4.7
+#EXTINF:3224,,Episode 4.7
 dvd:///mnt/dvd/archive/E/Engrenages/S04D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,Episode 4.8
+#EXTINF:3236,,Episode 4.8
 dvd:///mnt/dvd/archive/E/Engrenages/S04D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,Episode 4.9
+#EXTINF:3136,,Episode 4.9
 dvd:///mnt/dvd/archive/E/Engrenages/S04D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,Episode 4.10
+#EXTINF:3136,,Episode 4.10
 dvd:///mnt/dvd/archive/E/Engrenages/S04D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,Episode 4.11
+#EXTINF:3602,,Episode 4.11
 dvd:///mnt/dvd/archive/E/Engrenages/S04D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,Episode 4.12
+#EXTINF:4081,,Episode 4.12
 dvd:///mnt/dvd/archive/E/Engrenages/S04D03.%20E09%e2%80%9312.iso#6
 
-#EXTINF:0,,Episode 5.1
+#EXTINF:3377,,Episode 5.1
 dvd:///mnt/dvd/archive/E/Engrenages/S05D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Episode 5.2
+#EXTINF:3132,,Episode 5.2
 dvd:///mnt/dvd/archive/E/Engrenages/S05D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Episode 5.3
+#EXTINF:3191,,Episode 5.3
 dvd:///mnt/dvd/archive/E/Engrenages/S05D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,Episode 5.4
+#EXTINF:3192,,Episode 5.4
 dvd:///mnt/dvd/archive/E/Engrenages/S05D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Episode 5.5
+#EXTINF:3344,,Episode 5.5
 dvd:///mnt/dvd/archive/E/Engrenages/S05D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Episode 5.6
+#EXTINF:3287,,Episode 5.6
 dvd:///mnt/dvd/archive/E/Engrenages/S05D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Episode 5.7
+#EXTINF:3194,,Episode 5.7
 dvd:///mnt/dvd/archive/E/Engrenages/S05D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,Episode 5.8
+#EXTINF:3169,,Episode 5.8
 dvd:///mnt/dvd/archive/E/Engrenages/S05D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,Episode 5.9
+#EXTINF:3140,,Episode 5.9
 dvd:///mnt/dvd/archive/E/Engrenages/S05D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,Episode 5.10
+#EXTINF:3113,,Episode 5.10
 dvd:///mnt/dvd/archive/E/Engrenages/S05D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,Episode 5.11
+#EXTINF:2728,,Episode 5.11
 dvd:///mnt/dvd/archive/E/Engrenages/S05D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,Episode 5.12
+#EXTINF:3043,,Episode 5.12
 dvd:///mnt/dvd/archive/E/Engrenages/S05D03.%20E09%e2%80%9312.iso#6
index 354257c..c04f4bc 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Pilot
+#EXTINF:2794,,1.1. Pilot
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,1.2. China Rain
+#EXTINF:2775,,1.2. China Rain
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,1.3. The Defector
+#EXTINF:2786,,1.3. The Defector
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,1.4. The Lock Box
+#EXTINF:2713,,1.4. The Lock Box
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,1.5. Lady Cop
+#EXTINF:2795,,1.5. Lady Cop
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,1.6. The Confirmation Day
+#EXTINF:2795,,1.6. The Confirmation Day
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,1.7. The Children's Song
+#EXTINF:2913,,1.7. The Children's Song
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,1.8. The Distant Fire
+#EXTINF:2910,,1.8. The Distant Fire
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,1.9. Mama's Boy
+#EXTINF:2792,,1.9. Mama's Boy
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,1.10. Bump and Run
+#EXTINF:2794,,1.10. Bump and Run
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,1.11. Desperately
+#EXTINF:2790,,1.11. Desperately
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,1.12. Reign of Terror
+#EXTINF:2816,,1.12. Reign of Terror
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,1.13. Back Home
+#EXTINF:2794,,1.13. Back Home
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,1.14. Out of the Past
+#EXTINF:2783,,1.14. Out of the Past
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,1.15. Dead Drop
+#EXTINF:2793,,1.15. Dead Drop
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,1.16. Wash-Up
+#EXTINF:2750,,1.16. Wash-Up
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,1.17. Torn
+#EXTINF:2795,,1.17. Torn
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D05.%20E17%e2%80%9319.iso#3
-#EXTINF:0,,1.18. Unnatural Causes
+#EXTINF:2798,,1.18. Unnatural Causes
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D05.%20E17%e2%80%9319.iso#4
-#EXTINF:0,,1.19. Breakpoint
+#EXTINF:2793,,1.19. Breakpoint
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D05.%20E17%e2%80%9319.iso#5
-#EXTINF:0,,1.20. No Conscience
+#EXTINF:2784,,1.20. No Conscience
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D06.%20E20%e2%80%9322.iso#3
-#EXTINF:0,,1.21. Unpunished Crimes
+#EXTINF:2790,,1.21. Unpunished Crimes
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D06.%20E20%e2%80%9322.iso#4
-#EXTINF:0,,1.22. Pretenders
+#EXTINF:2785,,1.22. Pretenders
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S01D06.%20E20%e2%80%9322.iso#5
 
-#EXTINF:0,,2.1. Prelude
+#EXTINF:2765,,2.1. Prelude
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,2.2. Nocturne
+#EXTINF:2756,,2.2. Nocturne
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,2.3. A Community of Civilized Men
+#EXTINF:2756,,2.3. A Community of Civilized Men
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.4. Joyride
+#EXTINF:2761,,2.4. Joyride
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,2.5. Shades of Darkness
+#EXTINF:2768,,2.5. Shades of Darkness
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,2.6. Nightscape
+#EXTINF:2751,,2.6. Nightscape
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,2.7. Counterfire
+#EXTINF:2758,,2.7. Counterfire
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.8. The Line
+#EXTINF:2765,,2.8. The Line
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,2.9. Tip on a Sure Thing
+#EXTINF:2767,,2.9. Tip on a Sure Thing
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,2.10. The Cup
+#EXTINF:2749,,2.10. The Cup
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,2.11. Heartstrings
+#EXTINF:2761,,2.11. Heartstrings
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,2.12. High Performance
+#EXTINF:2807,,2.12. High Performance
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,2.13. Beyond Control
+#EXTINF:2769,,2.13. Beyond Control
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,2.14. Carnal Persuasion
+#EXTINF:2754,,2.14. Carnal Persuasion
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,2.15. Memories of Manon (part 1)
+#EXTINF:2759,,2.15. Memories of Manon (part 1)
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,2.16. Memories of Manon (part 2)
+#EXTINF:2764,,2.16. Memories of Manon (part 2)
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,2.17. Solo
+#EXTINF:2783,,2.17. Solo
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,2.18. A Place to Stay
+#EXTINF:2868,,2.18. A Place to Stay
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,2.19. Coal Black Soul
+#EXTINF:2764,,2.19. Coal Black Soul
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,2.20. First Light
+#EXTINF:2781,,2.20. First Light
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,2.21. Hand and Glove
+#EXTINF:2764,,2.21. Hand and Glove
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D06.%20E21%e2%80%9322.iso#2
-#EXTINF:0,,2.22. Re-Entry
+#EXTINF:2773,,2.22. Re-Entry
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S02D06.%20E21%e2%80%9322.iso#3
 
-#EXTINF:0,,3.1. Blood & Wine (part 1)
+#EXTINF:2607,,3.1. Blood & Wine (part 1)
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,3.2. Blood & Wine (part 2)
+#EXTINF:3076,,3.2. Blood & Wine (part 2)
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,3.3. Suspicion of Innocence
+#EXTINF:2730,,3.3. Suspicion of Innocence
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,3.4. In the Money
+#EXTINF:2707,,3.4. In the Money
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,3.5. Encounter in a Closed Room
+#EXTINF:2733,,3.5. Encounter in a Closed Room
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,3.6. Mission: McCall (part 1)
+#EXTINF:2761,,3.6. Mission: McCall (part 1)
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,3.7. Mission: McCall (part 2)
+#EXTINF:2765,,3.7. Mission: McCall (part 2)
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,3.8. Shadow Play
+#EXTINF:2798,,3.8. Shadow Play
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,3.9. Inner View
+#EXTINF:2746,,3.9. Inner View
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,3.10. The Rehearsal
+#EXTINF:2779,,3.10. The Rehearsal
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,3.11. Christmas Presence
+#EXTINF:2732,,3.11. Christmas Presence
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,3.12. A Dance on the Dark Side
+#EXTINF:2781,,3.12. A Dance on the Dark Side
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,3.13. The Child Broker
+#EXTINF:2746,,3.13. The Child Broker
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,3.14. Video Games
+#EXTINF:2752,,3.14. Video Games
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,3.15. Something Green
+#EXTINF:2709,,3.15. Something Green
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,3.16. The Mystery of Manon (part 1)
+#EXTINF:2789,,3.16. The Mystery of Manon (part 1)
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,3.17. The Mystery of Manon (part 2)
+#EXTINF:2729,,3.17. The Mystery of Manon (part 2)
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,3.18. No Place Like Home
+#EXTINF:2750,,3.18. No Place Like Home
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,3.19. Last Call
+#EXTINF:2714,,3.19. Last Call
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,3.20. Regrets Only
+#EXTINF:2741,,3.20. Regrets Only
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,3.21. Target of Choice
+#EXTINF:2698,,3.21. Target of Choice
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D06.%20E21%e2%80%9322.iso#2
-#EXTINF:0,,3.22. Always a Lady
+#EXTINF:2772,,3.22. Always a Lady
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S03D06.%20E21%e2%80%9322.iso#3
 
-#EXTINF:0,,4.1. The Last Campaign
+#EXTINF:2714,,4.1. The Last Campaign
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,4.2. Sea of Fire
+#EXTINF:2743,,4.2. Sea of Fire
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,4.3. Riding the Elephant
+#EXTINF:2754,,4.3. Riding the Elephant
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,4.4. Eighteen with a Bullet
+#EXTINF:2680,,4.4. Eighteen with a Bullet
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,4.5. Day of the Covenant
+#EXTINF:2757,,4.5. Day of the Covenant
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,4.6. Splinters
+#EXTINF:2705,,4.6. Splinters
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,4.7. Making of a Martyr
+#EXTINF:2725,,4.7. Making of a Martyr
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,4.8. The Sins of Our Fathers
+#EXTINF:2704,,4.8. The Sins of Our Fathers
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,4.9. The Visitation
+#EXTINF:2742,,4.9. The Visitation
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,4.10. Past Imperfect
+#EXTINF:2695,,4.10. Past Imperfect
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,4.11. Trial by Ordeal
+#EXTINF:2715,,4.11. Trial by Ordeal
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,4.12. Silent Fury
+#EXTINF:2735,,4.12. Silent Fury
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,4.13. Lullaby of Darkness
+#EXTINF:2729,,4.13. Lullaby of Darkness
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,4.14. 17 Zebra
+#EXTINF:2703,,4.14. 17 Zebra
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,4.15. Starfire
+#EXTINF:2694,,4.15. Starfire
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,4.16. Time Present, Time Past
+#EXTINF:2698,,4.16. Time Present, Time Past
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,4.17. Prisoners of Conscience
+#EXTINF:2733,,4.17. Prisoners of Conscience
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,4.18. The Caper
+#EXTINF:2735,,4.18. The Caper
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,4.19. Heart of Justice
+#EXTINF:2693,,4.19. Heart of Justice
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,4.20. Race Traitors
+#EXTINF:2663,,4.20. Race Traitors
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,4.21. Endgame
+#EXTINF:2707,,4.21. Endgame
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D06.%20E21%e2%80%9322.iso#2
-#EXTINF:0,,4.22. Suicide Squad
+#EXTINF:2688,,4.22. Suicide Squad
 dvd:///mnt/dvd/archive/E/The%20Equalizer%20%281985%29/S04D06.%20E21%e2%80%9322.iso#3
index 22caa08..089d01f 100644 (file)
@@ -1,27 +1,27 @@
 #EXTM3U
 
-#EXTINF:0,,1.1. A Touch of Class
+#EXTINF:1821,,1.1. A Touch of Class
 dvd:///mnt/dvd/archive/F/Fawlty%20Towers/Series%20One.iso#1
-#EXTINF:0,,1.2. The Builders
+#EXTINF:1695,,1.2. The Builders
 dvd:///mnt/dvd/archive/F/Fawlty%20Towers/Series%20One.iso#2
-#EXTINF:0,,1.3. The Wedding Party
+#EXTINF:2000,,1.3. The Wedding Party
 dvd:///mnt/dvd/archive/F/Fawlty%20Towers/Series%20One.iso#3
-#EXTINF:0,,1.4. The Hotel Inspectors
+#EXTINF:1728,,1.4. The Hotel Inspectors
 dvd:///mnt/dvd/archive/F/Fawlty%20Towers/Series%20One.iso#4
-#EXTINF:0,,1.5. Gourmet Night
+#EXTINF:1717,,1.5. Gourmet Night
 dvd:///mnt/dvd/archive/F/Fawlty%20Towers/Series%20One.iso#5
-#EXTINF:0,,1.6. The Germans
+#EXTINF:1875,,1.6. The Germans
 dvd:///mnt/dvd/archive/F/Fawlty%20Towers/Series%20One.iso#6
 
-#EXTINF:0,,2.1. Communication Problems
+#EXTINF:1885,,2.1. Communication Problems
 dvd:///mnt/dvd/archive/F/Fawlty%20Towers/Series%20Two.iso#1
-#EXTINF:0,,2.2. The Psychiatrist
+#EXTINF:2178,,2.2. The Psychiatrist
 dvd:///mnt/dvd/archive/F/Fawlty%20Towers/Series%20Two.iso#2
-#EXTINF:0,,2.3. Waldorf Salad
+#EXTINF:1923,,2.3. Waldorf Salad
 dvd:///mnt/dvd/archive/F/Fawlty%20Towers/Series%20Two.iso#3
-#EXTINF:0,,2.4. The Kipper and the Corpse
+#EXTINF:1893,,2.4. The Kipper and the Corpse
 dvd:///mnt/dvd/archive/F/Fawlty%20Towers/Series%20Two.iso#4
-#EXTINF:0,,2.5. The Anniversary
+#EXTINF:1748,,2.5. The Anniversary
 dvd:///mnt/dvd/archive/F/Fawlty%20Towers/Series%20Two.iso#5
-#EXTINF:0,,2.6. Basil the Rat
+#EXTINF:2025,,2.6. Basil the Rat
 dvd:///mnt/dvd/archive/F/Fawlty%20Towers/Series%20Two.iso#6
index 76ea373..d3d5792 100644 (file)
@@ -1,33 +1,33 @@
 #EXTM3U
 
-#EXTINF:0,,1. Serenity
+#EXTINF:4991,,1. Serenity
 dvd:///mnt/dvd/archive/F/Firefly/01.%20E01%e2%80%9303.iso#1
-#EXTINF:0,,2. The Train Job
+#EXTINF:2465,,2. The Train Job
 dvd:///mnt/dvd/archive/F/Firefly/01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,3. Bushwhacked
+#EXTINF:2529,,3. Bushwhacked
 dvd:///mnt/dvd/archive/F/Firefly/01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,4. Shindig
+#EXTINF:2533,,4. Shindig
 dvd:///mnt/dvd/archive/F/Firefly/02.%20E04%e2%80%9307.iso#1
-#EXTINF:0,,5. Safe
+#EXTINF:2462,,5. Safe
 dvd:///mnt/dvd/archive/F/Firefly/02.%20E04%e2%80%9307.iso#2
-#EXTINF:0,,6. Our Mrs. Reynolds
+#EXTINF:2531,,6. Our Mrs. Reynolds
 dvd:///mnt/dvd/archive/F/Firefly/02.%20E04%e2%80%9307.iso#3
-#EXTINF:0,,7. Jaynestown
+#EXTINF:2532,,7. Jaynestown
 dvd:///mnt/dvd/archive/F/Firefly/02.%20E04%e2%80%9307.iso#4
-#EXTINF:0,,8. Out of Gas
+#EXTINF:2532,,8. Out of Gas
 dvd:///mnt/dvd/archive/F/Firefly/03.%20E08%e2%80%9311.iso#1
-#EXTINF:0,,9. Ariel
+#EXTINF:2466,,9. Ariel
 dvd:///mnt/dvd/archive/F/Firefly/03.%20E08%e2%80%9311.iso#2
-#EXTINF:0,,10. War Stories
+#EXTINF:2470,,10. War Stories
 dvd:///mnt/dvd/archive/F/Firefly/03.%20E08%e2%80%9311.iso#3
-#EXTINF:0,,11. Trash
+#EXTINF:2517,,11. Trash
 dvd:///mnt/dvd/archive/F/Firefly/03.%20E08%e2%80%9311.iso#4
-#EXTINF:0,,12. The Message
+#EXTINF:2538,,12. The Message
 dvd:///mnt/dvd/archive/F/Firefly/04.%20E12%e2%80%9314.iso#1
-#EXTINF:0,,13. Heart of Gold
+#EXTINF:2446,,13. Heart of Gold
 dvd:///mnt/dvd/archive/F/Firefly/04.%20E12%e2%80%9314.iso#2
-#EXTINF:0,,14. Objects in Space
+#EXTINF:2538,,14. Objects in Space
 dvd:///mnt/dvd/archive/F/Firefly/04.%20E12%e2%80%9314.iso#3
 
-#EXTINF:0,,Serenity
+#EXTINF:6844,,Serenity
 dvd:///mnt/dvd/archive/S/Serenity.iso#1
index 0b81c15..e128a1c 100644 (file)
@@ -1,95 +1,95 @@
 #EXTM3U
 
-#EXTINF:0,,1.1. Whither Canada?
+#EXTINF:1877,,1.1. Whither Canada?
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S01D01.%20E01%e2%80%9305.iso#2:2
-#EXTINF:0,,1.2. Sex and Violence
+#EXTINF:1981,,1.2. Sex and Violence
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S01D01.%20E01%e2%80%9305.iso#3:2
-#EXTINF:0,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away
+#EXTINF:1850,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S01D01.%20E01%e2%80%9305.iso#4:2
-#EXTINF:0,,1.4. Owl-Stretching Time
+#EXTINF:1747,,1.4. Owl-Stretching Time
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S01D01.%20E01%e2%80%9305.iso#5:2
-#EXTINF:0,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century
+#EXTINF:1731,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S01D01.%20E01%e2%80%9305.iso#6:2
-#EXTINF:0,,1.6. It's the Arts
+#EXTINF:1770,,1.6. It's the Arts
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S01D02.%20E06%e2%80%9310.iso#2:2
-#EXTINF:0,,1.7. You're No Fun Any More
+#EXTINF:1786,,1.7. You're No Fun Any More
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S01D02.%20E06%e2%80%9310.iso#3:2
-#EXTINF:0,,1.8. Full Frontal Nudity
+#EXTINF:1736,,1.8. Full Frontal Nudity
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S01D02.%20E06%e2%80%9310.iso#4:2
-#EXTINF:0,,1.9. The Ant, an Introduction
+#EXTINF:1719,,1.9. The Ant, an Introduction
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S01D02.%20E06%e2%80%9310.iso#5:2
-#EXTINF:0,,1.10. Untitled
+#EXTINF:1830,,1.10. Untitled
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S01D02.%20E06%e2%80%9310.iso#6:2
-#EXTINF:0,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom
+#EXTINF:1848,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S01D03.%20E11%e2%80%9313.iso#2:2
-#EXTINF:0,,1.12. The Naked Ant
+#EXTINF:1885,,1.12. The Naked Ant
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S01D03.%20E11%e2%80%9313.iso#3:2
-#EXTINF:0,,1.13. Intermission
+#EXTINF:1760,,1.13. Intermission
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S01D03.%20E11%e2%80%9313.iso#4:2
 
-#EXTINF:0,,2.1. ‘Face the Press’
+#EXTINF:1806,,2.1. ‘Face the Press’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S02D01.%20E01%e2%80%9305.iso#2:2
-#EXTINF:0,,2.2. The Spanish Inquisition
+#EXTINF:1809,,2.2. The Spanish Inquisition
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S02D01.%20E01%e2%80%9305.iso#3:2
-#EXTINF:0,,2.3. Déjà Vu
+#EXTINF:1799,,2.3. Déjà Vu
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S02D01.%20E01%e2%80%9305.iso#4:2
-#EXTINF:0,,2.4. The Buzz Aldrin Show
+#EXTINF:1798,,2.4. The Buzz Aldrin Show
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S02D01.%20E01%e2%80%9305.iso#5:2
-#EXTINF:0,,2.5. Live from the Grill-o-mat
+#EXTINF:1787,,2.5. Live from the Grill-o-mat
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S02D01.%20E01%e2%80%9305.iso#6:2
-#EXTINF:0,,2.6. It's a Living
+#EXTINF:1786,,2.6. It's a Living
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S02D02.%20E06%e2%80%9310.iso#2
-#EXTINF:0,,2.7. The Attila the Hun Show
+#EXTINF:1647,,2.7. The Attila the Hun Show
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S02D02.%20E06%e2%80%9310.iso#3:2
-#EXTINF:0,,2.8. Archæology Today
+#EXTINF:1759,,2.8. Archæology Today
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S02D02.%20E06%e2%80%9310.iso#4:2
-#EXTINF:0,,2.9. How to Recognize Different Parts of the Body
+#EXTINF:1799,,2.9. How to Recognize Different Parts of the Body
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S02D02.%20E06%e2%80%9310.iso#5:2
-#EXTINF:0,,2.10. Scott of the Antarctic
+#EXTINF:1783,,2.10. Scott of the Antarctic
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S02D02.%20E06%e2%80%9310.iso#6:2
-#EXTINF:0,,2.11. How Not to Be Seen
+#EXTINF:1774,,2.11. How Not to Be Seen
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S02D03.%20E11%e2%80%9313.iso#2:2
-#EXTINF:0,,2.12. Spam
+#EXTINF:1820,,2.12. Spam
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S02D03.%20E11%e2%80%9313.iso#3:2
-#EXTINF:0,,2.13. Royal Episode 13
+#EXTINF:1805,,2.13. Royal Episode 13
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S02D03.%20E11%e2%80%9313.iso#4:2
 
-#EXTINF:0,,3.1. Whicker's World
+#EXTINF:1846,,3.1. Whicker's World
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S03D01.%20E01%e2%80%9305.iso#2:2
-#EXTINF:0,,3.2. Mr. and Mrs. Brian Norris' Ford Popular
+#EXTINF:1743,,3.2. Mr. and Mrs. Brian Norris' Ford Popular
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S03D01.%20E01%e2%80%9305.iso#3:2
-#EXTINF:0,,3.3. The Money Programme
+#EXTINF:1721,,3.3. The Money Programme
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S03D01.%20E01%e2%80%9305.iso#4:2
-#EXTINF:0,,3.4. Blood, Devastation, Death, War and Horror
+#EXTINF:1792,,3.4. Blood, Devastation, Death, War and Horror
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S03D01.%20E01%e2%80%9305.iso#5:2
-#EXTINF:0,,3.5. The All-England Summarize Proust Competition
+#EXTINF:1840,,3.5. The All-England Summarize Proust Competition
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S03D01.%20E01%e2%80%9305.iso#6:2
-#EXTINF:0,,3.6. The War Against Pornography
+#EXTINF:1700,,3.6. The War Against Pornography
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S03D02.%20E06%e2%80%9310.iso#2:2
-#EXTINF:0,,3.7. Salad Days
+#EXTINF:1718,,3.7. Salad Days
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S03D02.%20E06%e2%80%9310.iso#3:2
-#EXTINF:0,,3.8. The Cycling Tour
+#EXTINF:1859,,3.8. The Cycling Tour
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S03D02.%20E06%e2%80%9310.iso#4:2
-#EXTINF:0,,3.9. The Nude Organist
+#EXTINF:1898,,3.9. The Nude Organist
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S03D02.%20E06%e2%80%9310.iso#5:2
-#EXTINF:0,,3.10. E. Henry Tripshaw's Disease
+#EXTINF:1668,,3.10. E. Henry Tripshaw's Disease
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S03D02.%20E06%e2%80%9310.iso#6:2
-#EXTINF:0,,3.11. Dennis Moore
+#EXTINF:1881,,3.11. Dennis Moore
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S03D03.%20E11%e2%80%9313.iso#2:2
-#EXTINF:0,,3.12. A Book at Bedtime
+#EXTINF:1729,,3.12. A Book at Bedtime
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S03D03.%20E11%e2%80%9313.iso#3:2
-#EXTINF:0,,3.13. Grandstand
+#EXTINF:1591,,3.13. Grandstand
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S03D03.%20E11%e2%80%9313.iso#4:2
 
-#EXTINF:0,,4.1. The Golden Age of Ballooning
+#EXTINF:1685,,4.1. The Golden Age of Ballooning
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S04D01.%20E01%e2%80%9306.iso#2:2
-#EXTINF:0,,4.2. Michael Ellis
+#EXTINF:1731,,4.2. Michael Ellis
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S04D01.%20E01%e2%80%9306.iso#3:2
-#EXTINF:0,,4.3. Light Entertainment War
+#EXTINF:1960,,4.3. Light Entertainment War
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S04D01.%20E01%e2%80%9306.iso#4:2
-#EXTINF:0,,4.4. Hamlet
+#EXTINF:1645,,4.4. Hamlet
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S04D01.%20E01%e2%80%9306.iso#5:2
-#EXTINF:0,,4.5. Mr Neutron
+#EXTINF:1869,,4.5. Mr Neutron
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S04D01.%20E01%e2%80%9306.iso#6:2
-#EXTINF:0,,4.6. Party Political Broadcast
+#EXTINF:1691,,4.6. Party Political Broadcast
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28restored%29/S04D01.%20E01%e2%80%9306.iso#7:2
index 353bf97..589c130 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Whither Canada?: ‘It's Wolfgang Amadeus Mozart’; Famous deaths
+#EXTINF:241,,1.1. Whither Canada?: ‘It's Wolfgang Amadeus Mozart’; Famous deaths
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#2:1-2:1
-#EXTINF:0,,1.1. Whither Canada?: Italian Lesson
+#EXTINF:149,,1.1. Whither Canada?: Italian Lesson
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#2:2-2:2
-#EXTINF:0,,1.1. Whither Canada?: Whizzo butter
+#EXTINF:67,,1.1. Whither Canada?: Whizzo butter
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#2:3-2:3
-#EXTINF:0,,1.1. Whither Canada?: ‘It's the Arts’ – Sir Edward Ross
+#EXTINF:191,,1.1. Whither Canada?: ‘It's the Arts’ – Sir Edward Ross
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#2:4-2:4
-#EXTINF:0,,1.1. Whither Canada?: Arthur ‘Two-Sheds’ Jackson
+#EXTINF:169,,1.1. Whither Canada?: Arthur ‘Two-Sheds’ Jackson
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#2:5-2:5
-#EXTINF:0,,1.1. Whither Canada?: Picasso/cycling race
+#EXTINF:215,,1.1. Whither Canada?: Picasso/cycling race
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#2:6-2:6
-#EXTINF:0,,1.1. Whither Canada?: The funniest joke in the world
+#EXTINF:179,,1.1. Whither Canada?: The funniest joke in the world
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#2:7-2:7
-#EXTINF:0,,1.2. Sex and Violence: Flying sheep
+#EXTINF:221,,1.2. Sex and Violence: Flying sheep
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#4:1-4:1
-#EXTINF:0,,1.2. Sex and Violence: French lecture on sheep-aircraft
+#EXTINF:93,,1.2. Sex and Violence: French lecture on sheep-aircraft
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#4:2-4:2
-#EXTINF:0,,1.2. Sex and Violence: Pepperpots discuss French philosophers
+#EXTINF:22,,1.2. Sex and Violence: Pepperpots discuss French philosophers
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#4:3-4:3
-#EXTINF:0,,1.2. Sex and Violence: Cartoon – The Thinker
+#EXTINF:9,,1.2. Sex and Violence: Cartoon – The Thinker
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#4:4-4:4
-#EXTINF:0,,1.2. Sex and Violence: A man with three buttocks
+#EXTINF:153,,1.2. Sex and Violence: A man with three buttocks
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#4:5-4:5
-#EXTINF:0,,1.2. Sex and Violence: A man with two noses
+#EXTINF:34,,1.2. Sex and Violence: A man with two noses
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#4:6-4:6
-#EXTINF:0,,1.2. Sex and Violence: Musical mice
+#EXTINF:96,,1.2. Sex and Violence: Musical mice
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#4:7-4:7
-#EXTINF:0,,1.2. Sex and Violence: Marriage guidance counsellor
+#EXTINF:264,,1.2. Sex and Violence: Marriage guidance counsellor
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#4:8-4:8
-#EXTINF:0,,1.2. Sex and Violence: The wacky queen
+#EXTINF:124,,1.2. Sex and Violence: The wacky queen
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#4:9-4:9
-#EXTINF:0,,1.2. Sex and Violence: Working-class playwright
+#EXTINF:182,,1.2. Sex and Violence: Working-class playwright
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#4:10-4:10
-#EXTINF:0,,1.2. Sex and Violence: A Scotsman on a horse
+#EXTINF:45,,1.2. Sex and Violence: A Scotsman on a horse
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#4:11-4:11
-#EXTINF:0,,1.2. Sex and Violence: Cartoon – Flying sheep
+#EXTINF:12,,1.2. Sex and Violence: Cartoon – Flying sheep
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#4:12-4:12
-#EXTINF:0,,1.2. Sex and Violence: The wrestling epilogue
+#EXTINF:131,,1.2. Sex and Violence: The wrestling epilogue
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#4:13-4:13
-#EXTINF:0,,1.2. Sex and Violence: Cartoon – Cowboys, baby carriage and the musical statue
+#EXTINF:106,,1.2. Sex and Violence: Cartoon – Cowboys, baby carriage and the musical statue
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#4:14-4:14
-#EXTINF:0,,1.2. Sex and Violence: The mouse problem
+#EXTINF:483,,1.2. Sex and Violence: The mouse problem
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#4:15-4:15
-#EXTINF:0,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Court scene (witness in coffin/Cardinal Richelieu)
+#EXTINF:564,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Court scene (witness in coffin/Cardinal Richelieu)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#5:1-5:1
-#EXTINF:0,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: The larch
+#EXTINF:25,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: The larch
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#5:2-5:2
-#EXTINF:0,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Bicycle Repair Man
+#EXTINF:219,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Bicycle Repair Man
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#5:3-5:3
-#EXTINF:0,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Children's stories
+#EXTINF:81,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Children's stories
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#5:4-5:4
-#EXTINF:0,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Cartoon – Animals and clergy
+#EXTINF:32,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Cartoon – Animals and clergy
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#5:5-5:5
-#EXTINF:0,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Donkey rides
+#EXTINF:16,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Donkey rides
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#5:6-5:6
-#EXTINF:0,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Restaurant sketch (dirty fork)
+#EXTINF:312,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Restaurant sketch (dirty fork)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#5:7-5:7
-#EXTINF:0,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Cartoon – ‘Purchase a Past’ commercial
+#EXTINF:105,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Cartoon – ‘Purchase a Past’ commercial
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#5:8-5:8
-#EXTINF:0,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Seduced milkmen
+#EXTINF:58,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Seduced milkmen
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#5:9-5:9
-#EXTINF:0,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Stolen newsreader
+#EXTINF:188,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Stolen newsreader
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#5:10-5:10
-#EXTINF:0,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Children's interview
+#EXTINF:58,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Children's interview
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#5:11-5:11
-#EXTINF:0,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Nudge nudge
+#EXTINF:193,,1.3. How to Recognize Different Types of Tree from Quite a Long Way Away: Nudge nudge
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#5:12-5:12
-#EXTINF:0,,1.4. Owl-Stretching Time: Live from the Cardiff Rooms, Libya/Song (‘And Did Those Feet’)
+#EXTINF:105,,1.4. Owl-Stretching Time: Live from the Cardiff Rooms, Libya/Song (‘And Did Those Feet’)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#6:1-6:1
-#EXTINF:0,,1.4. Owl-Stretching Time: Art gallery
+#EXTINF:130,,1.4. Owl-Stretching Time: Art gallery
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#6:2-6:2
-#EXTINF:0,,1.4. Owl-Stretching Time: Art critic
+#EXTINF:34,,1.4. Owl-Stretching Time: Art critic
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#6:3-6:3
-#EXTINF:0,,1.4. Owl-Stretching Time: It's a man's life in the modern army
+#EXTINF:59,,1.4. Owl-Stretching Time: It's a man's life in the modern army
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#6:4-6:4
-#EXTINF:0,,1.4. Owl-Stretching Time: Undressing in public (changing on the beach)
+#EXTINF:347,,1.4. Owl-Stretching Time: Undressing in public (changing on the beach)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#6:5-6:5
-#EXTINF:0,,1.4. Owl-Stretching Time: Self-defence against fresh fruit
+#EXTINF:394,,1.4. Owl-Stretching Time: Self-defence against fresh fruit
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#6:6-6:6
-#EXTINF:0,,1.4. Owl-Stretching Time: Cartoon – Changing on the beach
+#EXTINF:109,,1.4. Owl-Stretching Time: Cartoon – Changing on the beach
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#6:7-6:7
-#EXTINF:0,,1.4. Owl-Stretching Time: Rustic monologue
+#EXTINF:28,,1.4. Owl-Stretching Time: Rustic monologue
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#6:8-6:8
-#EXTINF:0,,1.4. Owl-Stretching Time: Secret Service dentists
+#EXTINF:543,,1.4. Owl-Stretching Time: Secret Service dentists
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#6:9-6:9
-#EXTINF:0,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: Confuse-a-Cat
+#EXTINF:494,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: Confuse-a-Cat
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#7:1-7:1
-#EXTINF:0,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: The smuggler
+#EXTINF:186,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: The smuggler
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#7:2-7:2
-#EXTINF:0,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: A duck, a cat and a lizard (discussion)
+#EXTINF:52,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: A duck, a cat and a lizard (discussion)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#7:3-7:3
-#EXTINF:0,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: Vox pops on smuggling
+#EXTINF:97,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: Vox pops on smuggling
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#7:4-7:4
-#EXTINF:0,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: Police raid
+#EXTINF:88,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: Police raid
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#7:5-7:5
-#EXTINF:0,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: Letters and vox pops
+#EXTINF:105,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: Letters and vox pops
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#7:6-7:6
-#EXTINF:0,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: Newsreader arrested
+#EXTINF:70,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: Newsreader arrested
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#7:7-7:7
-#EXTINF:0,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: Erotic film
+#EXTINF:98,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: Erotic film
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#7:8-7:8
-#EXTINF:0,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: Cartoon – Charles Fatless
+#EXTINF:126,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: Cartoon – Charles Fatless
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#7:9-7:9
-#EXTINF:0,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: Silly job interview
+#EXTINF:247,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: Silly job interview
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#7:10-7:10
-#EXTINF:0,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: Careers advisory board
+#EXTINF:47,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: Careers advisory board
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#7:11-7:11
-#EXTINF:0,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: Burglar/encyclopædia salesman
+#EXTINF:120,,1.5. Man's Crisis of Identity in the Latter Half of the Twentieth Century: Burglar/encyclopædia salesman
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#7:12-7:12
-#EXTINF:0,,1.6. It's the Arts: Caption costs
+#EXTINF:105,,1.6. It's the Arts: Caption costs
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#8:1-8:1
-#EXTINF:0,,1.6. It's the Arts: Cartoon – Autograph/Introduction to ‘It's the Arts’
+#EXTINF:4,,1.6. It's the Arts: Cartoon – Autograph/Introduction to ‘It's the Arts’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#8:2-8:2
-#EXTINF:0,,1.6. It's the Arts: Johann Gombolputty… von Hauptkopf of Ulm
+#EXTINF:236,,1.6. It's the Arts: Johann Gombolputty… von Hauptkopf of Ulm
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#8:3-8:3
-#EXTINF:0,,1.6. It's the Arts: Cartoon – Censored
+#EXTINF:68,,1.6. It's the Arts: Cartoon – Censored
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#8:4-8:4
-#EXTINF:0,,1.6. It's the Arts: Non-illegal robbery
+#EXTINF:152,,1.6. It's the Arts: Non-illegal robbery
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#8:5-8:5
-#EXTINF:0,,1.6. It's the Arts: Vox pops
+#EXTINF:49,,1.6. It's the Arts: Vox pops
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#8:6-8:6
-#EXTINF:0,,1.6. It's the Arts: Crunchy frog
+#EXTINF:215,,1.6. It's the Arts: Crunchy frog
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#8:7-8:7
-#EXTINF:0,,1.6. It's the Arts: The dull life of a City stockbroker
+#EXTINF:146,,1.6. It's the Arts: The dull life of a City stockbroker
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#8:8-8:8
-#EXTINF:0,,1.6. It's the Arts: Cartoon – Superhero
+#EXTINF:64,,1.6. It's the Arts: Cartoon – Superhero
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#8:9-8:9
-#EXTINF:0,,1.6. It's the Arts: Red Indian in theatre
+#EXTINF:160,,1.6. It's the Arts: Red Indian in theatre
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#8:10-8:10
-#EXTINF:0,,1.6. It's the Arts: Policemen make wonderful friends
+#EXTINF:63,,1.6. It's the Arts: Policemen make wonderful friends
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#8:11-8:11
-#EXTINF:0,,1.6. It's the Arts: A Scotsman on a horse/Young Lochinvar
+#EXTINF:79,,1.6. It's the Arts: A Scotsman on a horse/Young Lochinvar
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#8:12-8:12
-#EXTINF:0,,1.6. It's the Arts: Cartoon – Vicious baby carriage
+#EXTINF:42,,1.6. It's the Arts: Cartoon – Vicious baby carriage
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#8:13-8:13
-#EXTINF:0,,1.6. It's the Arts: Twentieth-Century Vole (Irving C. Saltzberg)
+#EXTINF:385,,1.6. It's the Arts: Twentieth-Century Vole (Irving C. Saltzberg)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#8:14-8:14
-#EXTINF:0,,1.7. You're No Fun Any More: Camel spotting
+#EXTINF:175,,1.7. You're No Fun Any More: Camel spotting
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#16:1-16:1
-#EXTINF:0,,1.7. You're No Fun Any More: Cartoon – Band concert
+#EXTINF:20,,1.7. You're No Fun Any More: Cartoon – Band concert
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#16:2-16:2
-#EXTINF:0,,1.7. You're No Fun Any More: You're no fun any more
+#EXTINF:28,,1.7. You're No Fun Any More: You're no fun any more
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#16:3-16:3
-#EXTINF:0,,1.7. You're No Fun Any More: The audit
+#EXTINF:158,,1.7. You're No Fun Any More: The audit
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#16:4-16:4
-#EXTINF:0,,1.7. You're No Fun Any More: Science fiction sketch: Man turns into Scotsman
+#EXTINF:821,,1.7. You're No Fun Any More: Science fiction sketch: Man turns into Scotsman
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#16:5-16:5
-#EXTINF:0,,1.7. You're No Fun Any More: Police station
+#EXTINF:312,,1.7. You're No Fun Any More: Police station
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#16:6-16:6
-#EXTINF:0,,1.7. You're No Fun Any More: Blancmanges playing tennis
+#EXTINF:273,,1.7. You're No Fun Any More: Blancmanges playing tennis
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D01.%20E01%e2%80%9307.iso#16:7-16:7
-#EXTINF:0,,1.8. Full Frontal Nudity: Vox pops on nudity and the permissive society
+#EXTINF:81,,1.8. Full Frontal Nudity: Vox pops on nudity and the permissive society
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#2:1-2:1
-#EXTINF:0,,1.8. Full Frontal Nudity: Army protection racket
+#EXTINF:268,,1.8. Full Frontal Nudity: Army protection racket
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#2:2-2:2
-#EXTINF:0,,1.8. Full Frontal Nudity: Cartoon – Full frontal nudity
+#EXTINF:119,,1.8. Full Frontal Nudity: Cartoon – Full frontal nudity
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#2:3-2:3
-#EXTINF:0,,1.8. Full Frontal Nudity: More vox pops
+#EXTINF:15,,1.8. Full Frontal Nudity: More vox pops
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#2:4-2:4
-#EXTINF:0,,1.8. Full Frontal Nudity: Art critic – the place of the nude
+#EXTINF:47,,1.8. Full Frontal Nudity: Art critic – the place of the nude
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#2:5-2:5
-#EXTINF:0,,1.8. Full Frontal Nudity: Buying a bed
+#EXTINF:321,,1.8. Full Frontal Nudity: Buying a bed
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#2:6-2:6
-#EXTINF:0,,1.8. Full Frontal Nudity: Too silly
+#EXTINF:36,,1.8. Full Frontal Nudity: Too silly
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#2:7-2:7
-#EXTINF:0,,1.8. Full Frontal Nudity: Hermits
+#EXTINF:159,,1.8. Full Frontal Nudity: Hermits
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#2:8-2:8
-#EXTINF:0,,1.8. Full Frontal Nudity: Cartoon – Meat grinder
+#EXTINF:33,,1.8. Full Frontal Nudity: Cartoon – Meat grinder
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#2:9-2:9
-#EXTINF:0,,1.8. Full Frontal Nudity: Dead parrot
+#EXTINF:323,,1.8. Full Frontal Nudity: Dead parrot
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#2:10-2:10
-#EXTINF:0,,1.8. Full Frontal Nudity: The flasher
+#EXTINF:31,,1.8. Full Frontal Nudity: The flasher
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#2:11-2:11
-#EXTINF:0,,1.8. Full Frontal Nudity: Hell's Grannies
+#EXTINF:303,,1.8. Full Frontal Nudity: Hell's Grannies
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#2:12-2:12
-#EXTINF:0,,1.9. The Ant, an Introduction: Llamas
+#EXTINF:132,,1.9. The Ant, an Introduction: Llamas
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#4:1-4:1
-#EXTINF:0,,1.9. The Ant, an Introduction: A man with a tape recorder up his nose
+#EXTINF:69,,1.9. The Ant, an Introduction: A man with a tape recorder up his nose
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#4:2-4:2
-#EXTINF:0,,1.9. The Ant, an Introduction: Kilimanjaro expedition/Sir George Head (double vision)
+#EXTINF:292,,1.9. The Ant, an Introduction: Kilimanjaro expedition/Sir George Head (double vision)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#4:3-4:3
-#EXTINF:0,,1.9. The Ant, an Introduction: A man with a tape recorder up his brother's nose
+#EXTINF:52,,1.9. The Ant, an Introduction: A man with a tape recorder up his brother's nose
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#4:4-4:4
-#EXTINF:0,,1.9. The Ant, an Introduction: Cartoon – Clergyman selling encyclopædias
+#EXTINF:42,,1.9. The Ant, an Introduction: Cartoon – Clergyman selling encyclopædias
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#4:5-4:5
-#EXTINF:0,,1.9. The Ant, an Introduction: Homicidal barber
+#EXTINF:235,,1.9. The Ant, an Introduction: Homicidal barber
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#4:6-4:6
-#EXTINF:0,,1.9. The Ant, an Introduction: Lumberjack song
+#EXTINF:156,,1.9. The Ant, an Introduction: Lumberjack song
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#4:7-4:7
-#EXTINF:0,,1.9. The Ant, an Introduction: Gumby crooner
+#EXTINF:35,,1.9. The Ant, an Introduction: Gumby crooner
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#4:8-4:8
-#EXTINF:0,,1.9. The Ant, an Introduction: The refreshment room at Bletchley (Kenny Lust introduction)
+#EXTINF:210,,1.9. The Ant, an Introduction: The refreshment room at Bletchley (Kenny Lust introduction)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#4:9-4:9
-#EXTINF:0,,1.9. The Ant, an Introduction: Hunting film
+#EXTINF:147,,1.9. The Ant, an Introduction: Hunting film
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#4:10-4:10
-#EXTINF:0,,1.9. The Ant, an Introduction: The visitors
+#EXTINF:353,,1.9. The Ant, an Introduction: The visitors
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#4:11-4:11
-#EXTINF:0,,1.10. Untitled: Walk-on part in sketch
+#EXTINF:150,,1.10. Untitled: Walk-on part in sketch
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#5:1-5:1
-#EXTINF:0,,1.10. Untitled: Bank robber (lingerie shop)
+#EXTINF:66,,1.10. Untitled: Bank robber (lingerie shop)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#5:2-5:2
-#EXTINF:0,,1.10. Untitled: Trailer (Tonight's programmes with Henry Unction)
+#EXTINF:66,,1.10. Untitled: Trailer (Tonight's programmes with Henry Unction)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#5:3-5:3
-#EXTINF:0,,1.10. Untitled: Arthur Tree
+#EXTINF:130,,1.10. Untitled: Arthur Tree
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#5:4-5:4
-#EXTINF:0,,1.10. Untitled: Cartoon – Wooden impressions
+#EXTINF:26,,1.10. Untitled: Cartoon – Wooden impressions
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#5:5-5:5
-#EXTINF:0,,1.10. Untitled: Vocational guidance counsellor (chartered accountant)
+#EXTINF:378,,1.10. Untitled: Vocational guidance counsellor (chartered accountant)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#5:6-5:6
-#EXTINF:0,,1.10. Untitled: David Unction link
+#EXTINF:24,,1.10. Untitled: David Unction link
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#5:7-5:7
-#EXTINF:0,,1.10. Untitled: The first man to jump the Channel (Ron Obvious)
+#EXTINF:248,,1.10. Untitled: The first man to jump the Channel (Ron Obvious)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#5:8-5:8
-#EXTINF:0,,1.10. Untitled: Tunnelling from Godalming to Java
+#EXTINF:112,,1.10. Untitled: Tunnelling from Godalming to Java
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#5:9-5:9
-#EXTINF:0,,1.10. Untitled: Pet conversions
+#EXTINF:111,,1.10. Untitled: Pet conversions
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#5:10-5:10
-#EXTINF:0,,1.10. Untitled: Gorilla librarian
+#EXTINF:181,,1.10. Untitled: Gorilla librarian
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#5:11-5:11
-#EXTINF:0,,1.10. Untitled: Letters to ‘Daily Mirror’
+#EXTINF:55,,1.10. Untitled: Letters to ‘Daily Mirror’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#5:12-5:12
-#EXTINF:0,,1.10. Untitled: Strangers in the night
+#EXTINF:177,,1.10. Untitled: Strangers in the night
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#5:13-5:13
-#EXTINF:0,,1.10. Untitled: Cartoon – Animals eating
+#EXTINF:108,,1.10. Untitled: Cartoon – Animals eating
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#5:14-5:14
-#EXTINF:0,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: The Royal Philharmonic Orchestra Goes to the Bathroom
+#EXTINF:55,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: The Royal Philharmonic Orchestra Goes to the Bathroom
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#6:1-6:1
-#EXTINF:0,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Letter (lavatorial humour); Cartoon – More lavatorial humour
+#EXTINF:91,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Letter (lavatorial humour); Cartoon – More lavatorial humour
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#6:2-6:2
-#EXTINF:0,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Interruptions (‘The World of History’)
+#EXTINF:102,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Interruptions (‘The World of History’)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#6:3-6:3
-#EXTINF:0,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Agatha Christie sketch
+#EXTINF:311,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Agatha Christie sketch
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#6:4-6:4
-#EXTINF:0,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Undertakers film
+#EXTINF:51,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Undertakers film
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#6:5-6:5
-#EXTINF:0,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Literary football discussion (Jimmy Buzzard interview)
+#EXTINF:174,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Literary football discussion (Jimmy Buzzard interview)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#6:6-6:6
-#EXTINF:0,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Undertakers film (undertakers and naked ladies)
+#EXTINF:44,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Undertakers film (undertakers and naked ladies)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#6:7-6:7
-#EXTINF:0,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Interesting people
+#EXTINF:378,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Interesting people
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#6:8-6:8
-#EXTINF:0,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Tired undertakers
+#EXTINF:187,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Tired undertakers
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#6:9-6:9
-#EXTINF:0,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Cartoon – Coffins
+#EXTINF:17,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Cartoon – Coffins
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#6:10-6:10
-#EXTINF:0,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Eighteenth century social legislation (‘The World of History’)
+#EXTINF:141,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Eighteenth century social legislation (‘The World of History’)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#6:11-6:11
-#EXTINF:0,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: The Battle of Trafalgar
+#EXTINF:104,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: The Battle of Trafalgar
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#6:12-6:12
-#EXTINF:0,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Batley Townswomen's Guild presents the Battle of Pearl Harbour
+#EXTINF:101,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Batley Townswomen's Guild presents the Battle of Pearl Harbour
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#6:13-6:13
-#EXTINF:0,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Undertakers film
+#EXTINF:96,,1.11. The Royal Philharmonic Orchestra Goes to the Bathroom: Undertakers film
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#6:14-6:14
-#EXTINF:0,,1.12. The Naked Ant: A signal box somewhere near Hove
+#EXTINF:59,,1.12. The Naked Ant: A signal box somewhere near Hove
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#7:1-7:1
-#EXTINF:0,,1.12. The Naked Ant: Falling from building
+#EXTINF:101,,1.12. The Naked Ant: Falling from building
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#7:2-7:2
-#EXTINF:0,,1.12. The Naked Ant: Cartoon – Falling people, magician, opening titles
+#EXTINF:55,,1.12. The Naked Ant: Cartoon – Falling people, magician, opening titles
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#7:3-7:3
-#EXTINF:0,,1.12. The Naked Ant: ‘Spectrum’ – talking about things
+#EXTINF:89,,1.12. The Naked Ant: ‘Spectrum’ – talking about things
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#7:4-7:4
-#EXTINF:0,,1.12. The Naked Ant: Visitors from Coventry
+#EXTINF:71,,1.12. The Naked Ant: Visitors from Coventry
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#7:5-7:5
-#EXTINF:0,,1.12. The Naked Ant: Mr Hilter
+#EXTINF:186,,1.12. The Naked Ant: Mr Hilter
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#7:6-7:6
-#EXTINF:0,,1.12. The Naked Ant: The Minehead by-election
+#EXTINF:229,,1.12. The Naked Ant: The Minehead by-election
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#7:7-7:7
-#EXTINF:0,,1.12. The Naked Ant: Police station (silly voices)
+#EXTINF:146,,1.12. The Naked Ant: Police station (silly voices)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#7:8-7:8
-#EXTINF:0,,1.12. The Naked Ant: Upperclass Twit of the Year
+#EXTINF:427,,1.12. The Naked Ant: Upperclass Twit of the Year
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#7:9-7:9
-#EXTINF:0,,1.12. The Naked Ant: Cartoon – Smoking a pipe
+#EXTINF:64,,1.12. The Naked Ant: Cartoon – Smoking a pipe
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#7:10-7:10
-#EXTINF:0,,1.12. The Naked Ant: Ken Shabby
+#EXTINF:135,,1.12. The Naked Ant: Ken Shabby
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#7:11-7:11
-#EXTINF:0,,1.12. The Naked Ant: How far can a minister fall?  (Party political broadcast by the Woody Party)
+#EXTINF:324,,1.12. The Naked Ant: How far can a minister fall?  (Party political broadcast by the Woody Party)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#7:12-7:12
-#EXTINF:0,,1.13. Intermission: Cartoon – Intermission
+#EXTINF:80,,1.13. Intermission: Cartoon – Intermission
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#8:1-8:1
-#EXTINF:0,,1.13. Intermission: Restaurant (abuse/cannibalism)
+#EXTINF:255,,1.13. Intermission: Restaurant (abuse/cannibalism)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#8:2-8:2
-#EXTINF:0,,1.13. Intermission: Advertisements (pearls for swine)
+#EXTINF:90,,1.13. Intermission: Advertisements (pearls for swine)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#8:3-8:3
-#EXTINF:0,,1.13. Intermission: Albatross
+#EXTINF:80,,1.13. Intermission: Albatross
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#8:4-8:4
-#EXTINF:0,,1.13. Intermission: Comeback to my place
+#EXTINF:36,,1.13. Intermission: Comeback to my place
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#8:5-8:5
-#EXTINF:0,,1.13. Intermission: Me Doctor
+#EXTINF:58,,1.13. Intermission: Me Doctor
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#8:6-8:6
-#EXTINF:0,,1.13. Intermission: Historical impersonations
+#EXTINF:109,,1.13. Intermission: Historical impersonations
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#8:7-8:7
-#EXTINF:0,,1.13. Intermission: Cartoon – Historical impersonations
+#EXTINF:73,,1.13. Intermission: Cartoon – Historical impersonations
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#8:8-8:8
-#EXTINF:0,,1.13. Intermission: Quiz programme – ‘Wishes’
+#EXTINF:84,,1.13. Intermission: Quiz programme – ‘Wishes’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#8:9-8:9
-#EXTINF:0,,1.13. Intermission: Police fairy stories
+#EXTINF:94,,1.13. Intermission: Police fairy stories
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#8:10-8:10
-#EXTINF:0,,1.13. Intermission: ‘Probe-around’ on crime
+#EXTINF:134,,1.13. Intermission: ‘Probe-around’ on crime
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#8:11-8:11
-#EXTINF:0,,1.13. Intermission: Stonehenge
+#EXTINF:12,,1.13. Intermission: Stonehenge
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#8:12-8:12
-#EXTINF:0,,1.13. Intermission: Mr Attila the Hun
+#EXTINF:189,,1.13. Intermission: Mr Attila the Hun
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#8:13-8:13
-#EXTINF:0,,1.13. Intermission: Psychiatry – silly sketch
+#EXTINF:257,,1.13. Intermission: Psychiatry – silly sketch
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#8:14-8:14
-#EXTINF:0,,1.13. Intermission: Operating theatre (squatters)
+#EXTINF:206,,1.13. Intermission: Operating theatre (squatters)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S01D02.%20E08%e2%80%9313.iso#8:15-8:15
 
-#EXTINF:0,,2.1. ‘Face the Press’: ‘Face the Press’
+#EXTINF:158,,2.1. ‘Face the Press’: ‘Face the Press’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#2:1-2:1
-#EXTINF:0,,2.1. ‘Face the Press’: New cooker sketch
+#EXTINF:306,,2.1. ‘Face the Press’: New cooker sketch
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#2:2-2:2
-#EXTINF:0,,2.1. ‘Face the Press’: Cartoon – Flying European monarchs, shaving; Tobacconists (prostitute advert)
+#EXTINF:149,,2.1. ‘Face the Press’: Cartoon – Flying European monarchs, shaving; Tobacconists (prostitute advert)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#2:3-2:3
-#EXTINF:0,,2.1. ‘Face the Press’: The Ministry of Silly Walks
+#EXTINF:293,,2.1. ‘Face the Press’: The Ministry of Silly Walks
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#2:4-2:4
-#EXTINF:0,,2.1. ‘Face the Press’: The Piranha brothers (Ethel the Frog)
+#EXTINF:904,,2.1. ‘Face the Press’: The Piranha brothers (Ethel the Frog)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#2:5-2:5
-#EXTINF:0,,2.2. The Spanish Inquisition: Man-powered flight
+#EXTINF:114,,2.2. The Spanish Inquisition: Man-powered flight
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#4:1-4:1
-#EXTINF:0,,2.2. The Spanish Inquisition: The Spanish Inquisition
+#EXTINF:264,,2.2. The Spanish Inquisition: The Spanish Inquisition
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#4:2-4:2
-#EXTINF:0,,2.2. The Spanish Inquisition: Jokes and novelties salesman
+#EXTINF:251,,2.2. The Spanish Inquisition: Jokes and novelties salesman
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#4:3-4:3
-#EXTINF:0,,2.2. The Spanish Inquisition: Cartoon – Suddenly animated head
+#EXTINF:98,,2.2. The Spanish Inquisition: Cartoon – Suddenly animated head
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#4:4-4:4
-#EXTINF:0,,2.2. The Spanish Inquisition: Tax on thingy
+#EXTINF:108,,2.2. The Spanish Inquisition: Tax on thingy
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#4:5-4:5
-#EXTINF:0,,2.2. The Spanish Inquisition: Vox pops
+#EXTINF:55,,2.2. The Spanish Inquisition: Vox pops
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#4:6-4:6
-#EXTINF:0,,2.2. The Spanish Inquisition: Photos of Uncle Ted (Spanish Inquisition)
+#EXTINF:294,,2.2. The Spanish Inquisition: Photos of Uncle Ted (Spanish Inquisition)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#4:7-4:7
-#EXTINF:0,,2.2. The Spanish Inquisition: The semaphore version of ‘Wuthering Heights’
+#EXTINF:119,,2.2. The Spanish Inquisition: The semaphore version of ‘Wuthering Heights’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#4:8-4:8
-#EXTINF:0,,2.2. The Spanish Inquisition: ‘Julius Cæsar’ on an Aldis lamp
+#EXTINF:61,,2.2. The Spanish Inquisition: ‘Julius Cæsar’ on an Aldis lamp
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#4:9-4:9
-#EXTINF:0,,2.2. The Spanish Inquisition: Court scene (charades)
+#EXTINF:355,,2.2. The Spanish Inquisition: Court scene (charades)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#4:10-4:10
-#EXTINF:0,,2.2. The Spanish Inquisition: The Spanish Inquisition on a bus
+#EXTINF:90,,2.2. The Spanish Inquisition: The Spanish Inquisition on a bus
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#4:11-4:11
-#EXTINF:0,,2.3. Déjà Vu: A bishop rehearsing
+#EXTINF:284,,2.3. Déjà Vu: A bishop rehearsing
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#5:1-5:1
-#EXTINF:0,,2.3. Déjà Vu: Flying lessons
+#EXTINF:256,,2.3. Déjà Vu: Flying lessons
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#5:2-5:2
-#EXTINF:0,,2.3. Déjà Vu: Hijacked plane (to Luton)
+#EXTINF:273,,2.3. Déjà Vu: Hijacked plane (to Luton)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#5:3-5:3
-#EXTINF:0,,2.3. Déjà Vu: The Poet McTeagle
+#EXTINF:376,,2.3. Déjà Vu: The Poet McTeagle
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#5:4-5:4
-#EXTINF:0,,2.3. Déjà Vu: Psychiatrist milkman
+#EXTINF:178,,2.3. Déjà Vu: Psychiatrist milkman
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#5:5-5:5
-#EXTINF:0,,2.3. Déjà Vu: Complaints
+#EXTINF:160,,2.3. Déjà Vu: Complaints
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#5:6-5:6
-#EXTINF:0,,2.3. Déjà Vu: Déjà vu
+#EXTINF:275,,2.3. Déjà Vu: Déjà vu
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#5:7-5:7
-#EXTINF:0,,2.4. The Buzz Aldrin Show: Cartoon – Metamorphosis
+#EXTINF:100,,2.4. The Buzz Aldrin Show: Cartoon – Metamorphosis
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#6:1-6:1
-#EXTINF:0,,2.4. The Buzz Aldrin Show: Architect sketch
+#EXTINF:324,,2.4. The Buzz Aldrin Show: Architect sketch
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#6:2-6:2
-#EXTINF:0,,2.4. The Buzz Aldrin Show: How to give up being a Mason
+#EXTINF:39,,2.4. The Buzz Aldrin Show: How to give up being a Mason
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#6:3-6:3
-#EXTINF:0,,2.4. The Buzz Aldrin Show: Cartoon – Anti-Masonic therapy
+#EXTINF:45,,2.4. The Buzz Aldrin Show: Cartoon – Anti-Masonic therapy
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#6:4-6:4
-#EXTINF:0,,2.4. The Buzz Aldrin Show: Motor insurance sketch
+#EXTINF:206,,2.4. The Buzz Aldrin Show: Motor insurance sketch
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#6:5-6:5
-#EXTINF:0,,2.4. The Buzz Aldrin Show: ‘The bishop’
+#EXTINF:239,,2.4. The Buzz Aldrin Show: ‘The bishop’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#6:6-6:6
-#EXTINF:0,,2.4. The Buzz Aldrin Show: Living room on pavement
+#EXTINF:64,,2.4. The Buzz Aldrin Show: Living room on pavement
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#6:7-6:7
-#EXTINF:0,,2.4. The Buzz Aldrin Show: East Midland Poet Board
+#EXTINF:89,,2.4. The Buzz Aldrin Show: East Midland Poet Board
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#6:8-6:8
-#EXTINF:0,,2.4. The Buzz Aldrin Show: A choice of viewing (nude man)
+#EXTINF:115,,2.4. The Buzz Aldrin Show: A choice of viewing (nude man)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#6:9-6:9
-#EXTINF:0,,2.4. The Buzz Aldrin Show: Cartoon – The five frog curse
+#EXTINF:108,,2.4. The Buzz Aldrin Show: Cartoon – The five frog curse
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#6:10-6:10
-#EXTINF:0,,2.4. The Buzz Aldrin Show: Chemist sketch
+#EXTINF:47,,2.4. The Buzz Aldrin Show: Chemist sketch
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#6:11-6:11
-#EXTINF:0,,2.4. The Buzz Aldrin Show: Words not to be used again
+#EXTINF:27,,2.4. The Buzz Aldrin Show: Words not to be used again
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#6:12-6:12
-#EXTINF:0,,2.4. The Buzz Aldrin Show: After-shave (less naughty chemist)
+#EXTINF:141,,2.4. The Buzz Aldrin Show: After-shave (less naughty chemist)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#6:13-6:13
-#EXTINF:0,,2.4. The Buzz Aldrin Show: Vox pops
+#EXTINF:68,,2.4. The Buzz Aldrin Show: Vox pops
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#6:14-6:14
-#EXTINF:0,,2.4. The Buzz Aldrin Show: Police Constable Pan-Am
+#EXTINF:188,,2.4. The Buzz Aldrin Show: Police Constable Pan-Am
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#6:15-6:15
-#EXTINF:0,,2.5. Live from the Grill-o-mat: Live from the Grill-o-mat snack bar, Paignton
+#EXTINF:74,,2.5. Live from the Grill-o-mat: Live from the Grill-o-mat snack bar, Paignton
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#7:1-7:1
-#EXTINF:0,,2.5. Live from the Grill-o-mat: ‘Blackmail’
+#EXTINF:185,,2.5. Live from the Grill-o-mat: ‘Blackmail’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#7:2-7:2
-#EXTINF:0,,2.5. Live from the Grill-o-mat: Society for Putting Things on Top of Other Things
+#EXTINF:141,,2.5. Live from the Grill-o-mat: Society for Putting Things on Top of Other Things
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#7:3-7:3
-#EXTINF:0,,2.5. Live from the Grill-o-mat: Escape (from film)
+#EXTINF:121,,2.5. Live from the Grill-o-mat: Escape (from film)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#7:4-7:4
-#EXTINF:0,,2.5. Live from the Grill-o-mat: Cartoon – Escape
+#EXTINF:57,,2.5. Live from the Grill-o-mat: Cartoon – Escape
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#7:5-7:5
-#EXTINF:0,,2.5. Live from the Grill-o-mat: Current affairs
+#EXTINF:45,,2.5. Live from the Grill-o-mat: Current affairs
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#7:6-7:6
-#EXTINF:0,,2.5. Live from the Grill-o-mat: Cartoon – Escape continues
+#EXTINF:107,,2.5. Live from the Grill-o-mat: Cartoon – Escape continues
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#7:7-7:7
-#EXTINF:0,,2.5. Live from the Grill-o-mat: Accidents sketch
+#EXTINF:272,,2.5. Live from the Grill-o-mat: Accidents sketch
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#7:8-7:8
-#EXTINF:0,,2.5. Live from the Grill-o-mat: Seven Brides for Seven Brothers
+#EXTINF:152,,2.5. Live from the Grill-o-mat: Seven Brides for Seven Brothers
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#7:9-7:9
-#EXTINF:0,,2.5. Live from the Grill-o-mat: Cartoon – Piggy bank hunting
+#EXTINF:59,,2.5. Live from the Grill-o-mat: Cartoon – Piggy bank hunting
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#7:10-7:10
-#EXTINF:0,,2.5. Live from the Grill-o-mat: The man who is alternately rude and polite
+#EXTINF:96,,2.5. Live from the Grill-o-mat: The man who is alternately rude and polite
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#7:11-7:11
-#EXTINF:0,,2.5. Live from the Grill-o-mat: Documentary on boxer (Ken Clean-Air System)
+#EXTINF:348,,2.5. Live from the Grill-o-mat: Documentary on boxer (Ken Clean-Air System)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#7:12-7:12
-#EXTINF:0,,2.5. Live from the Grill-o-mat: Host on a bus
+#EXTINF:135,,2.5. Live from the Grill-o-mat: Host on a bus
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#7:13-7:13
-#EXTINF:0,,2.6. It's a Living: ‘It's a Living’
+#EXTINF:61,,2.6. It's a Living: ‘It's a Living’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#8:1-8:1
-#EXTINF:0,,2.6. It's a Living: The time on BBC 1
+#EXTINF:116,,2.6. It's a Living: The time on BBC 1
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#8:2-8:2
-#EXTINF:0,,2.6. It's a Living: School prize-giving
+#EXTINF:200,,2.6. It's a Living: School prize-giving
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#8:3-8:3
-#EXTINF:0,,2.6. It's a Living: ‘if’ – a film by Mr Dibley
+#EXTINF:48,,2.6. It's a Living: ‘if’ – a film by Mr Dibley
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#8:4-8:4
-#EXTINF:0,,2.6. It's a Living: ‘Rear Window’ – a film by Mr Dibley
+#EXTINF:52,,2.6. It's a Living: ‘Rear Window’ – a film by Mr Dibley
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#8:5-8:5
-#EXTINF:0,,2.6. It's a Living: ‘Finian's Rainbow’ (starring the man from the off-licence)
+#EXTINF:29,,2.6. It's a Living: ‘Finian's Rainbow’ (starring the man from the off-licence)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#8:6-8:6
-#EXTINF:0,,2.6. It's a Living: Foreign Secretary
+#EXTINF:175,,2.6. It's a Living: Foreign Secretary
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#8:7-8:7
-#EXTINF:0,,2.6. It's a Living: Dung (Book of the Month Club)
+#EXTINF:77,,2.6. It's a Living: Dung (Book of the Month Club)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#8:8-8:8
-#EXTINF:0,,2.6. It's a Living: Dead Indian
+#EXTINF:134,,2.6. It's a Living: Dead Indian
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#8:9-8:9
-#EXTINF:0,,2.6. It's a Living: Timmy Williams interview
+#EXTINF:238,,2.6. It's a Living: Timmy Williams interview
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#8:10-8:10
-#EXTINF:0,,2.6. It's a Living: Raymond Luxury-Yacht interview
+#EXTINF:43,,2.6. It's a Living: Raymond Luxury-Yacht interview
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#8:11-8:11
-#EXTINF:0,,2.6. It's a Living: Cartoon – Sexual athletes
+#EXTINF:52,,2.6. It's a Living: Cartoon – Sexual athletes
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#8:12-8:12
-#EXTINF:0,,2.6. It's a Living: Registry office (marriage)
+#EXTINF:92,,2.6. It's a Living: Registry office (marriage)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#8:13-8:13
-#EXTINF:0,,2.6. It's a Living: Cartoon – The prince and the black spot
+#EXTINF:96,,2.6. It's a Living: Cartoon – The prince and the black spot
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#8:14-8:14
-#EXTINF:0,,2.6. It's a Living: Election Night Special (Silly and Sensible parties)
+#EXTINF:374,,2.6. It's a Living: Election Night Special (Silly and Sensible parties)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#8:15-8:15
-#EXTINF:0,,2.7. The Attila the Hun Show: ‘The Attila the Hun Show’
+#EXTINF:225,,2.7. The Attila the Hun Show: ‘The Attila the Hun Show’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#16:1-16:1
-#EXTINF:0,,2.7. The Attila the Hun Show: Attila the Nun
+#EXTINF:50,,2.7. The Attila the Hun Show: Attila the Nun
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#16:2-16:2
-#EXTINF:0,,2.7. The Attila the Hun Show: Secretary of State striptease
+#EXTINF:115,,2.7. The Attila the Hun Show: Secretary of State striptease
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#16:3-16:3
-#EXTINF:0,,2.7. The Attila the Hun Show: Vox pops on politicians
+#EXTINF:38,,2.7. The Attila the Hun Show: Vox pops on politicians
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#16:4-16:4
-#EXTINF:0,,2.7. The Attila the Hun Show: Ratcatcher
+#EXTINF:76,,2.7. The Attila the Hun Show: Ratcatcher
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#16:5-16:5
-#EXTINF:0,,2.7. The Attila the Hun Show: Wainscotting
+#EXTINF:179,,2.7. The Attila the Hun Show: Wainscotting
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#16:6-16:6
-#EXTINF:0,,2.7. The Attila the Hun Show: Cartoon – Killer sheep
+#EXTINF:75,,2.7. The Attila the Hun Show: Cartoon – Killer sheep
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#16:7-16:7
-#EXTINF:0,,2.7. The Attila the Hun Show: The news for parrots
+#EXTINF:83,,2.7. The Attila the Hun Show: The news for parrots
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#16:8-16:8
-#EXTINF:0,,2.7. The Attila the Hun Show: The news for gibbons
+#EXTINF:11,,2.7. The Attila the Hun Show: The news for gibbons
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#16:9-16:9
-#EXTINF:0,,2.7. The Attila the Hun Show: Today in Parliament
+#EXTINF:57,,2.7. The Attila the Hun Show: Today in Parliament
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#16:10-16:10
-#EXTINF:0,,2.7. The Attila the Hun Show: The news for wombats
+#EXTINF:22,,2.7. The Attila the Hun Show: The news for wombats
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#16:11-16:11
-#EXTINF:0,,2.7. The Attila the Hun Show: Cartoon – Attila the Bun
+#EXTINF:13,,2.7. The Attila the Hun Show: Cartoon – Attila the Bun
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#16:12-16:12
-#EXTINF:0,,2.7. The Attila the Hun Show: The Idiot in Society
+#EXTINF:305,,2.7. The Attila the Hun Show: The Idiot in Society
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#16:13-16:13
-#EXTINF:0,,2.7. The Attila the Hun Show: Test match
+#EXTINF:164,,2.7. The Attila the Hun Show: Test match
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#16:14-16:14
-#EXTINF:0,,2.7. The Attila the Hun Show: The Epsom furniture race
+#EXTINF:29,,2.7. The Attila the Hun Show: The Epsom furniture race
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#16:15-16:15
-#EXTINF:0,,2.7. The Attila the Hun Show: ‘Take Your Pick’ (‘Spot the Brain Cell’)
+#EXTINF:202,,2.7. The Attila the Hun Show: ‘Take Your Pick’ (‘Spot the Brain Cell’)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D01.%20E01%e2%80%9307.iso#16:16-16:16
-#EXTINF:0,,2.8. Archæology Today: Trailer (BBC autumn shows)
+#EXTINF:114,,2.8. Archæology Today: Trailer (BBC autumn shows)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#2:1-2:1
-#EXTINF:0,,2.8. Archæology Today: Cartoon – Archæology
+#EXTINF:88,,2.8. Archæology Today: Cartoon – Archæology
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#2:2-2:2
-#EXTINF:0,,2.8. Archæology Today: ‘Archæology Today’ (flaming star)
+#EXTINF:384,,2.8. Archæology Today: ‘Archæology Today’ (flaming star)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#2:3-2:3
-#EXTINF:0,,2.8. Archæology Today: Silly vicar (appeal for sanity)
+#EXTINF:58,,2.8. Archæology Today: Silly vicar (appeal for sanity)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#2:4-2:4
-#EXTINF:0,,2.8. Archæology Today: Leapy Lee
+#EXTINF:67,,2.8. Archæology Today: Leapy Lee
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#2:5-2:5
-#EXTINF:0,,2.8. Archæology Today: Registrar (wife swap)
+#EXTINF:71,,2.8. Archæology Today: Registrar (wife swap)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#2:6-2:6
-#EXTINF:0,,2.8. Archæology Today: Silly doctor sketch (immediately abandoned)
+#EXTINF:22,,2.8. Archæology Today: Silly doctor sketch (immediately abandoned)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#2:7-2:7
-#EXTINF:0,,2.8. Archæology Today: Cartoon – Soccer, eggs diamond, book ad
+#EXTINF:87,,2.8. Archæology Today: Cartoon – Soccer, eggs diamond, book ad
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#2:8-2:8
-#EXTINF:0,,2.8. Archæology Today: Mr and Mrs Git
+#EXTINF:155,,2.8. Archæology Today: Mr and Mrs Git
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#2:9-2:9
-#EXTINF:0,,2.8. Archæology Today: Mosquito hunters
+#EXTINF:186,,2.8. Archæology Today: Mosquito hunters
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#2:10-2:10
-#EXTINF:0,,2.8. Archæology Today: Poofy judges
+#EXTINF:70,,2.8. Archæology Today: Poofy judges
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#2:11-2:11
-#EXTINF:0,,2.8. Archæology Today: Mrs Thing and Mrs Entity
+#EXTINF:110,,2.8. Archæology Today: Mrs Thing and Mrs Entity
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#2:12-2:12
-#EXTINF:0,,2.8. Archæology Today: Beethoven's mynah bird
+#EXTINF:123,,2.8. Archæology Today: Beethoven's mynah bird
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#2:13-2:13
-#EXTINF:0,,2.8. Archæology Today: Shakespeare
+#EXTINF:15,,2.8. Archæology Today: Shakespeare
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#2:14-2:14
-#EXTINF:0,,2.8. Archæology Today: Michelangelo
+#EXTINF:19,,2.8. Archæology Today: Michelangelo
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#2:15-2:15
-#EXTINF:0,,2.8. Archæology Today: Colin Mozart (ratcatcher)
+#EXTINF:115,,2.8. Archæology Today: Colin Mozart (ratcatcher)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#2:16-2:16
-#EXTINF:0,,2.8. Archæology Today: Judges again
+#EXTINF:77,,2.8. Archæology Today: Judges again
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#2:17-2:17
-#EXTINF:0,,2.9. How to Recognize Different Parts of the Body: ‘How to Recognize Different Parts of the Body’
+#EXTINF:151,,2.9. How to Recognize Different Parts of the Body: ‘How to Recognize Different Parts of the Body’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#4:1-4:1
-#EXTINF:0,,2.9. How to Recognize Different Parts of the Body: Bruces
+#EXTINF:198,,2.9. How to Recognize Different Parts of the Body: Bruces
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#4:2-4:2
-#EXTINF:0,,2.9. How to Recognize Different Parts of the Body: Naughty bits
+#EXTINF:35,,2.9. How to Recognize Different Parts of the Body: Naughty bits
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#4:3-4:3
-#EXTINF:0,,2.9. How to Recognize Different Parts of the Body: The man who contradicts people
+#EXTINF:54,,2.9. How to Recognize Different Parts of the Body: The man who contradicts people
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#4:4-4:4
-#EXTINF:0,,2.9. How to Recognize Different Parts of the Body: Cosmetic surgery (Raymond Luxury-Yacht)
+#EXTINF:158,,2.9. How to Recognize Different Parts of the Body: Cosmetic surgery (Raymond Luxury-Yacht)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#4:5-4:5
-#EXTINF:0,,2.9. How to Recognize Different Parts of the Body: Camp square-bashing
+#EXTINF:72,,2.9. How to Recognize Different Parts of the Body: Camp square-bashing
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#4:6-4:6
-#EXTINF:0,,2.9. How to Recognize Different Parts of the Body: Cartoon – Killer cars
+#EXTINF:151,,2.9. How to Recognize Different Parts of the Body: Cartoon – Killer cars
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#4:7-4:7
-#EXTINF:0,,2.9. How to Recognize Different Parts of the Body: Cut-price airline
+#EXTINF:159,,2.9. How to Recognize Different Parts of the Body: Cut-price airline
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#4:8-4:8
-#EXTINF:0,,2.9. How to Recognize Different Parts of the Body: Batley Townswomen's Guild presents the first heart transplant
+#EXTINF:82,,2.9. How to Recognize Different Parts of the Body: Batley Townswomen's Guild presents the first heart transplant
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#4:9-4:9
-#EXTINF:0,,2.9. How to Recognize Different Parts of the Body: The first underwater production of ‘Measure for Measure’
+#EXTINF:104,,2.9. How to Recognize Different Parts of the Body: The first underwater production of ‘Measure for Measure’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#4:10-4:10
-#EXTINF:0,,2.9. How to Recognize Different Parts of the Body: The Death of Mary Queen of Scots
+#EXTINF:124,,2.9. How to Recognize Different Parts of the Body: The Death of Mary Queen of Scots
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#4:11-4:11
-#EXTINF:0,,2.9. How to Recognize Different Parts of the Body: Exploding penguin on TV set
+#EXTINF:186,,2.9. How to Recognize Different Parts of the Body: Exploding penguin on TV set
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#4:12-4:12
-#EXTINF:0,,2.9. How to Recognize Different Parts of the Body: There's been a murder
+#EXTINF:130,,2.9. How to Recognize Different Parts of the Body: There's been a murder
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#4:13-4:13
-#EXTINF:0,,2.9. How to Recognize Different Parts of the Body: Europolice Song Contest
+#EXTINF:90,,2.9. How to Recognize Different Parts of the Body: Europolice Song Contest
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#4:14-4:14
-#EXTINF:0,,2.9. How to Recognize Different Parts of the Body: ‘Bing Tiddle Tiddle Bong’ (song)
+#EXTINF:104,,2.9. How to Recognize Different Parts of the Body: ‘Bing Tiddle Tiddle Bong’ (song)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#4:15-4:15
-#EXTINF:0,,2.10. Scott of the Antarctic: French subtitled film (‘La Fromage Grande’)
+#EXTINF:347,,2.10. Scott of the Antarctic: French subtitled film (‘La Fromage Grande’)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#5:1-5:1
-#EXTINF:0,,2.10. Scott of the Antarctic: Scott of the Antarctic
+#EXTINF:474,,2.10. Scott of the Antarctic: Scott of the Antarctic
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#5:2-5:2
-#EXTINF:0,,2.10. Scott of the Antarctic: Scott of the Sahara
+#EXTINF:286,,2.10. Scott of the Antarctic: Scott of the Sahara
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#5:3-5:3
-#EXTINF:0,,2.10. Scott of the Antarctic: Cartoon – Conrad Poohs and his dancing teeth
+#EXTINF:94,,2.10. Scott of the Antarctic: Cartoon – Conrad Poohs and his dancing teeth
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#5:4-5:4
-#EXTINF:0,,2.10. Scott of the Antarctic: Fish licence
+#EXTINF:345,,2.10. Scott of the Antarctic: Fish licence
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#5:5-5:5
-#EXTINF:0,,2.10. Scott of the Antarctic: Derby Council v. All Blacks rugby match
+#EXTINF:106,,2.10. Scott of the Antarctic: Derby Council v. All Blacks rugby match
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#5:6-5:6
-#EXTINF:0,,2.10. Scott of the Antarctic: Long John Silver Impersonators v. Bournemouth Gynæcologists
+#EXTINF:134,,2.10. Scott of the Antarctic: Long John Silver Impersonators v. Bournemouth Gynæcologists
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#5:7-5:7
-#EXTINF:0,,2.11. How Not to Be Seen: Conquistador coffee campaign
+#EXTINF:154,,2.11. How Not to Be Seen: Conquistador coffee campaign
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#6:1-6:1
-#EXTINF:0,,2.11. How Not to Be Seen: Repeating groove
+#EXTINF:79,,2.11. How Not to Be Seen: Repeating groove
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#6:2-6:2
-#EXTINF:0,,2.11. How Not to Be Seen: Ramsay MacDonald striptease
+#EXTINF:36,,2.11. How Not to Be Seen: Ramsay MacDonald striptease
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#6:3-6:3
-#EXTINF:0,,2.11. How Not to Be Seen: Job hunter
+#EXTINF:88,,2.11. How Not to Be Seen: Job hunter
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#6:4-6:4
-#EXTINF:0,,2.11. How Not to Be Seen: Cartoon – Chinese communist conspiracy, Crelm toothpaste, Shrill petrol
+#EXTINF:147,,2.11. How Not to Be Seen: Cartoon – Chinese communist conspiracy, Crelm toothpaste, Shrill petrol
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#6:5-6:5
-#EXTINF:0,,2.11. How Not to Be Seen: Agatha Christie sketch (railway timetables)
+#EXTINF:196,,2.11. How Not to Be Seen: Agatha Christie sketch (railway timetables)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#6:6-6:6
-#EXTINF:0,,2.11. How Not to Be Seen: Mr Neville Shunt
+#EXTINF:98,,2.11. How Not to Be Seen: Mr Neville Shunt
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#6:7-6:7
-#EXTINF:0,,2.11. How Not to Be Seen: Film director (teeth)
+#EXTINF:153,,2.11. How Not to Be Seen: Film director (teeth)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#6:8-6:8
-#EXTINF:0,,2.11. How Not to Be Seen: City gents vox pops
+#EXTINF:86,,2.11. How Not to Be Seen: City gents vox pops
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#6:9-6:9
-#EXTINF:0,,2.11. How Not to Be Seen: ‘Crackpot Religions Ltd’
+#EXTINF:283,,2.11. How Not to Be Seen: ‘Crackpot Religions Ltd’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#6:10-6:10
-#EXTINF:0,,2.11. How Not to Be Seen: ‘How not to be seen’
+#EXTINF:202,,2.11. How Not to Be Seen: ‘How not to be seen’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#6:11-6:11
-#EXTINF:0,,2.11. How Not to Be Seen: Crossing the Atlantic on a tricycle
+#EXTINF:26,,2.11. How Not to Be Seen: Crossing the Atlantic on a tricycle
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#6:12-6:12
-#EXTINF:0,,2.11. How Not to Be Seen: Interview in filing cabinet
+#EXTINF:43,,2.11. How Not to Be Seen: Interview in filing cabinet
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#6:13-6:13
-#EXTINF:0,,2.11. How Not to Be Seen: ‘Yummy yummy’
+#EXTINF:102,,2.11. How Not to Be Seen: ‘Yummy yummy’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#6:14-6:14
-#EXTINF:0,,2.11. How Not to Be Seen: Monty Python's Flying Circus again in thirty seconds
+#EXTINF:49,,2.11. How Not to Be Seen: Monty Python's Flying Circus again in thirty seconds
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#6:15-6:15
-#EXTINF:0,,2.12. Spam: ‘The Black Eagle’
+#EXTINF:209,,2.12. Spam: ‘The Black Eagle’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#7:1-7:1
-#EXTINF:0,,2.12. Spam: Dirty Hungarian phrasebook
+#EXTINF:167,,2.12. Spam: Dirty Hungarian phrasebook
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#7:2-7:2
-#EXTINF:0,,2.12. Spam: Court (phrasebook)
+#EXTINF:149,,2.12. Spam: Court (phrasebook)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#7:3-7:3
-#EXTINF:0,,2.12. Spam: Cartoon – Student demonstration, World Forum opening titles
+#EXTINF:81,,2.12. Spam: Cartoon – Student demonstration, World Forum opening titles
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#7:4-7:4
-#EXTINF:0,,2.12. Spam: Communist quiz (World Forum)
+#EXTINF:219,,2.12. Spam: Communist quiz (World Forum)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#7:5-7:5
-#EXTINF:0,,2.12. Spam: ‘Ypres 1914’ – abandoned
+#EXTINF:119,,2.12. Spam: ‘Ypres 1914’ – abandoned
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#7:6-7:6
-#EXTINF:0,,2.12. Spam: Art gallery strike
+#EXTINF:98,,2.12. Spam: Art gallery strike
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#7:7-7:7
-#EXTINF:0,,2.12. Spam: Cartoon – Art gallery strike
+#EXTINF:84,,2.12. Spam: Cartoon – Art gallery strike
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#7:8-7:8
-#EXTINF:0,,2.12. Spam: ‘Ypres 1914’
+#EXTINF:312,,2.12. Spam: ‘Ypres 1914’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#7:9-7:9
-#EXTINF:0,,2.12. Spam: Hospital for over-actors
+#EXTINF:78,,2.12. Spam: Hospital for over-actors
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#7:10-7:10
-#EXTINF:0,,2.12. Spam: Cartoon – Hamlet linking Gumby flowers
+#EXTINF:48,,2.12. Spam: Cartoon – Hamlet linking Gumby flowers
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#7:11-7:11
-#EXTINF:0,,2.12. Spam: Gumby flower arranging
+#EXTINF:31,,2.12. Spam: Gumby flower arranging
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#7:12-7:12
-#EXTINF:0,,2.12. Spam: Spam
+#EXTINF:228,,2.12. Spam: Spam
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#7:13-7:13
-#EXTINF:0,,2.13. Royal Episode 13: The queen will be watching
+#EXTINF:74,,2.13. Royal Episode 13: The queen will be watching
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#8:1-8:1
-#EXTINF:0,,2.13. Royal Episode 13: Coal mine (historical argument)
+#EXTINF:193,,2.13. Royal Episode 13: Coal mine (historical argument)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#8:2-8:2
-#EXTINF:0,,2.13. Royal Episode 13: The man who says things in a very roundabout way
+#EXTINF:63,,2.13. Royal Episode 13: The man who says things in a very roundabout way
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#8:3-8:3
-#EXTINF:0,,2.13. Royal Episode 13: The man who speaks only the ends of words
+#EXTINF:26,,2.13. Royal Episode 13: The man who speaks only the ends of words
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#8:4-8:4
-#EXTINF:0,,2.13. Royal Episode 13: The man who speaks only the beginnings of words
+#EXTINF:12,,2.13. Royal Episode 13: The man who speaks only the beginnings of words
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#8:5-8:5
-#EXTINF:0,,2.13. Royal Episode 13: The man who speaks only the middles of words
+#EXTINF:30,,2.13. Royal Episode 13: The man who speaks only the middles of words
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#8:6-8:6
-#EXTINF:0,,2.13. Royal Episode 13: Cartoon – Crelm toothpaste
+#EXTINF:42,,2.13. Royal Episode 13: Cartoon – Crelm toothpaste
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#8:7-8:7
-#EXTINF:0,,2.13. Royal Episode 13: Commercials
+#EXTINF:51,,2.13. Royal Episode 13: Commercials
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#8:8-8:8
-#EXTINF:0,,2.13. Royal Episode 13: How to feed a goldfish (fish club)
+#EXTINF:101,,2.13. Royal Episode 13: How to feed a goldfish (fish club)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#8:9-8:9
-#EXTINF:0,,2.13. Royal Episode 13: The man who collects birdwatchers' eggs
+#EXTINF:133,,2.13. Royal Episode 13: The man who collects birdwatchers' eggs
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#8:10-8:10
-#EXTINF:0,,2.13. Royal Episode 13: Cartoon – Spiny Norman, ‘Insurance sketch’ titles
+#EXTINF:72,,2.13. Royal Episode 13: Cartoon – Spiny Norman, ‘Insurance sketch’ titles
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#8:11-8:11
-#EXTINF:0,,2.13. Royal Episode 13: Insurance sketch
+#EXTINF:41,,2.13. Royal Episode 13: Insurance sketch
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#8:12-8:12
-#EXTINF:0,,2.13. Royal Episode 13: Queen tunes in
+#EXTINF:57,,2.13. Royal Episode 13: Queen tunes in
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#8:13-8:13
-#EXTINF:0,,2.13. Royal Episode 13: Hospital run by RSM
+#EXTINF:259,,2.13. Royal Episode 13: Hospital run by RSM
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#8:14-8:14
-#EXTINF:0,,2.13. Royal Episode 13: Mountaineer; Exploding version of ‘The Blue Danube’
+#EXTINF:43,,2.13. Royal Episode 13: Mountaineer; Exploding version of ‘The Blue Danube’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#8:15-8:15
-#EXTINF:0,,2.13. Royal Episode 13: Girls' boarding school
+#EXTINF:87,,2.13. Royal Episode 13: Girls' boarding school
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#8:16-8:16
-#EXTINF:0,,2.13. Royal Episode 13: Submarine
+#EXTINF:106,,2.13. Royal Episode 13: Submarine
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#8:17-8:17
-#EXTINF:0,,2.13. Royal Episode 13: Lifeboat (cannibalism)
+#EXTINF:240,,2.13. Royal Episode 13: Lifeboat (cannibalism)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#8:18-8:18
-#EXTINF:0,,2.13. Royal Episode 13: Undertaker's sketch
+#EXTINF:175,,2.13. Royal Episode 13: Undertaker's sketch
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S02D02.%20E08%e2%80%9313.iso#8:19-8:19
 
-#EXTINF:0,,3.1. Whicker's World: Court scene – multiple murderer
+#EXTINF:313,,3.1. Whicker's World: Court scene – multiple murderer
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#2:1-2:1
-#EXTINF:0,,3.1. Whicker's World: Cartoon – Detectives examine prisoner
+#EXTINF:119,,3.1. Whicker's World: Cartoon – Detectives examine prisoner
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#2:2-2:2
-#EXTINF:0,,3.1. Whicker's World: Icelandic saga (‘Njorl's Saga’)
+#EXTINF:320,,3.1. Whicker's World: Icelandic saga (‘Njorl's Saga’)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#2:3-2:3
-#EXTINF:0,,3.1. Whicker's World: Court scene (Viking)
+#EXTINF:351,,3.1. Whicker's World: Court scene (Viking)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#2:4-2:4
-#EXTINF:0,,3.1. Whicker's World: Stock Exchange report
+#EXTINF:76,,3.1. Whicker's World: Stock Exchange report
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#2:5-2:5
-#EXTINF:0,,3.1. Whicker's World: Mrs Premise and Mrs Conclusion visit Jean-Paul Sartre
+#EXTINF:509,,3.1. Whicker's World: Mrs Premise and Mrs Conclusion visit Jean-Paul Sartre
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#2:6-2:6
-#EXTINF:0,,3.1. Whicker's World: Whicker Island
+#EXTINF:160,,3.1. Whicker's World: Whicker Island
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#2:7-2:7
-#EXTINF:0,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Emigration from Surbiton to Hounslow
+#EXTINF:341,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Emigration from Surbiton to Hounslow
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#4:1-4:1
-#EXTINF:0,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Schoolboys' Life Assurance Company
+#EXTINF:97,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Schoolboys' Life Assurance Company
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#4:2-4:2
-#EXTINF:0,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: How to rid the world of all known diseases
+#EXTINF:81,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: How to rid the world of all known diseases
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#4:3-4:3
-#EXTINF:0,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Mrs Niggerbaiter explodes
+#EXTINF:78,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Mrs Niggerbaiter explodes
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#4:4-4:4
-#EXTINF:0,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Vicar/salesman
+#EXTINF:97,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Vicar/salesman
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#4:5-4:5
-#EXTINF:0,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Cartoon – Anatomy chart
+#EXTINF:23,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Cartoon – Anatomy chart
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#4:6-4:6
-#EXTINF:0,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Farming Club: ‘Life of Tschaikowsky’
+#EXTINF:277,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Farming Club: ‘Life of Tschaikowsky’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#4:7-4:7
-#EXTINF:0,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Trim-Jeans Theatre
+#EXTINF:169,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Trim-Jeans Theatre
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#4:8-4:8
-#EXTINF:0,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Cartoon – Compère
+#EXTINF:37,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Cartoon – Compère
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#4:9-4:9
-#EXTINF:0,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Fish-slapping dance
+#EXTINF:15,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Fish-slapping dance
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#4:10-4:10
-#EXTINF:0,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Cartoon – Nationalistic fish
+#EXTINF:51,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Cartoon – Nationalistic fish
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#4:11-4:11
-#EXTINF:0,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: World War One (abandon ship)
+#EXTINF:88,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: World War One (abandon ship)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#4:12-4:12
-#EXTINF:0,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: The BBC is short of money
+#EXTINF:94,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: The BBC is short of money
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#4:13-4:13
-#EXTINF:0,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Puss in Boots
+#EXTINF:220,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: Puss in Boots
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#4:14-4:14
-#EXTINF:0,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: ‘It's’ (chat show)
+#EXTINF:76,,3.2. Mr. and Mrs. Brian Norris' Ford Popular: ‘It's’ (chat show)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#4:15-4:15
-#EXTINF:0,,3.3. The Money Programme: ‘The Money Programme’
+#EXTINF:107,,3.3. The Money Programme: ‘The Money Programme’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#5:1-5:1
-#EXTINF:0,,3.3. The Money Programme: ‘There is nothing quite so wonderful as money’ (song)
+#EXTINF:90,,3.3. The Money Programme: ‘There is nothing quite so wonderful as money’ (song)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#5:2-5:2
-#EXTINF:0,,3.3. The Money Programme: Erizabeth L
+#EXTINF:162,,3.3. The Money Programme: Erizabeth L
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#5:3-5:3
-#EXTINF:0,,3.3. The Money Programme: Fraud film squad
+#EXTINF:137,,3.3. The Money Programme: Fraud film squad
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#5:4-5:4
-#EXTINF:0,,3.3. The Money Programme: Cartoon – Police hunt for Visconti impersonator
+#EXTINF:35,,3.3. The Money Programme: Cartoon – Police hunt for Visconti impersonator
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#5:5-5:5
-#EXTINF:0,,3.3. The Money Programme: Salvation fuzz/church police
+#EXTINF:173,,3.3. The Money Programme: Salvation fuzz/church police
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#5:6-5:6
-#EXTINF:0,,3.3. The Money Programme: Cartoon – Heaven/women in jungle
+#EXTINF:58,,3.3. The Money Programme: Cartoon – Heaven/women in jungle
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#5:7-5:7
-#EXTINF:0,,3.3. The Money Programme: Jungle restaurant
+#EXTINF:187,,3.3. The Money Programme: Jungle restaurant
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#5:8-5:8
-#EXTINF:0,,3.3. The Money Programme: Apology for violence and nudity
+#EXTINF:36,,3.3. The Money Programme: Apology for violence and nudity
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#5:9-5:9
-#EXTINF:0,,3.3. The Money Programme: Ken Russell's ‘Gardening Club’
+#EXTINF:22,,3.3. The Money Programme: Ken Russell's ‘Gardening Club’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#5:10-5:10
-#EXTINF:0,,3.3. The Money Programme: The lost World of Roiurama
+#EXTINF:321,,3.3. The Money Programme: The lost World of Roiurama
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#5:11-5:11
-#EXTINF:0,,3.3. The Money Programme: Six more minutes of Monty Python's Flying Circus
+#EXTINF:8,,3.3. The Money Programme: Six more minutes of Monty Python's Flying Circus
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#5:12-5:12
-#EXTINF:0,,3.3. The Money Programme: Argument clinic
+#EXTINF:239,,3.3. The Money Programme: Argument clinic
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#5:13-5:13
-#EXTINF:0,,3.3. The Money Programme: Hitting on the head lessons
+#EXTINF:25,,3.3. The Money Programme: Hitting on the head lessons
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#5:14-5:14
-#EXTINF:0,,3.3. The Money Programme: Inspector Flying Fox of the Yard
+#EXTINF:97,,3.3. The Money Programme: Inspector Flying Fox of the Yard
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#5:15-5:15
-#EXTINF:0,,3.3. The Money Programme: One more minute of Monty Python's Flying Circus
+#EXTINF:22,,3.3. The Money Programme: One more minute of Monty Python's Flying Circus
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#5:16-5:16
-#EXTINF:0,,3.4. Blood, Devastation, Death, War and Horror: ‘Blood, Devastation, Death, War and Horror’
+#EXTINF:25,,3.4. Blood, Devastation, Death, War and Horror: ‘Blood, Devastation, Death, War and Horror’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#6:1-6:1
-#EXTINF:0,,3.4. Blood, Devastation, Death, War and Horror: The man who speaks in anagrams
+#EXTINF:107,,3.4. Blood, Devastation, Death, War and Horror: The man who speaks in anagrams
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#6:2-6:2
-#EXTINF:0,,3.4. Blood, Devastation, Death, War and Horror: Anagram quiz
+#EXTINF:28,,3.4. Blood, Devastation, Death, War and Horror: Anagram quiz
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#6:3-6:3
-#EXTINF:0,,3.4. Blood, Devastation, Death, War and Horror: Merchant banker
+#EXTINF:248,,3.4. Blood, Devastation, Death, War and Horror: Merchant banker
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#6:4-6:4
-#EXTINF:0,,3.4. Blood, Devastation, Death, War and Horror: Pantomime horses
+#EXTINF:109,,3.4. Blood, Devastation, Death, War and Horror: Pantomime horses
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#6:5-6:5
-#EXTINF:0,,3.4. Blood, Devastation, Death, War and Horror: Life and death struggles
+#EXTINF:162,,3.4. Blood, Devastation, Death, War and Horror: Life and death struggles
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#6:6-6:6
-#EXTINF:0,,3.4. Blood, Devastation, Death, War and Horror: Cartoon – The househunters
+#EXTINF:243,,3.4. Blood, Devastation, Death, War and Horror: Cartoon – The househunters
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#6:7-6:7
-#EXTINF:0,,3.4. Blood, Devastation, Death, War and Horror: Mary recruitment office
+#EXTINF:183,,3.4. Blood, Devastation, Death, War and Horror: Mary recruitment office
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#6:8-6:8
-#EXTINF:0,,3.4. Blood, Devastation, Death, War and Horror: Bus conductor sketch
+#EXTINF:46,,3.4. Blood, Devastation, Death, War and Horror: Bus conductor sketch
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#6:9-6:9
-#EXTINF:0,,3.4. Blood, Devastation, Death, War and Horror: The man who makes people laugh uncontrollably
+#EXTINF:127,,3.4. Blood, Devastation, Death, War and Horror: The man who makes people laugh uncontrollably
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#6:10-6:10
-#EXTINF:0,,3.4. Blood, Devastation, Death, War and Horror: Army captain as clown
+#EXTINF:36,,3.4. Blood, Devastation, Death, War and Horror: Army captain as clown
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#6:11-6:11
-#EXTINF:0,,3.4. Blood, Devastation, Death, War and Horror: Gestures to indicate pauses in a televised talk (‘The Bols Story’)
+#EXTINF:110,,3.4. Blood, Devastation, Death, War and Horror: Gestures to indicate pauses in a televised talk (‘The Bols Story’)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#6:12-6:12
-#EXTINF:0,,3.4. Blood, Devastation, Death, War and Horror: Neurotic announcers
+#EXTINF:108,,3.4. Blood, Devastation, Death, War and Horror: Neurotic announcers
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#6:13-6:13
-#EXTINF:0,,3.4. Blood, Devastation, Death, War and Horror: The news with Richard Baker (vision only)
+#EXTINF:77,,3.4. Blood, Devastation, Death, War and Horror: The news with Richard Baker (vision only)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#6:14-6:14
-#EXTINF:0,,3.4. Blood, Devastation, Death, War and Horror: ‘The Pantomime Hose is a Secret Agent Film’
+#EXTINF:185,,3.4. Blood, Devastation, Death, War and Horror: ‘The Pantomime Hose is a Secret Agent Film’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#6:15-6:15
-#EXTINF:0,,3.5. The All-England Summarize Proust Competition: Summarize Proust Competition
+#EXTINF:324,,3.5. The All-England Summarize Proust Competition: Summarize Proust Competition
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#7:1-7:1
-#EXTINF:0,,3.5. The All-England Summarize Proust Competition: Everest climbed by hairdressers
+#EXTINF:177,,3.5. The All-England Summarize Proust Competition: Everest climbed by hairdressers
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#7:2-7:2
-#EXTINF:0,,3.5. The All-England Summarize Proust Competition: Cartoon – ‘A magnificent festering’
+#EXTINF:103,,3.5. The All-England Summarize Proust Competition: Cartoon – ‘A magnificent festering’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#7:3-7:3
-#EXTINF:0,,3.5. The All-England Summarize Proust Competition: Fire brigade
+#EXTINF:185,,3.5. The All-England Summarize Proust Competition: Fire brigade
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#7:4-7:4
-#EXTINF:0,,3.5. The All-England Summarize Proust Competition: Our Eamonn
+#EXTINF:160,,3.5. The All-England Summarize Proust Competition: Our Eamonn
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#7:5-7:5
-#EXTINF:0,,3.5. The All-England Summarize Proust Competition: ‘Party Hints’ with Veronica Smalls
+#EXTINF:89,,3.5. The All-England Summarize Proust Competition: ‘Party Hints’ with Veronica Smalls
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#7:6-7:6
-#EXTINF:0,,3.5. The All-England Summarize Proust Competition: Cartoon – Communist revolutions
+#EXTINF:83,,3.5. The All-England Summarize Proust Competition: Cartoon – Communist revolutions
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#7:7-7:7
-#EXTINF:0,,3.5. The All-England Summarize Proust Competition: Language laboratory
+#EXTINF:127,,3.5. The All-England Summarize Proust Competition: Language laboratory
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#7:8-7:8
-#EXTINF:0,,3.5. The All-England Summarize Proust Competition: Travel agent; Watney's Red Barrel
+#EXTINF:317,,3.5. The All-England Summarize Proust Competition: Travel agent; Watney's Red Barrel
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#7:9-7:9
-#EXTINF:0,,3.5. The All-England Summarize Proust Competition: Theory on Brontosauruses by Anne Elk (Miss)
+#EXTINF:278,,3.5. The All-England Summarize Proust Competition: Theory on Brontosauruses by Anne Elk (Miss)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#7:10-7:10
-#EXTINF:0,,3.6. The War Against Pornography: Tory Housewives Clean-up Campaign
+#EXTINF:180,,3.6. The War Against Pornography: Tory Housewives Clean-up Campaign
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#8:1-8:1
-#EXTINF:0,,3.6. The War Against Pornography: Gumby brain specialist
+#EXTINF:211,,3.6. The War Against Pornography: Gumby brain specialist
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#8:2-8:2
-#EXTINF:0,,3.6. The War Against Pornography: Cartoon – Art appreciation
+#EXTINF:106,,3.6. The War Against Pornography: Cartoon – Art appreciation
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#8:3-8:3
-#EXTINF:0,,3.6. The War Against Pornography: Molluscs – ‘live’ TV documentary
+#EXTINF:327,,3.6. The War Against Pornography: Molluscs – ‘live’ TV documentary
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#8:4-8:4
-#EXTINF:0,,3.6. The War Against Pornography: The Minister for Not Listening to People
+#EXTINF:102,,3.6. The War Against Pornography: The Minister for Not Listening to People
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#8:5-8:5
-#EXTINF:0,,3.6. The War Against Pornography: Tuesday documentary/children's story/party political broadcast
+#EXTINF:104,,3.6. The War Against Pornography: Tuesday documentary/children's story/party political broadcast
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#8:6-8:6
-#EXTINF:0,,3.6. The War Against Pornography: Apology (politicians)
+#EXTINF:63,,3.6. The War Against Pornography: Apology (politicians)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#8:7-8:7
-#EXTINF:0,,3.6. The War Against Pornography: Expedition to Lake Pahoe
+#EXTINF:419,,3.6. The War Against Pornography: Expedition to Lake Pahoe
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#8:8-8:8
-#EXTINF:0,,3.6. The War Against Pornography: The silliest interview we've ever had
+#EXTINF:58,,3.6. The War Against Pornography: The silliest interview we've ever had
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#8:9-8:9
-#EXTINF:0,,3.6. The War Against Pornography: The silliest sketch we've ever done
+#EXTINF:130,,3.6. The War Against Pornography: The silliest sketch we've ever done
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#8:10-8:10
-#EXTINF:0,,3.7. Salad Days: Biggles dictates a letter
+#EXTINF:291,,3.7. Salad Days: Biggles dictates a letter
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#16:1-16:1
-#EXTINF:0,,3.7. Salad Days: Cartoon – Flying sheep, traffic accidents
+#EXTINF:35,,3.7. Salad Days: Cartoon – Flying sheep, traffic accidents
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#16:2-16:2
-#EXTINF:0,,3.7. Salad Days: Climbing the north face of the Uxbridge Road
+#EXTINF:104,,3.7. Salad Days: Climbing the north face of the Uxbridge Road
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#16:3-16:3
-#EXTINF:0,,3.7. Salad Days: Lifeboat
+#EXTINF:77,,3.7. Salad Days: Lifeboat
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#16:4-16:4
-#EXTINF:0,,3.7. Salad Days: Old lady snoopers
+#EXTINF:178,,3.7. Salad Days: Old lady snoopers
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#16:5-16:5
-#EXTINF:0,,3.7. Salad Days: ‘Storage jars’
+#EXTINF:101,,3.7. Salad Days: ‘Storage jars’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#16:6-16:6
-#EXTINF:0,,3.7. Salad Days: Cartoon – Television is bad for your eyes
+#EXTINF:148,,3.7. Salad Days: Cartoon – Television is bad for your eyes
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#16:7-16:7
-#EXTINF:0,,3.7. Salad Days: The show so far
+#EXTINF:76,,3.7. Salad Days: The show so far
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#16:8-16:8
-#EXTINF:0,,3.7. Salad Days: Cheese shop
+#EXTINF:331,,3.7. Salad Days: Cheese shop
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#16:9-16:9
-#EXTINF:0,,3.7. Salad Days: Philip Jenkinson on Cheese Westerns
+#EXTINF:61,,3.7. Salad Days: Philip Jenkinson on Cheese Westerns
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#16:10-16:10
-#EXTINF:0,,3.7. Salad Days: Sam Peckinpah's ‘Salad Days’
+#EXTINF:118,,3.7. Salad Days: Sam Peckinpah's ‘Salad Days’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#16:11-16:11
-#EXTINF:0,,3.7. Salad Days: Apology
+#EXTINF:47,,3.7. Salad Days: Apology
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#16:12-16:12
-#EXTINF:0,,3.7. Salad Days: The news with Richard Baker
+#EXTINF:18,,3.7. Salad Days: The news with Richard Baker
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#16:13-16:13
-#EXTINF:0,,3.7. Salad Days: Seashore interlude film
+#EXTINF:133,,3.7. Salad Days: Seashore interlude film
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D01.%20E01%e2%80%9307.iso#16:14-16:14
-#EXTINF:0,,3.8. The Cycling Tour: Mr Pither
+#EXTINF:521,,3.8. The Cycling Tour: Mr Pither
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#2:1-2:1
-#EXTINF:0,,3.8. The Cycling Tour: Clodagh Rogers
+#EXTINF:104,,3.8. The Cycling Tour: Clodagh Rogers
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#2:2-2:2
-#EXTINF:0,,3.8. The Cycling Tour: Trotsky
+#EXTINF:213,,3.8. The Cycling Tour: Trotsky
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#2:3-2:3
-#EXTINF:0,,3.8. The Cycling Tour: Smolensk
+#EXTINF:78,,3.8. The Cycling Tour: Smolensk
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#2:4-2:4
-#EXTINF:0,,3.8. The Cycling Tour: Bingo-crazed Chinese
+#EXTINF:905,,3.8. The Cycling Tour: Bingo-crazed Chinese
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#2:5-2:5
-#EXTINF:0,,3.8. The Cycling Tour: Cartoon – ‘Jack in a Box’
+#EXTINF:40,,3.8. The Cycling Tour: Cartoon – ‘Jack in a Box’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#2:6-2:6
-#EXTINF:0,,3.9. The Nude Organist: Bomb on plane
+#EXTINF:82,,3.9. The Nude Organist: Bomb on plane
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#4:1-4:1
-#EXTINF:0,,3.9. The Nude Organist: A naked man
+#EXTINF:69,,3.9. The Nude Organist: A naked man
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#4:2-4:2
-#EXTINF:0,,3.9. The Nude Organist: Ten seconds of sex
+#EXTINF:29,,3.9. The Nude Organist: Ten seconds of sex
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#4:3-4:3
-#EXTINF:0,,3.9. The Nude Organist: Housing project built by characters from nineteenth-century English literature
+#EXTINF:69,,3.9. The Nude Organist: Housing project built by characters from nineteenth-century English literature
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#4:4-4:4
-#EXTINF:0,,3.9. The Nude Organist: M1 interchange built by characters from ‘Paradise Lost’
+#EXTINF:30,,3.9. The Nude Organist: M1 interchange built by characters from ‘Paradise Lost’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#4:5-4:5
-#EXTINF:0,,3.9. The Nude Organist: Mystico and Janet – flats built by hypnosis
+#EXTINF:228,,3.9. The Nude Organist: Mystico and Janet – flats built by hypnosis
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#4:6-4:6
-#EXTINF:0,,3.9. The Nude Organist: ‘Mortuary Hour’
+#EXTINF:248,,3.9. The Nude Organist: ‘Mortuary Hour’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#4:7-4:7
-#EXTINF:0,,3.9. The Nude Organist: Cartoon – Animator, flying saucers
+#EXTINF:72,,3.9. The Nude Organist: Cartoon – Animator, flying saucers
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#4:8-4:8
-#EXTINF:0,,3.9. The Nude Organist: The Olympic hide-and-seek final
+#EXTINF:402,,3.9. The Nude Organist: The Olympic hide-and-seek final
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#4:9-4:9
-#EXTINF:0,,3.9. The Nude Organist: Donkey rides
+#EXTINF:53,,3.9. The Nude Organist: Donkey rides
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#4:10-4:10
-#EXTINF:0,,3.9. The Nude Organist: The Cheap-Laughs
+#EXTINF:128,,3.9. The Nude Organist: The Cheap-Laughs
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#4:11-4:11
-#EXTINF:0,,3.9. The Nude Organist: Bull-fighting
+#EXTINF:28,,3.9. The Nude Organist: Bull-fighting
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#4:12-4:12
-#EXTINF:0,,3.9. The Nude Organist: The British Well-Basically Club
+#EXTINF:53,,3.9. The Nude Organist: The British Well-Basically Club
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#4:13-4:13
-#EXTINF:0,,3.9. The Nude Organist: Cartoon – Algon opening
+#EXTINF:76,,3.9. The Nude Organist: Cartoon – Algon opening
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#4:14-4:14
-#EXTINF:0,,3.9. The Nude Organist: Prices on the planet Algon
+#EXTINF:272,,3.9. The Nude Organist: Prices on the planet Algon
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#4:15-4:15
-#EXTINF:0,,3.10. E. Henry Thripshaw's Disease: Tudor jobs agency
+#EXTINF:108,,3.10. E. Henry Thripshaw's Disease: Tudor jobs agency
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#5:1-5:1
-#EXTINF:0,,3.10. E. Henry Thripshaw's Disease: Pornographic bookshop
+#EXTINF:213,,3.10. E. Henry Thripshaw's Disease: Pornographic bookshop
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#5:2-5:2
-#EXTINF:0,,3.10. E. Henry Thripshaw's Disease: Elizabethan pornography smugglers (Sir Philip Sydney)
+#EXTINF:326,,3.10. E. Henry Thripshaw's Disease: Elizabethan pornography smugglers (Sir Philip Sydney)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#5:3-5:3
-#EXTINF:0,,3.10. E. Henry Thripshaw's Disease: Cartoon – ‘Gay boys in bondage’
+#EXTINF:43,,3.10. E. Henry Thripshaw's Disease: Cartoon – ‘Gay boys in bondage’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#5:4-5:4
-#EXTINF:0,,3.10. E. Henry Thripshaw's Disease: Silly disturbances (the Rev Arthur Belling)
+#EXTINF:200,,3.10. E. Henry Thripshaw's Disease: Silly disturbances (the Rev Arthur Belling)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#5:5-5:5
-#EXTINF:0,,3.10. E. Henry Thripshaw's Disease: Cartoon – Shooting gallery
+#EXTINF:53,,3.10. E. Henry Thripshaw's Disease: Cartoon – Shooting gallery
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#5:6-5:6
-#EXTINF:0,,3.10. E. Henry Thripshaw's Disease: The free repetition of doubtful words sketch, by an underrated author
+#EXTINF:125,,3.10. E. Henry Thripshaw's Disease: The free repetition of doubtful words sketch, by an underrated author
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#5:7-5:7
-#EXTINF:0,,3.10. E. Henry Thripshaw's Disease: ‘Is there?’… life after death?
+#EXTINF:88,,3.10. E. Henry Thripshaw's Disease: ‘Is there?’… life after death?
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#5:8-5:8
-#EXTINF:0,,3.10. E. Henry Thripshaw's Disease: The man who says words in the wrong order
+#EXTINF:110,,3.10. E. Henry Thripshaw's Disease: The man who says words in the wrong order
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#5:9-5:9
-#EXTINF:0,,3.10. E. Henry Thripshaw's Disease: Thripshaw's disease
+#EXTINF:132,,3.10. E. Henry Thripshaw's Disease: Thripshaw's disease
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#5:10-5:10
-#EXTINF:0,,3.10. E. Henry Thripshaw's Disease: Silly noises
+#EXTINF:19,,3.10. E. Henry Thripshaw's Disease: Silly noises
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#5:11-5:11
-#EXTINF:0,,3.10. E. Henry Thripshaw's Disease: Sherry-drinking vicar
+#EXTINF:251,,3.10. E. Henry Thripshaw's Disease: Sherry-drinking vicar
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#5:12-5:12
-#EXTINF:0,,3.11. Dennis Moore: ‘Boxing Tonight’ – Jack Bodell v. Sir Kenneth Clark
+#EXTINF:110,,3.11. Dennis Moore: ‘Boxing Tonight’ – Jack Bodell v. Sir Kenneth Clark
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#6:1-6:1
-#EXTINF:0,,3.11. Dennis Moore: Dennis Moore; Lupins
+#EXTINF:213,,3.11. Dennis Moore: Dennis Moore; Lupins
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#6:2-6:2
-#EXTINF:0,,3.11. Dennis Moore: What the stars foretell
+#EXTINF:188,,3.11. Dennis Moore: What the stars foretell
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#6:3-6:3
-#EXTINF:0,,3.11. Dennis Moore: Doctor
+#EXTINF:120,,3.11. Dennis Moore: Doctor
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#6:4-6:4
-#EXTINF:0,,3.11. Dennis Moore: Cartoon – Ambulance chasers
+#EXTINF:126,,3.11. Dennis Moore: Cartoon – Ambulance chasers
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#6:5-6:5
-#EXTINF:0,,3.11. Dennis Moore: ‘TV4 or not TV4’ discussion
+#EXTINF:72,,3.11. Dennis Moore: ‘TV4 or not TV4’ discussion
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#6:6-6:6
-#EXTINF:0,,3.11. Dennis Moore: More Dennis Moore
+#EXTINF:327,,3.11. Dennis Moore: More Dennis Moore
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#6:7-6:7
-#EXTINF:0,,3.11. Dennis Moore: Ideal Loon Exhibition
+#EXTINF:158,,3.11. Dennis Moore: Ideal Loon Exhibition
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#6:8-6:8
-#EXTINF:0,,3.11. Dennis Moore: Cartoon – Plan 38A
+#EXTINF:54,,3.11. Dennis Moore: Cartoon – Plan 38A
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#6:9-6:9
-#EXTINF:0,,3.11. Dennis Moore: Off-Licence
+#EXTINF:83,,3.11. Dennis Moore: Off-Licence
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#6:10-6:10
-#EXTINF:0,,3.11. Dennis Moore: Still More Dennis Moore
+#EXTINF:155,,3.11. Dennis Moore: Still More Dennis Moore
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#6:11-6:11
-#EXTINF:0,,3.11. Dennis Moore: ‘Prejudice’
+#EXTINF:274,,3.11. Dennis Moore: ‘Prejudice’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#6:12-6:12
-#EXTINF:0,,3.12. A Book at Bedtime: ‘A Book at Bedtime’: ‘Redgauntlet’
+#EXTINF:148,,3.12. A Book at Bedtime: ‘A Book at Bedtime’: ‘Redgauntlet’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#7:1-7:1
-#EXTINF:0,,3.12. A Book at Bedtime: McKamikaze Scotsmen
+#EXTINF:118,,3.12. A Book at Bedtime: McKamikaze Scotsmen
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#7:2-7:2
-#EXTINF:0,,3.12. A Book at Bedtime: No Time to Lose
+#EXTINF:149,,3.12. A Book at Bedtime: No Time to Lose
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#7:3-7:3
-#EXTINF:0,,3.12. A Book at Bedtime: Cartoon – No time Toulouse
+#EXTINF:30,,3.12. A Book at Bedtime: Cartoon – No time Toulouse
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#7:4-7:4
-#EXTINF:0,,3.12. A Book at Bedtime: More McKamikaze Scotsmen
+#EXTINF:129,,3.12. A Book at Bedtime: More McKamikaze Scotsmen
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#7:5-7:5
-#EXTINF:0,,3.12. A Book at Bedtime: Cartoon – 2001
+#EXTINF:86,,3.12. A Book at Bedtime: Cartoon – 2001
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#7:6-7:6
-#EXTINF:0,,3.12. A Book at Bedtime: Penguins; BBC programme planners
+#EXTINF:324,,3.12. A Book at Bedtime: Penguins; BBC programme planners
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#7:7-7:7
-#EXTINF:0,,3.12. A Book at Bedtime: Unexploded Scotsman
+#EXTINF:126,,3.12. A Book at Bedtime: Unexploded Scotsman
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#7:8-7:8
-#EXTINF:0,,3.12. A Book at Bedtime: ‘Spot the Looney’
+#EXTINF:164,,3.12. A Book at Bedtime: ‘Spot the Looney’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#7:9-7:9
-#EXTINF:0,,3.12. A Book at Bedtime: Rival documentaries
+#EXTINF:207,,3.12. A Book at Bedtime: Rival documentaries
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#7:10-7:10
-#EXTINF:0,,3.12. A Book at Bedtime: ‘Dad's Doctors’ (trail)
+#EXTINF:27,,3.12. A Book at Bedtime: ‘Dad's Doctors’ (trail)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#7:11-7:11
-#EXTINF:0,,3.12. A Book at Bedtime: ‘Dad's Pooves’ (trail)
+#EXTINF:93,,3.12. A Book at Bedtime: ‘Dad's Pooves’ (trail)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#7:12-7:12
-#EXTINF:0,,3.13. Grandstand: Thames TV introduction
+#EXTINF:22,,3.13. Grandstand: Thames TV introduction
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#8:1-8:1
-#EXTINF:0,,3.13. Grandstand: ‘Light Entertainment Awards’: Dickie Attenborough
+#EXTINF:176,,3.13. Grandstand: ‘Light Entertainment Awards’: Dickie Attenborough
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#8:2-8:2
-#EXTINF:0,,3.13. Grandstand: The Oscar Wilde sketch
+#EXTINF:252,,3.13. Grandstand: The Oscar Wilde sketch
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#8:3-8:3
-#EXTINF:0,,3.13. Grandstand: Cartoon – Charwoman
+#EXTINF:29,,3.13. Grandstand: Cartoon – Charwoman
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#8:4-8:4
-#EXTINF:0,,3.13. Grandstand: David Niven's fridge
+#EXTINF:113,,3.13. Grandstand: David Niven's fridge
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#8:5-8:5
-#EXTINF:0,,3.13. Grandstand: Pasolini's film ‘The Third Test Match’
+#EXTINF:85,,3.13. Grandstand: Pasolini's film ‘The Third Test Match’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#8:6-8:6
-#EXTINF:0,,3.13. Grandstand: New brain from Curry's
+#EXTINF:308,,3.13. Grandstand: New brain from Curry's
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#8:7-8:7
-#EXTINF:0,,3.13. Grandstand: Blood donor
+#EXTINF:104,,3.13. Grandstand: Blood donor
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#8:8-8:8
-#EXTINF:0,,3.13. Grandstand: International Wife-Swapping
+#EXTINF:230,,3.13. Grandstand: International Wife-Swapping
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#8:9-8:9
-#EXTINF:0,,3.13. Grandstand: Credits of the Year
+#EXTINF:78,,3.13. Grandstand: Credits of the Year
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#8:10-8:10
-#EXTINF:0,,3.13. Grandstand: The dirty vicar sketch
+#EXTINF:197,,3.13. Grandstand: The dirty vicar sketch
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S03D02.%20E08%e2%80%9313.iso#8:11-8:11
 
-#EXTINF:0,,4.1. The Golden Age of Ballooning: Montgolfier Brothers
+#EXTINF:174,,4.1. The Golden Age of Ballooning: Montgolfier Brothers
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#2:1-2:1
-#EXTINF:0,,4.1. The Golden Age of Ballooning: Cartoon – Montgolfier brothers wash each other
+#EXTINF:190,,4.1. The Golden Age of Ballooning: Cartoon – Montgolfier brothers wash each other
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#2:2-2:2
-#EXTINF:0,,4.1. The Golden Age of Ballooning: Louis XIV
+#EXTINF:308,,4.1. The Golden Age of Ballooning: Louis XIV
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#2:3-2:3
-#EXTINF:0,,4.1. The Golden Age of Ballooning: George III
+#EXTINF:489,,4.1. The Golden Age of Ballooning: George III
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#2:4-2:4
-#EXTINF:0,,4.1. The Golden Age of Ballooning: Zeppelin
+#EXTINF:524,,4.1. The Golden Age of Ballooning: Zeppelin
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#2:5-2:5
-#EXTINF:0,,4.2. Michael Ellis: Department store; Buying an ant
+#EXTINF:640,,4.2. Michael Ellis: Department store; Buying an ant
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#4:1-4:1
-#EXTINF:0,,4.2. Michael Ellis: At home with the ant and other pets; Documentary on ants
+#EXTINF:140,,4.2. Michael Ellis: At home with the ant and other pets; Documentary on ants
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#4:2-4:2
-#EXTINF:0,,4.2. Michael Ellis: Ant communication
+#EXTINF:117,,4.2. Michael Ellis: Ant communication
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#4:3-4:3
-#EXTINF:0,,4.2. Michael Ellis: Cartoon – Ants
+#EXTINF:215,,4.2. Michael Ellis: Cartoon – Ants
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#4:4-4:4
-#EXTINF:0,,4.2. Michael Ellis: Poetry reading (ants)
+#EXTINF:290,,4.2. Michael Ellis: Poetry reading (ants)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#4:5-4:5
-#EXTINF:0,,4.2. Michael Ellis: Toupée
+#EXTINF:123,,4.2. Michael Ellis: Toupée
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#4:6-4:6
-#EXTINF:0,,4.2. Michael Ellis: Different endings
+#EXTINF:198,,4.2. Michael Ellis: Different endings
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#4:7-4:7
-#EXTINF:0,,4.3. Light Entertainment War: ‘Up Your Pavement’
+#EXTINF:167,,4.3. Light Entertainment War: ‘Up Your Pavement’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#5:1-5:1
-#EXTINF:0,,4.3. Light Entertainment War: RAF banter
+#EXTINF:146,,4.3. Light Entertainment War: RAF banter
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#5:2-5:2
-#EXTINF:0,,4.3. Light Entertainment War: Trivializing the war
+#EXTINF:107,,4.3. Light Entertainment War: Trivializing the war
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#5:3-5:3
-#EXTINF:0,,4.3. Light Entertainment War: Courtmartial
+#EXTINF:28,,4.3. Light Entertainment War: Courtmartial
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#5:4-5:4
-#EXTINF:0,,4.3. Light Entertainment War: Basingstoke in Westphalia; ‘Anything Goes In’ (song)
+#EXTINF:299,,4.3. Light Entertainment War: Basingstoke in Westphalia; ‘Anything Goes In’ (song)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#5:5-5:5
-#EXTINF:0,,4.3. Light Entertainment War: Film trailer
+#EXTINF:133,,4.3. Light Entertainment War: Film trailer
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#5:6-5:6
-#EXTINF:0,,4.3. Light Entertainment War: The public are idiots
+#EXTINF:84,,4.3. Light Entertainment War: The public are idiots
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#5:7-5:7
-#EXTINF:0,,4.3. Light Entertainment War: The last five miles of the M2; Programme titles conference
+#EXTINF:185,,4.3. Light Entertainment War: The last five miles of the M2; Programme titles conference
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#5:8-5:8
-#EXTINF:0,,4.3. Light Entertainment War: Cartoon – Television centre
+#EXTINF:110,,4.3. Light Entertainment War: Cartoon – Television centre
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#5:9-5:9
-#EXTINF:0,,4.3. Light Entertainment War: Woody and tinny words
+#EXTINF:346,,4.3. Light Entertainment War: Woody and tinny words
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#5:10-5:10
-#EXTINF:0,,4.3. Light Entertainment War: Show-jumping (musical)
+#EXTINF:74,,4.3. Light Entertainment War: Show-jumping (musical)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#5:11-5:11
-#EXTINF:0,,4.3. Light Entertainment War: Newsflash (Germans)
+#EXTINF:20,,4.3. Light Entertainment War: Newsflash (Germans)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#5:12-5:12
-#EXTINF:0,,4.3. Light Entertainment War: ‘When Does a Dream Begin?’ (song)
+#EXTINF:114,,4.3. Light Entertainment War: ‘When Does a Dream Begin?’ (song)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#5:13-5:13
-#EXTINF:0,,4.4. Hamlet: Bogus psychiatrists
+#EXTINF:296,,4.4. Hamlet: Bogus psychiatrists
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#6:1-6:1
-#EXTINF:0,,4.4. Hamlet: ‘Nationwide’: police helmets
+#EXTINF:344,,4.4. Hamlet: ‘Nationwide’: police helmets
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#6:2-6:2
-#EXTINF:0,,4.4. Hamlet: Father-in-law
+#EXTINF:210,,4.4. Hamlet: Father-in-law
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#6:3-6:3
-#EXTINF:0,,4.4. Hamlet: Hamlet and Ophelia
+#EXTINF:27,,4.4. Hamlet: Hamlet and Ophelia
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#6:4-6:4
-#EXTINF:0,,4.4. Hamlet: Cartoon – Paratroopers
+#EXTINF:32,,4.4. Hamlet: Cartoon – Paratroopers
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#6:5-6:5
-#EXTINF:0,,4.4. Hamlet: Boxing match aftermath
+#EXTINF:122,,4.4. Hamlet: Boxing match aftermath
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#6:6-6:6
-#EXTINF:0,,4.4. Hamlet: Boxing commentary
+#EXTINF:135,,4.4. Hamlet: Boxing commentary
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#6:7-6:7
-#EXTINF:0,,4.4. Hamlet: Piston engine (a bargain)
+#EXTINF:108,,4.4. Hamlet: Piston engine (a bargain)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#6:8-6:8
-#EXTINF:0,,4.4. Hamlet: A room in Polonius's house
+#EXTINF:24,,4.4. Hamlet: A room in Polonius's house
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#6:9-6:9
-#EXTINF:0,,4.4. Hamlet: Dentists, live from Epsom
+#EXTINF:44,,4.4. Hamlet: Dentists, live from Epsom
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#6:10-6:10
-#EXTINF:0,,4.4. Hamlet: Queen Victoria Handicap
+#EXTINF:74,,4.4. Hamlet: Queen Victoria Handicap
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#6:11-6:11
-#EXTINF:0,,4.4. Hamlet: Match of the Day results
+#EXTINF:38,,4.4. Hamlet: Match of the Day results
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#6:12-6:12
-#EXTINF:0,,4.5. Mr Neutron: Post box ceremony
+#EXTINF:224,,4.5. Mr Neutron: Post box ceremony
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#7:1-7:1
-#EXTINF:0,,4.5. Mr Neutron: Mr Neutron arrives
+#EXTINF:126,,4.5. Mr Neutron: Mr Neutron arrives
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#7:2-7:2
-#EXTINF:0,,4.5. Mr Neutron: F.E.A.R. (or) Mr Neutron Is Missing
+#EXTINF:170,,4.5. Mr Neutron: F.E.A.R. (or) Mr Neutron Is Missing
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#7:3-7:3
-#EXTINF:0,,4.5. Mr Neutron: Teddy Salad (CIA agent)
+#EXTINF:666,,4.5. Mr Neutron: Teddy Salad (CIA agent)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#7:4-7:4
-#EXTINF:0,,4.5. Mr Neutron: Bombings
+#EXTINF:33,,4.5. Mr Neutron: Bombings
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#7:5-7:5
-#EXTINF:0,,4.5. Mr Neutron: Mrs S.C.U.M.
+#EXTINF:379,,4.5. Mr Neutron: Mrs S.C.U.M.
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#7:6-7:6
-#EXTINF:0,,4.5. Mr Neutron: ‘Conjuring Today’
+#EXTINF:53,,4.5. Mr Neutron: ‘Conjuring Today’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#7:7-7:7
-#EXTINF:0,,4.6. Party Political Broadcast: ‘Most Awful Family in Britain’
+#EXTINF:410,,4.6. Party Political Broadcast: ‘Most Awful Family in Britain’
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#8:1-8:1
-#EXTINF:0,,4.6. Party Political Broadcast: Icelandic Honey Week
+#EXTINF:137,,4.6. Party Political Broadcast: Icelandic Honey Week
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#8:2-8:2
-#EXTINF:0,,4.6. Party Political Broadcast: A doctor whose patients are stabbed by his nurse
+#EXTINF:187,,4.6. Party Political Broadcast: A doctor whose patients are stabbed by his nurse
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#8:3-8:3
-#EXTINF:0,,4.6. Party Political Broadcast: Brigadier and bishop
+#EXTINF:127,,4.6. Party Political Broadcast: Brigadier and bishop
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#8:4-8:4
-#EXTINF:0,,4.6. Party Political Broadcast: Cartoon – Opera Singer
+#EXTINF:118,,4.6. Party Political Broadcast: Cartoon – Opera Singer
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#8:5-8:5
-#EXTINF:0,,4.6. Party Political Broadcast: Appeal on behalf of extremely rich people
+#EXTINF:78,,4.6. Party Political Broadcast: Appeal on behalf of extremely rich people
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#8:6-8:6
-#EXTINF:0,,4.6. Party Political Broadcast: The man who finishes other people's sentences
+#EXTINF:161,,4.6. Party Political Broadcast: The man who finishes other people's sentences
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#8:7-8:7
-#EXTINF:0,,4.6. Party Political Broadcast: David Attenborough: the walking tree of Dahomey
+#EXTINF:155,,4.6. Party Political Broadcast: David Attenborough: the walking tree of Dahomey
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#8:8-8:8
-#EXTINF:0,,4.6. Party Political Broadcast: The batsmen of the Kalahari: cricket match (assegais)
+#EXTINF:215,,4.6. Party Political Broadcast: The batsmen of the Kalahari: cricket match (assegais)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#8:9-8:9
-#EXTINF:0,,4.6. Party Political Broadcast: BBC News (handovers)
+#EXTINF:106,,4.6. Party Political Broadcast: BBC News (handovers)
 dvd:///mnt/dvd/archive/P/Monty%20Python%27s%20Flying%20Circus%20%28sketches%29/S04.%20E01%e2%80%9306.iso#8:10-8:10
index 60cdfb2..bbb396e 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.0. Pilot: Customs camera; Holiday photographs; Problems around the eye area; The privatisation of the police force
+#EXTINF:406,,1.0. Pilot: Customs camera; Holiday photographs; Problems around the eye area; The privatisation of the police force
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#3:1-3:1
-#EXTINF:0,,1.0. Pilot: Critics; Deodorant; ‘How Lovely I Was’; Soup/suit
+#EXTINF:439,,1.0. Pilot: Critics; Deodorant; ‘How Lovely I Was’; Soup/suit
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#3:2-3:2
-#EXTINF:0,,1.0. Pilot: Mystery (song); You can't make an omelette (Gordon & Stuart 1); The word ‘gay’; Toy car showroom
+#EXTINF:743,,1.0. Pilot: Mystery (song); You can't make an omelette (Gordon & Stuart 1); The word ‘gay’; Toy car showroom
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#3:3-3:3
-#EXTINF:0,,1.0. Pilot: Tales of war; Australian soap opera
+#EXTINF:541,,1.0. Pilot: Tales of war; Australian soap opera
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#3:4-3:4
-#EXTINF:0,,Episode 1.1: Parent power
+#EXTINF:384,,Episode 1.1: Parent power
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#4:1-4:1
-#EXTINF:0,,Episode 1.1: Hugh's poem; Young people; SAS
+#EXTINF:440,,Episode 1.1: Hugh's poem; Young people; SAS
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#4:2-4:2
-#EXTINF:0,,Episode 1.1: The West Indies: A Nation of Cricketers; Spoonbending with Mr Nude
+#EXTINF:431,,Episode 1.1: The West Indies: A Nation of Cricketers; Spoonbending with Mr Nude
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#4:3-4:3
-#EXTINF:0,,Episode 1.1: Censored; Haircut
+#EXTINF:453,,Episode 1.1: Censored; Haircut
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#4:4-4:4
-#EXTINF:0,,Episode 1.2: Information; Sound name (Derek Nippl-e); Language conversation
+#EXTINF:669,,Episode 1.2: Information; Sound name (Derek Nippl-e); Language conversation
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#5:1-5:1
-#EXTINF:0,,Episode 1.2: America (song); Chatshow
+#EXTINF:280,,Episode 1.2: America (song); Chatshow
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#5:2-5:2
-#EXTINF:0,,Episode 1.2: Spies 1; Beggar; Hand exercise
+#EXTINF:464,,Episode 1.2: Spies 1; Beggar; Hand exercise
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#5:3-5:3
-#EXTINF:0,,Episode 1.2: Troubleshooters (Dammit 0)
+#EXTINF:317,,Episode 1.2: Troubleshooters (Dammit 0)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#5:4-5:4
-#EXTINF:0,,Episode 1.3: Hugh's Brain; Gordon and Stuart eat greek (Gordon & Stuart 2)
+#EXTINF:526,,Episode 1.3: Hugh's Brain; Gordon and Stuart eat greek (Gordon & Stuart 2)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#6:1-6:1
-#EXTINF:0,,Episode 1.3: Costume design; Doctor Tobacco
+#EXTINF:402,,Episode 1.3: Costume design; Doctor Tobacco
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#6:2-6:2
-#EXTINF:0,,Episode 1.3: Open University; Spies 2
+#EXTINF:381,,Episode 1.3: Open University; Spies 2
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#6:3-6:3
-#EXTINF:0,,Episode 1.3: Special Squad
+#EXTINF:381,,Episode 1.3: Special Squad
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#6:4-6:4
-#EXTINF:0,,Episode 1.4: Trouser-competition introduction; Prize poem
+#EXTINF:465,,Episode 1.4: Trouser-competition introduction; Prize poem
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#7:1-7:1
-#EXTINF:0,,Episode 1.4: Awful smell (Stole my sketch 1); Madness
+#EXTINF:411,,Episode 1.4: Awful smell (Stole my sketch 1); Madness
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#7:2-7:2
-#EXTINF:0,,Episode 1.4: Antique shop (Stole My Sketch 2); Spies 3; Light metal (The Bishop & the Warlord) (song)
+#EXTINF:460,,Episode 1.4: Antique shop (Stole My Sketch 2); Spies 3; Light metal (The Bishop & the Warlord) (song)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#7:3-7:3
-#EXTINF:0,,Episode 1.4: Bank loan; Nipples; Inspector Venice (Stole my sketch 3); Tomorrow's World
+#EXTINF:369,,Episode 1.4: Bank loan; Nipples; Inspector Venice (Stole my sketch 3); Tomorrow's World
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#7:4-7:4
-#EXTINF:0,,Episode 1.5: Lavatories; Critics 2; Judge not
+#EXTINF:540,,Episode 1.5: Lavatories; Critics 2; Judge not
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#8:1-8:1
-#EXTINF:0,,Episode 1.5: Critics 4; Ignored teacher
+#EXTINF:347,,Episode 1.5: Critics 4; Ignored teacher
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#8:2-8:2
-#EXTINF:0,,Episode 1.5: That's it (Silhouettes 1); Hugh's favourite sketch; Critics (heavily edited mixture between Critics 2)
+#EXTINF:340,,Episode 1.5: That's it (Silhouettes 1); Hugh's favourite sketch; Critics (heavily edited mixture between Critics 2)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#8:3-8:3
-#EXTINF:0,,Episode 1.5: The ‘Burt’; Christening; Swiss comedy (Heidi and Johann smell just right)
+#EXTINF:488,,Episode 1.5: The ‘Burt’; Christening; Swiss comedy (Heidi and Johann smell just right)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#8:4-8:4
-#EXTINF:0,,Episode 1.6: Marjorie's fall; Puppy appeal; Leave it out (Silhouettes 2)
+#EXTINF:399,,Episode 1.6: Marjorie's fall; Puppy appeal; Leave it out (Silhouettes 2)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#9:1-9:1
-#EXTINF:0,,Episode 1.6: Girlfriend's breasts; Spies 4
+#EXTINF:381,,Episode 1.6: Girlfriend's breasts; Spies 4
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#9:2-9:2
-#EXTINF:0,,Episode 1.6: Violence; Chicken
+#EXTINF:435,,Episode 1.6: Violence; Chicken
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#9:3-9:3
-#EXTINF:0,,Episode 1.6: Cocoa; Tony of Plymouth (sword fight)
+#EXTINF:429,,Episode 1.6: Cocoa; Tony of Plymouth (sword fight)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#9:4-9:4
 
-#EXTINF:0,,Episode 2.1: Time Where Did You Go (introduction/dancercises); Flushed grollings
+#EXTINF:405,,Episode 2.1: Time Where Did You Go (introduction/dancercises); Flushed grollings
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#3:1-3:1
-#EXTINF:0,,Episode 2.1: Dammit 1; Fast talker; Grandfather's things
+#EXTINF:431,,Episode 2.1: Dammit 1; Fast talker; Grandfather's things
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#3:2-3:2
-#EXTINF:0,,Episode 2.1: Psychiatrist; Commentators
+#EXTINF:373,,Episode 2.1: Psychiatrist; Commentators
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#3:3-3:3
-#EXTINF:0,,Episode 2.1: Spies/Pulse (Spies 5); ‘Michael Jackson’ performing ‘Move It on Out Girl’
+#EXTINF:537,,Episode 2.1: Spies/Pulse (Spies 5); ‘Michael Jackson’ performing ‘Move It on Out Girl’
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#3:4-3:4
-#EXTINF:0,,Episode 2.2: Tideymans Carpets introduction/The spillage that wasn't (Tideymans)
+#EXTINF:336,,Episode 2.2: Tideymans Carpets introduction/The spillage that wasn't (Tideymans)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#4:1-4:1
-#EXTINF:0,,Episode 2.2: Spies/pigeons (Spies 6); Trick or treat (Tideymans); Play It Again, Sam
+#EXTINF:664,,Episode 2.2: Spies/pigeons (Spies 6); Trick or treat (Tideymans); Play It Again, Sam
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#4:2-4:2
-#EXTINF:0,,Episode 2.2: Major Donaldson; Dammit 2 (Tideymans)
+#EXTINF:511,,Episode 2.2: Major Donaldson; Dammit 2 (Tideymans)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#4:3-4:3
-#EXTINF:0,,Episode 2.2: ‘Improvised’ Sketch/first lines (Tideymans)
+#EXTINF:319,,Episode 2.2: ‘Improvised’ Sketch/first lines (Tideymans)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#4:4-4:4
-#EXTINF:0,,Episode 2.3: Swearing; Witness; Over to you
+#EXTINF:402,,Episode 2.3: Swearing; Witness; Over to you
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#5:1-5:1
-#EXTINF:0,,Episode 2.3: Jewellery; Hugh's girlfriends
+#EXTINF:448,,Episode 2.3: Jewellery; Hugh's girlfriends
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#5:2-5:2
-#EXTINF:0,,Episode 2.3: Mystery objects; Society; Dammit 4
+#EXTINF:615,,Episode 2.3: Mystery objects; Society; Dammit 4
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#5:3-5:3
-#EXTINF:0,,Episode 2.3: Bottom fondling
+#EXTINF:293,,Episode 2.3: Bottom fondling
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#5:4-5:4
-#EXTINF:0,,Episode 2.4: ‘Big’ introduction; Dinner with Digby
+#EXTINF:444,,Episode 2.4: ‘Big’ introduction; Dinner with Digby
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#6:1-6:1
-#EXTINF:0,,Episode 2.4: Returning suits; Hard man's record (Alan 1); Small talk
+#EXTINF:476,,Episode 2.4: Returning suits; Hard man's record (Alan 1); Small talk
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#6:2-6:2
-#EXTINF:0,,Episode 2.4: Dammit lavatories (Dammit 5); The Robert Robinsons; Spies/telescope (Spies 7)
+#EXTINF:603,,Episode 2.4: Dammit lavatories (Dammit 5); The Robert Robinsons; Spies/telescope (Spies 7)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#6:3-6:3
-#EXTINF:0,,Episode 2.4: Stephen and Hugh become Big/‘A Bit of Little & Large’
+#EXTINF:249,,Episode 2.4: Stephen and Hugh become Big/‘A Bit of Little & Large’
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#6:4-6:4
-#EXTINF:0,,Episode 2.5: MBE introduction; This is Dominic Appleguard; Rhodes Boysons
+#EXTINF:399,,Episode 2.5: MBE introduction; This is Dominic Appleguard; Rhodes Boysons
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#7:1-7:1
-#EXTINF:0,,Episode 2.5: Amputated genitals
+#EXTINF:552,,Episode 2.5: Amputated genitals
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#7:2-7:2
-#EXTINF:0,,Episode 2.5: The Cause (Jack & Freddy/Neddy 1, Gordon & Stuart 3)
+#EXTINF:405,,Episode 2.5: The Cause (Jack & Freddy/Neddy 1, Gordon & Stuart 3)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#7:3-7:3
-#EXTINF:0,,Episode 2.5: The Cause (cont.); Where Eagles Dare
+#EXTINF:418,,Episode 2.5: The Cause (cont.); Where Eagles Dare
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#7:4-7:4
-#EXTINF:0,,Episode 2.6: Satire/tribute (‘Where Is the Lid?’ song)
+#EXTINF:348,,Episode 2.6: Satire/tribute (‘Where Is the Lid?’ song)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#8:1-8:1
-#EXTINF:0,,Episode 2.6: Yellow pages; Beauty and ideas (Language Conversation 2); Anarchy
+#EXTINF:368,,Episode 2.6: Yellow pages; Beauty and ideas (Language Conversation 2); Anarchy
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#8:2-8:2
-#EXTINF:0,,Episode 2.6: Dammit Church (Dammit 5); First kiss; ‘Borrowing a Fiver off…’
+#EXTINF:529,,Episode 2.6: Dammit Church (Dammit 5); First kiss; ‘Borrowing a Fiver off…’
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#8:3-8:3
-#EXTINF:0,,Episode 2.6: Spies/firing (Spies 8); ‘Introducing My Grandfather to…’; A vision of Britain; Wrong directions (after credits)
+#EXTINF:517,,Episode 2.6: Spies/firing (Spies 8); ‘Introducing My Grandfather to…’; A vision of Britain; Wrong directions (after credits)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#8:4-8:4
 
-#EXTINF:0,,Episode 3.1: A word, Timothy; Very upset; Love Me Tender (song) (serenading Nicholas Parsons); Milk pot
+#EXTINF:756,,Episode 3.1: A word, Timothy; Very upset; Love Me Tender (song) (serenading Nicholas Parsons); Milk pot
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#2:1-2:1
-#EXTINF:0,,Episode 3.1: The Department (Alan 2)
+#EXTINF:415,,Episode 3.1: The Department (Alan 2)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#2:2-2:2
-#EXTINF:0,,Episode 3.1: Stephen's song (song); Psychiatrists
+#EXTINF:459,,Episode 3.1: Stephen's song (song); Psychiatrists
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#2:3-2:3
-#EXTINF:0,,Episode 3.1: Cocktail ending: Whisky Thunder
+#EXTINF:90,,Episode 3.1: Cocktail ending: Whisky Thunder
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#2:4-2:4
-#EXTINF:0,,Episode 3.2: Condom quickie; Embassy; Ampersands
+#EXTINF:433,,Episode 3.2: Condom quickie; Embassy; Ampersands
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#3:1-3:1
-#EXTINF:0,,Episode 3.2: Duel; There Ain't But One Way (Kickin' Ass) Song (song); Petrol attendants
+#EXTINF:693,,Episode 3.2: Duel; There Ain't But One Way (Kickin' Ass) Song (song); Petrol attendants
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#3:2-3:2
-#EXTINF:0,,Episode 3.2: Jobs; European deal
+#EXTINF:546,,Episode 3.2: Jobs; European deal
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#3:3-3:3
-#EXTINF:0,,Episode 3.2: Cocktail ending: A Slow Snog with a Distant Relative
+#EXTINF:88,,Episode 3.2: Cocktail ending: A Slow Snog with a Distant Relative
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#3:4-3:4
-#EXTINF:0,,Episode 3.3: We haven't met; Names
+#EXTINF:383,,Episode 3.3: We haven't met; Names
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#4:1-4:1
-#EXTINF:0,,Episode 3.3: The Other Department (Alan 3); Hey Jude (song); The day I forgot my legs
+#EXTINF:514,,Episode 3.3: The Other Department (Alan 3); Hey Jude (song); The day I forgot my legs
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#4:2-4:2
-#EXTINF:0,,Episode 3.3: Firing; Question of Sport; Balloon-o!; Shoe shop (Mr Dalliard 1)
+#EXTINF:736,,Episode 3.3: Firing; Question of Sport; Balloon-o!; Shoe shop (Mr Dalliard 1)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#4:3-4:3
-#EXTINF:0,,Episode 3.3: Cocktail ending: Everything in the Till and No Sudden Moves
+#EXTINF:95,,Episode 3.3: Cocktail ending: Everything in the Till and No Sudden Moves
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#4:4-4:4
-#EXTINF:0,,Episode 3.4: Get well card; ‘Photocopying My Genitals with…’
+#EXTINF:451,,Episode 3.4: Get well card; ‘Photocopying My Genitals with…’
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#5:1-5:1
-#EXTINF:0,,Episode 3.4: My ass; My ass critique; News report; Patriotism
+#EXTINF:461,,Episode 3.4: My ass; My ass critique; News report; Patriotism
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#5:2-5:2
-#EXTINF:0,,Episode 3.4: AA; Marmalade; Too Long, Johnny (song); The Red Hat of Patferrick (Gelliant Gutfright 1)
+#EXTINF:725,,Episode 3.4: AA; Marmalade; Too Long, Johnny (song); The Red Hat of Patferrick (Gelliant Gutfright 1)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#5:3-5:3
-#EXTINF:0,,Episode 3.4: Cocktail ending: A Mug of Horlick's
+#EXTINF:106,,Episode 3.4: Cocktail ending: A Mug of Horlick's
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#5:4-5:4
-#EXTINF:0,,Episode 3.5: Balls; Soup or broth
+#EXTINF:426,,Episode 3.5: Balls; Soup or broth
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#6:1-6:1
-#EXTINF:0,,Episode 3.5: Mental health; World sport: bushwallyta; Spaghetti; Aromusician
+#EXTINF:608,,Episode 3.5: Mental health; World sport: bushwallyta; Spaghetti; Aromusician
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#6:2-6:2
-#EXTINF:0,,Episode 3.5: Countdown to Hell; The new cause (Jack & Freddy/Neddy 2); Neddy PM (Jack & Freddy/Neddy 3)
+#EXTINF:650,,Episode 3.5: Countdown to Hell; The new cause (Jack & Freddy/Neddy 2); Neddy PM (Jack & Freddy/Neddy 3)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#6:3-6:3
-#EXTINF:0,,Episode 3.5: Cocktail ending: Beef Goulash
+#EXTINF:90,,Episode 3.5: Cocktail ending: Beef Goulash
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#6:4-6:4
-#EXTINF:0,,Episode 3.6: Magazine Leaflets; My dear boy; Joke shop
+#EXTINF:440,,Episode 3.6: Magazine Leaflets; My dear boy; Joke shop
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#7:1-7:1
-#EXTINF:0,,Episode 3.6: Horrormen; Tahitian kitchen; My favourite pants
+#EXTINF:614,,Episode 3.6: Horrormen; Tahitian kitchen; My favourite pants
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#7:2-7:2
-#EXTINF:0,,Episode 3.6: Devil's music (The Bishop & the Warlord); ‘Flying a Light Aircraft with…’
+#EXTINF:582,,Episode 3.6: Devil's music (The Bishop & the Warlord); ‘Flying a Light Aircraft with…’
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#7:3-7:3
-#EXTINF:0,,Episode 3.6: Cocktail ending: Berliner Credit Sequence
+#EXTINF:132,,Episode 3.6: Cocktail ending: Berliner Credit Sequence
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#7:4-7:4
 
-#EXTINF:0,,4.1. With John Bird and Jane Booker: Grey and hopeless; Guests introduction
+#EXTINF:460,,4.1. With John Bird and Jane Booker: Grey and hopeless; Guests introduction
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D01.%20E01%e2%80%9304.iso#2:1-2:1
-#EXTINF:0,,4.1. With John Bird and Jane Booker: Blame; Charter
+#EXTINF:403,,4.1. With John Bird and Jane Booker: Blame; Charter
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D01.%20E01%e2%80%9304.iso#2:2-2:2
-#EXTINF:0,,4.1. With John Bird and Jane Booker: Jane's poem; Smell; All We Gotta Do (song); Channel changer
+#EXTINF:426,,4.1. With John Bird and Jane Booker: Jane's poem; Smell; All We Gotta Do (song); Channel changer
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D01.%20E01%e2%80%9304.iso#2:3-2:3
-#EXTINF:0,,4.1. With John Bird and Jane Booker: Wonderful Life; Cocktail ending: Golden Meteorite
+#EXTINF:484,,4.1. With John Bird and Jane Booker: Wonderful Life; Cocktail ending: Golden Meteorite
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D01.%20E01%e2%80%9304.iso#2:4-2:4
-#EXTINF:0,,4.2. With Fiona Gillies and Kevin McNally: Dog hamper; Hugh's bandage; Child abuse
+#EXTINF:373,,4.2. With Fiona Gillies and Kevin McNally: Dog hamper; Hugh's bandage; Child abuse
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D01.%20E01%e2%80%9304.iso#3:1-3:1
-#EXTINF:0,,4.2. With Fiona Gillies and Kevin McNally: Guests introduction; Going for Gold; I'm in Love with Steffi Graf (song)
+#EXTINF:623,,4.2. With Fiona Gillies and Kevin McNally: Guests introduction; Going for Gold; I'm in Love with Steffi Graf (song)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D01.%20E01%e2%80%9304.iso#3:2-3:2
-#EXTINF:0,,4.2. With Fiona Gillies and Kevin McNally: Lovers' helper; Fascion
+#EXTINF:299,,4.2. With Fiona Gillies and Kevin McNally: Lovers' helper; Fascion
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D01.%20E01%e2%80%9304.iso#3:3-3:3
-#EXTINF:0,,4.2. With Fiona Gillies and Kevin McNally: Avenger; Operational criteria; Cocktail ending: Long, Confident Suck
+#EXTINF:497,,4.2. With Fiona Gillies and Kevin McNally: Avenger; Operational criteria; Cocktail ending: Long, Confident Suck
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D01.%20E01%e2%80%9304.iso#3:4-3:4
-#EXTINF:0,,4.3. With Imelda Staunton and Clive Mantle: Vox pops; Guests introduction
+#EXTINF:547,,4.3. With Imelda Staunton and Clive Mantle: Vox pops; Guests introduction
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D01.%20E01%e2%80%9304.iso#4:1-4:1
-#EXTINF:0,,4.3. With Imelda Staunton and Clive Mantle: Barman; Interruptus; Little Girl (song)
+#EXTINF:540,,4.3. With Imelda Staunton and Clive Mantle: Barman; Interruptus; Little Girl (song)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D01.%20E01%e2%80%9304.iso#4:2-4:2
-#EXTINF:0,,4.3. With Imelda Staunton and Clive Mantle: Making tea; For some reason angry
+#EXTINF:260,,4.3. With Imelda Staunton and Clive Mantle: Making tea; For some reason angry
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D01.%20E01%e2%80%9304.iso#4:3-4:3
-#EXTINF:0,,4.3. With Imelda Staunton and Clive Mantle: Don't Be Dirty; Cocktail ending: South Seas Vulvic Wart
+#EXTINF:442,,4.3. With Imelda Staunton and Clive Mantle: Don't Be Dirty; Cocktail ending: South Seas Vulvic Wart
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D01.%20E01%e2%80%9304.iso#4:4-4:4
-#EXTINF:0,,4.4. With Caroline Quentin and Patrick Barlow: Good evening; Guests introduction; Football school
+#EXTINF:492,,4.4. With Caroline Quentin and Patrick Barlow: Good evening; Guests introduction; Football school
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D01.%20E01%e2%80%9304.iso#5:1-5:1
-#EXTINF:0,,4.4. With Caroline Quentin and Patrick Barlow: Models (Mr Dalliard 2); Hugh interviewing guests
+#EXTINF:442,,4.4. With Caroline Quentin and Patrick Barlow: Models (Mr Dalliard 2); Hugh interviewing guests
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D01.%20E01%e2%80%9304.iso#5:2-5:2
-#EXTINF:0,,4.4. With Caroline Quentin and Patrick Barlow: The Polite Rap (song); Head gardener
+#EXTINF:285,,4.4. With Caroline Quentin and Patrick Barlow: The Polite Rap (song); Head gardener
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D01.%20E01%e2%80%9304.iso#5:3-5:3
-#EXTINF:0,,4.4. With Caroline Quentin and Patrick Barlow: Flowers for Wendy (Gelliant Gutfright 2); Cocktail ending: A Quick One With You, Stephen
+#EXTINF:578,,4.4. With Caroline Quentin and Patrick Barlow: Flowers for Wendy (Gelliant Gutfright 2); Cocktail ending: A Quick One With You, Stephen
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D01.%20E01%e2%80%9304.iso#5:4-5:4
-#EXTINF:0,,4.5. With Phyllida Law and Stephen Moore: Oprah Winfrey; Guests introduction
+#EXTINF:453,,4.5. With Phyllida Law and Stephen Moore: Oprah Winfrey; Guests introduction
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D02.%20E05%e2%80%9307.iso#2:1-2:1
-#EXTINF:0,,4.5. With Phyllida Law and Stephen Moore: Grand Prix; Tribunal
+#EXTINF:382,,4.5. With Phyllida Law and Stephen Moore: Grand Prix; Tribunal
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D02.%20E05%e2%80%9307.iso#2:2-2:2
-#EXTINF:0,,4.5. With Phyllida Law and Stephen Moore: Red and shiny; Pooch
+#EXTINF:480,,4.5. With Phyllida Law and Stephen Moore: Red and shiny; Pooch
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D02.%20E05%e2%80%9307.iso#2:3-2:3
-#EXTINF:0,,4.5. With Phyllida Law and Stephen Moore: Disgusting; Wasps; Cocktail ending: Swinging Ballsack
+#EXTINF:379,,4.5. With Phyllida Law and Stephen Moore: Disgusting; Wasps; Cocktail ending: Swinging Ballsack
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D02.%20E05%e2%80%9307.iso#2:4-2:4
-#EXTINF:0,,4.6. (no guests): Stolen money; Young Tory of the Year
+#EXTINF:508,,4.6. (no guests): Stolen money; Young Tory of the Year
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D02.%20E05%e2%80%9307.iso#3:1-3:1
-#EXTINF:0,,4.6. (no guests): Variety; Gossiping heads
+#EXTINF:333,,4.6. (no guests): Variety; Gossiping heads
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D02.%20E05%e2%80%9307.iso#3:2-3:2
-#EXTINF:0,,4.6. (no guests): Death threat; What I Mind (Misunderstood) (song); Honda
+#EXTINF:434,,4.6. (no guests): Death threat; What I Mind (Misunderstood) (song); Honda
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D02.%20E05%e2%80%9307.iso#3:3-3:3
-#EXTINF:0,,4.6. (no guests): The Duke of Northampton; Cocktail ending: Silver Prostate
+#EXTINF:518,,4.6. (no guests): The Duke of Northampton; Cocktail ending: Silver Prostate
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D02.%20E05%e2%80%9307.iso#3:4-3:4
-#EXTINF:0,,4.7. With Janine Duvitski and Robert Daws: Guests introduction; Religianto
+#EXTINF:530,,4.7. With Janine Duvitski and Robert Daws: Guests introduction; Religianto
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D02.%20E05%e2%80%9307.iso#4:1-4:1
-#EXTINF:0,,4.7. With Janine Duvitski and Robert Daws: Consent
+#EXTINF:353,,4.7. With Janine Duvitski and Robert Daws: Consent
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D02.%20E05%e2%80%9307.iso#4:2-4:2
-#EXTINF:0,,4.7. With Janine Duvitski and Robert Daws: Sophisticated Song (song); Fast monologue; Telephone alert
+#EXTINF:381,,4.7. With Janine Duvitski and Robert Daws: Sophisticated Song (song); Fast monologue; Telephone alert
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D02.%20E05%e2%80%9307.iso#4:3-4:3
-#EXTINF:0,,4.7. With Janine Duvitski and Robert Daws: Truancy; Cocktail ending: A Modern Britain
+#EXTINF:517,,4.7. With Janine Duvitski and Robert Daws: Truancy; Cocktail ending: A Modern Britain
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D02.%20E05%e2%80%9307.iso#4:4-4:4
index 1c0f10d..18a75f7 100644 (file)
@@ -1,57 +1,57 @@
 #EXTM3U
 
-#EXTINF:0,,1.0. Pilot
+#EXTINF:2186,,1.0. Pilot
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#3
-#EXTINF:0,,Episode 1.1
+#EXTINF:1757,,Episode 1.1
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#4
-#EXTINF:0,,Episode 1.2
+#EXTINF:1776,,Episode 1.2
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#5
-#EXTINF:0,,Episode 1.3
+#EXTINF:1737,,Episode 1.3
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#6
-#EXTINF:0,,Episode 1.4
+#EXTINF:1755,,Episode 1.4
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#7
-#EXTINF:0,,Episode 1.5
+#EXTINF:1770,,Episode 1.5
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#8
-#EXTINF:0,,Episode 1.6
+#EXTINF:1705,,Episode 1.6
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S01.%20E00%e2%80%9306.iso#9
 
-#EXTINF:0,,Episode 2.1
+#EXTINF:1747,,Episode 2.1
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#3
-#EXTINF:0,,Episode 2.2
+#EXTINF:1831,,Episode 2.2
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#4
-#EXTINF:0,,Episode 2.3
+#EXTINF:1758,,Episode 2.3
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#5
-#EXTINF:0,,Episode 2.4
+#EXTINF:1773,,Episode 2.4
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#6
-#EXTINF:0,,Episode 2.5
+#EXTINF:1774,,Episode 2.5
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#7
-#EXTINF:0,,Episode 2.6
+#EXTINF:1763,,Episode 2.6
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S02.%20E01%e2%80%9306.iso#8
 
-#EXTINF:0,,Episode 3.1
+#EXTINF:1721,,Episode 3.1
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#2
-#EXTINF:0,,Episode 3.2
+#EXTINF:1761,,Episode 3.2
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#3
-#EXTINF:0,,Episode 3.3
+#EXTINF:1729,,Episode 3.3
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#4
-#EXTINF:0,,Episode 3.4
+#EXTINF:1743,,Episode 3.4
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#5
-#EXTINF:0,,Episode 3.5
+#EXTINF:1775,,Episode 3.5
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#6
-#EXTINF:0,,Episode 3.6
+#EXTINF:1769,,Episode 3.6
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S03.%20E01%e2%80%9306.iso#7
 
-#EXTINF:0,,4.1. With John Bird and Jane Booker
+#EXTINF:1775,,4.1. With John Bird and Jane Booker
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,4.2. With Fiona Gillies and Kevin McNally
+#EXTINF:1793,,4.2. With Fiona Gillies and Kevin McNally
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,4.3. With Imelda Staunton and Clive Mantle
+#EXTINF:1790,,4.3. With Imelda Staunton and Clive Mantle
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,4.4. With Caroline Quentin and Patrick Barlow
+#EXTINF:1798,,4.4. With Caroline Quentin and Patrick Barlow
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,4.5. With Phyllida Law and Stephen Moore
+#EXTINF:1696,,4.5. With Phyllida Law and Stephen Moore
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D02.%20E05%e2%80%9307.iso#2
-#EXTINF:0,,4.6. (no guests)
+#EXTINF:1794,,4.6. (no guests)
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D02.%20E05%e2%80%9307.iso#3
-#EXTINF:0,,4.7. With Janine Duvitski and Robert Daws
+#EXTINF:1783,,4.7. With Janine Duvitski and Robert Daws
 dvd:///mnt/dvd/archive/F/A%20Bit%20of%20Fry%20and%20Laurie/S04D02.%20E05%e2%80%9307.iso#4
index 6fec2ac..4d9b6da 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Winter Is Coming
+#EXTINF:3546,,1.1. Winter Is Coming
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S01D01.%20E01%e2%80%9302.iso#1
-#EXTINF:0,,1.2. The Kingsroad
+#EXTINF:3182,,1.2. The Kingsroad
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S01D01.%20E01%e2%80%9302.iso#2
-#EXTINF:0,,1.3. Lord Snow
+#EXTINF:3294,,1.3. Lord Snow
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S01D02.%20E03%e2%80%9304.iso#1
-#EXTINF:0,,1.4. Cripples, Bastards, and Broken Things
+#EXTINF:3201,,1.4. Cripples, Bastards, and Broken Things
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S01D02.%20E03%e2%80%9304.iso#2
-#EXTINF:0,,1.5. The Wolf and the Lion
+#EXTINF:3123,,1.5. The Wolf and the Lion
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S01D03.%20E05%e2%80%9306.iso#1
-#EXTINF:0,,1.6. A Golden Crown
+#EXTINF:3027,,1.6. A Golden Crown
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S01D03.%20E05%e2%80%9306.iso#2
-#EXTINF:0,,1.7. You Win or You Die
+#EXTINF:3325,,1.7. You Win or You Die
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S01D04.%20E07%e2%80%9308.iso#1
-#EXTINF:0,,1.8. The Pointy End
+#EXTINF:3346,,1.8. The Pointy End
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S01D04.%20E07%e2%80%9308.iso#2
-#EXTINF:0,,1.9. Baelor
+#EXTINF:3238,,1.9. Baelor
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S01D05.%20E09%e2%80%9310.iso#1
-#EXTINF:0,,1.10. Fire and Blood
+#EXTINF:3028,,1.10. Fire and Blood
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S01D05.%20E09%e2%80%9310.iso#2
 
-#EXTINF:0,,2.1. The North Remembers
+#EXTINF:3032,,2.1. The North Remembers
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S02D01.%20E01%e2%80%9302.iso#1
-#EXTINF:0,,2.2. The Night Lands
+#EXTINF:3079,,2.2. The Night Lands
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S02D01.%20E01%e2%80%9302.iso#2
-#EXTINF:0,,2.3. What Is Dead May Never Die
+#EXTINF:3036,,2.3. What Is Dead May Never Die
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S02D02.%20E03%e2%80%9304.iso#1
-#EXTINF:0,,2.4. Garden of Bones
+#EXTINF:2917,,2.4. Garden of Bones
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S02D02.%20E03%e2%80%9304.iso#2
-#EXTINF:0,,2.5. The Ghost of Harrenhal
+#EXTINF:3117,,2.5. The Ghost of Harrenhal
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S02D03.%20E05%e2%80%9306.iso#1
-#EXTINF:0,,2.6. The Old Gods and the New
+#EXTINF:3107,,2.6. The Old Gods and the New
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S02D03.%20E05%e2%80%9306.iso#2
-#EXTINF:0,,2.7. A Man Without Honor
+#EXTINF:3176,,2.7. A Man Without Honor
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S02D04.%20E07%e2%80%9308.iso#1
-#EXTINF:0,,2.8. The Prince of Winterfell
+#EXTINF:3070,,2.8. The Prince of Winterfell
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S02D04.%20E07%e2%80%9308.iso#2
-#EXTINF:0,,2.9. Blackwater
+#EXTINF:3134,,2.9. Blackwater
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S02D05.%20E09%e2%80%9310.iso#1
-#EXTINF:0,,2.10. Valar Morghulis
+#EXTINF:3651,,2.10. Valar Morghulis
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S02D05.%20E09%e2%80%9310.iso#2
 
-#EXTINF:0,,3.1. Valar Dohaeris
+#EXTINF:3138,,3.1. Valar Dohaeris
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S03D01.%20E01%e2%80%9302.iso#1
-#EXTINF:0,,3.2. Dark Wings, Dark Words
+#EXTINF:3285,,3.2. Dark Wings, Dark Words
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S03D01.%20E01%e2%80%9302.iso#2
-#EXTINF:0,,3.3. Walk of Punishment
+#EXTINF:3039,,3.3. Walk of Punishment
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S03D02.%20E03%e2%80%9304.iso#1
-#EXTINF:0,,3.4. And Now His Watch Is Ended
+#EXTINF:3072,,3.4. And Now His Watch Is Ended
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S03D02.%20E03%e2%80%9304.iso#2
-#EXTINF:0,,3.5. Kissed by Fire
+#EXTINF:3305,,3.5. Kissed by Fire
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S03D03.%20E05%e2%80%9306.iso#1
-#EXTINF:0,,3.6. The Climb
+#EXTINF:3071,,3.6. The Climb
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S03D03.%20E05%e2%80%9306.iso#2
-#EXTINF:0,,3.7. The Bear and the Maiden Fair
+#EXTINF:3316,,3.7. The Bear and the Maiden Fair
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S03D04.%20E07%e2%80%9308.iso#1
-#EXTINF:0,,3.8. Second Sons
+#EXTINF:3243,,3.8. Second Sons
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S03D04.%20E07%e2%80%9308.iso#2
-#EXTINF:0,,3.9. The Rains of Castamere
+#EXTINF:2924,,3.9. The Rains of Castamere
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S03D05.%20E09%e2%80%9310.iso#1
-#EXTINF:0,,3.10. Mhysa
+#EXTINF:3610,,3.10. Mhysa
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S03D05.%20E09%e2%80%9310.iso#2
 
-#EXTINF:0,,4.1. Two Swords
+#EXTINF:3350,,4.1. Two Swords
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S04D01.%20E01%e2%80%9302.iso#1
-#EXTINF:0,,4.2. The Lion and the Rose
+#EXTINF:3025,,4.2. The Lion and the Rose
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S04D01.%20E01%e2%80%9302.iso#2
-#EXTINF:0,,4.3. Breaker of Chains
+#EXTINF:3274,,4.3. Breaker of Chains
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S04D02.%20E03%e2%80%9304.iso#1
-#EXTINF:0,,4.4. Oathkeeper
+#EXTINF:3169,,4.4. Oathkeeper
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S04D02.%20E03%e2%80%9304.iso#2
-#EXTINF:0,,4.5. First of His Name
+#EXTINF:3062,,4.5. First of His Name
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S04D03.%20E05%e2%80%9306.iso#1
-#EXTINF:0,,4.6. The Laws of Gods and Men
+#EXTINF:2917,,4.6. The Laws of Gods and Men
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S04D03.%20E05%e2%80%9306.iso#2
-#EXTINF:0,,4.7. Mockingbird
+#EXTINF:2940,,4.7. Mockingbird
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S04D04.%20E07%e2%80%9308.iso#1
-#EXTINF:0,,4.8. The Mountain and the Viper
+#EXTINF:3014,,4.8. The Mountain and the Viper
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S04D04.%20E07%e2%80%9308.iso#2
-#EXTINF:0,,4.9. The Watchers on the Wall
+#EXTINF:2910,,4.9. The Watchers on the Wall
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S04D05.%20E09%e2%80%9310.iso#1
-#EXTINF:0,,4.10. The Children
+#EXTINF:3759,,4.10. The Children
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S04D05.%20E09%e2%80%9310.iso#2
 
-#EXTINF:0,,5.1. The Wars to Come
+#EXTINF:3002,,5.1. The Wars to Come
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S05D01.%20E01%e2%80%9302.iso#1
-#EXTINF:0,,5.2. The House of Black and White
+#EXTINF:3196,,5.2. The House of Black and White
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S05D01.%20E01%e2%80%9302.iso#2
-#EXTINF:0,,5.3. High Sparrow
+#EXTINF:3448,,5.3. High Sparrow
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S05D02.%20E03%e2%80%9304.iso#1
-#EXTINF:0,,5.4. Sons of the Harpy
+#EXTINF:2900,,5.4. Sons of the Harpy
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S05D02.%20E03%e2%80%9304.iso#2
-#EXTINF:0,,5.5. Kill the Boy
+#EXTINF:3261,,5.5. Kill the Boy
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S05D03.%20E05%e2%80%9306.iso#1
-#EXTINF:0,,5.6. Unbowed, Unbent, Unbroken
+#EXTINF:3088,,5.6. Unbowed, Unbent, Unbroken
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S05D03.%20E05%e2%80%9306.iso#2
-#EXTINF:0,,5.7. The Gift
+#EXTINF:3385,,5.7. The Gift
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S05D04.%20E07%e2%80%9308.iso#1
-#EXTINF:0,,5.8. Hardhome
+#EXTINF:3454,,5.8. Hardhome
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S05D04.%20E07%e2%80%9308.iso#2
-#EXTINF:0,,5.9. The Dance of Dragons
+#EXTINF:3013,,5.9. The Dance of Dragons
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S05D05.%20E09%e2%80%9310.iso#1
-#EXTINF:0,,5.10. Mother's Mercy
+#EXTINF:3465,,5.10. Mother's Mercy
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S05D05.%20E09%e2%80%9310.iso#2
 
-#EXTINF:0,,6.1. The Red Woman
+#EXTINF:2877,,6.1. The Red Woman
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S06D01.%20E01%e2%80%9302.iso#1
-#EXTINF:0,,6.2. Home
+#EXTINF:3089,,6.2. Home
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S06D01.%20E01%e2%80%9302.iso#2
-#EXTINF:0,,6.3. Oathbreaker
+#EXTINF:3002,,6.3. Oathbreaker
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S06D02.%20E03%e2%80%9304.iso#1
-#EXTINF:0,,6.4. Book of the Stranger
+#EXTINF:3376,,6.4. Book of the Stranger
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S06D02.%20E03%e2%80%9304.iso#2
-#EXTINF:0,,6.5. The Door
+#EXTINF:3267,,6.5. The Door
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S06D03.%20E05%e2%80%9306.iso#1
-#EXTINF:0,,6.6. Blood of My Blood
+#EXTINF:2959,,6.6. Blood of My Blood
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S06D03.%20E05%e2%80%9306.iso#2
-#EXTINF:0,,6.7. The Broken Man
+#EXTINF:2895,,6.7. The Broken Man
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S06D04.%20E07%e2%80%9308.iso#1
-#EXTINF:0,,6.8. No One
+#EXTINF:3356,,6.8. No One
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S06D04.%20E07%e2%80%9308.iso#2
-#EXTINF:0,,6.9. Battle of the Bastards
+#EXTINF:3410,,6.9. Battle of the Bastards
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S06D05.%20E09%e2%80%9310.iso#1
-#EXTINF:0,,6.10. The Winds of Winter
+#EXTINF:3913,,6.10. The Winds of Winter
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S06D05.%20E09%e2%80%9310.iso#2
 
-#EXTINF:0,,7.1. Dragonstone
+#EXTINF:3374,,7.1. Dragonstone
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S07D01.%20E01%e2%80%9302.iso#1
-#EXTINF:0,,7.2. Stormborn
+#EXTINF:3341,,7.2. Stormborn
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S07D01.%20E01%e2%80%9302.iso#2
-#EXTINF:0,,7.3. The Queen's Justice
+#EXTINF:3589,,7.3. The Queen's Justice
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S07D02.%20E03%e2%80%9304.iso#1
-#EXTINF:0,,7.4. The Spoils of War
+#EXTINF:2842,,7.4. The Spoils of War
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S07D02.%20E03%e2%80%9304.iso#2
-#EXTINF:0,,7.5. Eastwatch
+#EXTINF:3365,,7.5. Eastwatch
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S07D03.%20E05%e2%80%9306.iso#1
-#EXTINF:0,,7.6. Beyond the Wall
+#EXTINF:4030,,7.6. Beyond the Wall
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S07D03.%20E05%e2%80%9306.iso#2
-#EXTINF:0,,7.7. The Dragon and the Wolf
+#EXTINF:4593,,7.7. The Dragon and the Wolf
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S07D04.%20E07.iso#1
 
-#EXTINF:0,,8.1. Winterfell
+#EXTINF:3056,,8.1. Winterfell
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S08D01.%20E01%e2%80%9302.iso#1
-#EXTINF:0,,8.2. A Knight of the Seven Kingdoms
+#EXTINF:3336,,8.2. A Knight of the Seven Kingdoms
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S08D01.%20E01%e2%80%9302.iso#2
-#EXTINF:0,,8.3. The Long Night
+#EXTINF:4679,,8.3. The Long Night
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S08D02.%20E03.iso#1
-#EXTINF:0,,8.4. The Last of the Starks
+#EXTINF:4433,,8.4. The Last of the Starks
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S08D03.%20E04%e2%80%9305.iso#1
-#EXTINF:0,,8.5. The Bells
+#EXTINF:4487,,8.5. The Bells
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S08D03.%20E04%e2%80%9305.iso#2
-#EXTINF:0,,8.6. The Iron Throne
+#EXTINF:4522,,8.6. The Iron Throne
 dvd:///mnt/dvd/archive/G/Game%20of%20Thrones/S08D04.%20E06.iso#1
index 71292ef..31c5461 100644 (file)
@@ -1,29 +1,29 @@
 #EXTM3U
 
-#EXTINF:0,,Tinker, Tailor, Soldier, Spy—Episode 1
+#EXTINF:2980,,Tinker, Tailor, Soldier, Spy—Episode 1
 dvd:///mnt/dvd/archive/S/George%20Smiley/S01.%20Tinker,%20Tailor,%20Soldier,%20Spy%e2%80%94D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Tinker, Tailor, Soldier, Spy—Episode 2
+#EXTINF:2957,,Tinker, Tailor, Soldier, Spy—Episode 2
 dvd:///mnt/dvd/archive/S/George%20Smiley/S01.%20Tinker,%20Tailor,%20Soldier,%20Spy%e2%80%94D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Tinker, Tailor, Soldier, Spy—Episode 3
+#EXTINF:2794,,Tinker, Tailor, Soldier, Spy—Episode 3
 dvd:///mnt/dvd/archive/S/George%20Smiley/S01.%20Tinker,%20Tailor,%20Soldier,%20Spy%e2%80%94D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Tinker, Tailor, Soldier, Spy—Episode 4
+#EXTINF:2560,,Tinker, Tailor, Soldier, Spy—Episode 4
 dvd:///mnt/dvd/archive/S/George%20Smiley/S01.%20Tinker,%20Tailor,%20Soldier,%20Spy%e2%80%94D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,Tinker, Tailor, Soldier, Spy—Episode 5
+#EXTINF:2700,,Tinker, Tailor, Soldier, Spy—Episode 5
 dvd:///mnt/dvd/archive/S/George%20Smiley/S01.%20Tinker,%20Tailor,%20Soldier,%20Spy%e2%80%94D02.%20E05%e2%80%9307.iso#2
-#EXTINF:0,,Tinker, Tailor, Soldier, Spy—Episode 6
+#EXTINF:2461,,Tinker, Tailor, Soldier, Spy—Episode 6
 dvd:///mnt/dvd/archive/S/George%20Smiley/S01.%20Tinker,%20Tailor,%20Soldier,%20Spy%e2%80%94D02.%20E05%e2%80%9307.iso#3
-#EXTINF:0,,Tinker, Tailor, Soldier, Spy—Episode 7
+#EXTINF:2590,,Tinker, Tailor, Soldier, Spy—Episode 7
 dvd:///mnt/dvd/archive/S/George%20Smiley/S01.%20Tinker,%20Tailor,%20Soldier,%20Spy%e2%80%94D02.%20E05%e2%80%9307.iso#4
 
-#EXTINF:0,,Smiley's People—Episode 1
+#EXTINF:3600,,Smiley's People—Episode 1
 dvd:///mnt/dvd/archive/S/George%20Smiley/S02.%20Smiley%27s%20People%e2%80%94D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,Smiley's People—Episode 2
+#EXTINF:3521,,Smiley's People—Episode 2
 dvd:///mnt/dvd/archive/S/George%20Smiley/S02.%20Smiley%27s%20People%e2%80%94D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,Smiley's People—Episode 3
+#EXTINF:3501,,Smiley's People—Episode 3
 dvd:///mnt/dvd/archive/S/George%20Smiley/S02.%20Smiley%27s%20People%e2%80%94D01.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,Smiley's People—Episode 4
+#EXTINF:3285,,Smiley's People—Episode 4
 dvd:///mnt/dvd/archive/S/George%20Smiley/S02.%20Smiley%27s%20People%e2%80%94D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,Smiley's People—Episode 5
+#EXTINF:3538,,Smiley's People—Episode 5
 dvd:///mnt/dvd/archive/S/George%20Smiley/S02.%20Smiley%27s%20People%e2%80%94D02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,Smiley's People—Episode 6
+#EXTINF:3604,,Smiley's People—Episode 6
 dvd:///mnt/dvd/archive/S/George%20Smiley/S02.%20Smiley%27s%20People%e2%80%94D02.%20E04%e2%80%9306.iso#5
index d24485c..a7d72a7 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Pilot
+#EXTINF:2880,,1.1. Pilot
 dvd:///mnt/dvd/archive/G/Gotham/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,1.2. Selina Kyle
+#EXTINF:2523,,1.2. Selina Kyle
 dvd:///mnt/dvd/archive/G/Gotham/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,1.3. The Balloonman
+#EXTINF:2512,,1.3. The Balloonman
 dvd:///mnt/dvd/archive/G/Gotham/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,1.4. Arkham
+#EXTINF:2532,,1.4. Arkham
 dvd:///mnt/dvd/archive/G/Gotham/S01D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,1.5. Viper
+#EXTINF:2534,,1.5. Viper
 dvd:///mnt/dvd/archive/G/Gotham/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,1.6. Spirit of the Goat
+#EXTINF:2513,,1.6. Spirit of the Goat
 dvd:///mnt/dvd/archive/G/Gotham/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,1.7. Penguin's Umbrella
+#EXTINF:2534,,1.7. Penguin's Umbrella
 dvd:///mnt/dvd/archive/G/Gotham/S01D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,1.8. The Mask
+#EXTINF:2534,,1.8. The Mask
 dvd:///mnt/dvd/archive/G/Gotham/S01D02.%20E05%e2%80%9308.iso#7
-#EXTINF:0,,1.9. Harvey Dent
+#EXTINF:2531,,1.9. Harvey Dent
 dvd:///mnt/dvd/archive/G/Gotham/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,1.10. Lovecraft
+#EXTINF:2531,,1.10. Lovecraft
 dvd:///mnt/dvd/archive/G/Gotham/S01D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,1.11. Rogues' Gallery
+#EXTINF:2535,,1.11. Rogues' Gallery
 dvd:///mnt/dvd/archive/G/Gotham/S01D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,1.12. What the Little Bird Told Him
+#EXTINF:2531,,1.12. What the Little Bird Told Him
 dvd:///mnt/dvd/archive/G/Gotham/S01D03.%20E09%e2%80%9312.iso#7
-#EXTINF:0,,1.13. Welcome Back, Jim Gordon
+#EXTINF:2533,,1.13. Welcome Back, Jim Gordon
 dvd:///mnt/dvd/archive/G/Gotham/S01D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,1.14. The Fearsome Dr. Crane
+#EXTINF:2535,,1.14. The Fearsome Dr. Crane
 dvd:///mnt/dvd/archive/G/Gotham/S01D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,1.15. The Scarecrow
+#EXTINF:2526,,1.15. The Scarecrow
 dvd:///mnt/dvd/archive/G/Gotham/S01D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,1.16. The Blind Fortune Teller
+#EXTINF:2538,,1.16. The Blind Fortune Teller
 dvd:///mnt/dvd/archive/G/Gotham/S01D04.%20E13%e2%80%9316.iso#7
-#EXTINF:0,,1.17. Red Hood
+#EXTINF:2537,,1.17. Red Hood
 dvd:///mnt/dvd/archive/G/Gotham/S01D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,1.18. Everyone Has a Cobblepot
+#EXTINF:2521,,1.18. Everyone Has a Cobblepot
 dvd:///mnt/dvd/archive/G/Gotham/S01D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,1.19. Beasts of Prey
+#EXTINF:2460,,1.19. Beasts of Prey
 dvd:///mnt/dvd/archive/G/Gotham/S01D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,1.20. Under the Knife
+#EXTINF:2526,,1.20. Under the Knife
 dvd:///mnt/dvd/archive/G/Gotham/S01D05.%20E17%e2%80%9320.iso#7
-#EXTINF:0,,1.21. The Anvil or the Hammer
+#EXTINF:2533,,1.21. The Anvil or the Hammer
 dvd:///mnt/dvd/archive/G/Gotham/S01D06.%20E21%e2%80%9322.iso#3
-#EXTINF:0,,1.22. All Happy Families Are Alike
+#EXTINF:2540,,1.22. All Happy Families Are Alike
 dvd:///mnt/dvd/archive/G/Gotham/S01D06.%20E21%e2%80%9322.iso#5
 
-#EXTINF:0,,2.1. Damned If You Do…
+#EXTINF:2539,,2.1. Damned If You Do…
 dvd:///mnt/dvd/archive/G/Gotham/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,2.2. Knock, Knock
+#EXTINF:2538,,2.2. Knock, Knock
 dvd:///mnt/dvd/archive/G/Gotham/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.3. The Last Laugh
+#EXTINF:2540,,2.3. The Last Laugh
 dvd:///mnt/dvd/archive/G/Gotham/S02D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,2.4. Strike Force
+#EXTINF:2539,,2.4. Strike Force
 dvd:///mnt/dvd/archive/G/Gotham/S02D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,2.5. Scarification
+#EXTINF:2466,,2.5. Scarification
 dvd:///mnt/dvd/archive/G/Gotham/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,2.6. By Fire
+#EXTINF:2537,,2.6. By Fire
 dvd:///mnt/dvd/archive/G/Gotham/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.7. Mommy's Little Monster
+#EXTINF:2540,,2.7. Mommy's Little Monster
 dvd:///mnt/dvd/archive/G/Gotham/S02D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,2.8. Tonight's the Night
+#EXTINF:2541,,2.8. Tonight's the Night
 dvd:///mnt/dvd/archive/G/Gotham/S02D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,2.9. A Bitter Pill to Swallow
+#EXTINF:2540,,2.9. A Bitter Pill to Swallow
 dvd:///mnt/dvd/archive/G/Gotham/S02D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,2.10. The Son of Gotham
+#EXTINF:2541,,2.10. The Son of Gotham
 dvd:///mnt/dvd/archive/G/Gotham/S02D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,2.11. Worse than a Crime
+#EXTINF:2495,,2.11. Worse than a Crime
 dvd:///mnt/dvd/archive/G/Gotham/S02D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,2.12. Mr. Freeze
+#EXTINF:2508,,2.12. Mr. Freeze
 dvd:///mnt/dvd/archive/G/Gotham/S02D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,2.13. A Dead Man Feels No Cold
+#EXTINF:2524,,2.13. A Dead Man Feels No Cold
 dvd:///mnt/dvd/archive/G/Gotham/S02D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,2.14. This Ball of Mud and Meanness
+#EXTINF:2538,,2.14. This Ball of Mud and Meanness
 dvd:///mnt/dvd/archive/G/Gotham/S02D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,2.15. Mad Grey Dawn
+#EXTINF:2524,,2.15. Mad Grey Dawn
 dvd:///mnt/dvd/archive/G/Gotham/S02D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,2.16. Prisoners
+#EXTINF:2535,,2.16. Prisoners
 dvd:///mnt/dvd/archive/G/Gotham/S02D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,2.17. Into the Woods
+#EXTINF:2539,,2.17. Into the Woods
 dvd:///mnt/dvd/archive/G/Gotham/S02D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,2.18. Pinewood
+#EXTINF:2428,,2.18. Pinewood
 dvd:///mnt/dvd/archive/G/Gotham/S02D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,2.19. Azrael
+#EXTINF:2533,,2.19. Azrael
 dvd:///mnt/dvd/archive/G/Gotham/S02D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,2.20. Unleashed
+#EXTINF:2512,,2.20. Unleashed
 dvd:///mnt/dvd/archive/G/Gotham/S02D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,2.21. A Legion of Horribles
+#EXTINF:2425,,2.21. A Legion of Horribles
 dvd:///mnt/dvd/archive/G/Gotham/S02D06.%20E21%e2%80%9322.iso#3
-#EXTINF:0,,2.22. Transference
+#EXTINF:2521,,2.22. Transference
 dvd:///mnt/dvd/archive/G/Gotham/S02D06.%20E21%e2%80%9322.iso#4
 
-#EXTINF:0,,3.1. Better to Reign in Hell…
+#EXTINF:2538,,3.1. Better to Reign in Hell…
 dvd:///mnt/dvd/archive/G/Gotham/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,3.2. Burn the Witch
+#EXTINF:2514,,3.2. Burn the Witch
 dvd:///mnt/dvd/archive/G/Gotham/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,3.3. Look into My Eyes
+#EXTINF:2538,,3.3. Look into My Eyes
 dvd:///mnt/dvd/archive/G/Gotham/S03D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,3.4. New Day Rising
+#EXTINF:2537,,3.4. New Day Rising
 dvd:///mnt/dvd/archive/G/Gotham/S03D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,3.5. Anything for You
+#EXTINF:2459,,3.5. Anything for You
 dvd:///mnt/dvd/archive/G/Gotham/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,3.6. Follow the White Rabbit
+#EXTINF:2424,,3.6. Follow the White Rabbit
 dvd:///mnt/dvd/archive/G/Gotham/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,3.7. Red Queen
+#EXTINF:2529,,3.7. Red Queen
 dvd:///mnt/dvd/archive/G/Gotham/S03D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,3.8. Blood Rush
+#EXTINF:2537,,3.8. Blood Rush
 dvd:///mnt/dvd/archive/G/Gotham/S03D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,3.9. The Executioner
+#EXTINF:2498,,3.9. The Executioner
 dvd:///mnt/dvd/archive/G/Gotham/S03D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,3.10. Time Bomb
+#EXTINF:2536,,3.10. Time Bomb
 dvd:///mnt/dvd/archive/G/Gotham/S03D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,3.11. Beware the Green-Eyed Monster
+#EXTINF:2540,,3.11. Beware the Green-Eyed Monster
 dvd:///mnt/dvd/archive/G/Gotham/S03D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,3.12. Ghosts
+#EXTINF:2438,,3.12. Ghosts
 dvd:///mnt/dvd/archive/G/Gotham/S03D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,3.13. Smile Like You Mean It
+#EXTINF:2446,,3.13. Smile Like You Mean It
 dvd:///mnt/dvd/archive/G/Gotham/S03D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,3.14. The Gentle Art of Making Enemies
+#EXTINF:2527,,3.14. The Gentle Art of Making Enemies
 dvd:///mnt/dvd/archive/G/Gotham/S03D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,3.15. How the Riddler Got His Name
+#EXTINF:2510,,3.15. How the Riddler Got His Name
 dvd:///mnt/dvd/archive/G/Gotham/S03D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,3.16. These Delicate and Dark Obsessions
+#EXTINF:2456,,3.16. These Delicate and Dark Obsessions
 dvd:///mnt/dvd/archive/G/Gotham/S03D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,3.17. The Primal Riddle
+#EXTINF:2497,,3.17. The Primal Riddle
 dvd:///mnt/dvd/archive/G/Gotham/S03D05.%20E17%e2%80%9319.iso#3
-#EXTINF:0,,3.18. Light the Wick
+#EXTINF:2521,,3.18. Light the Wick
 dvd:///mnt/dvd/archive/G/Gotham/S03D05.%20E17%e2%80%9319.iso#4
-#EXTINF:0,,3.19. All Will Be Judged
+#EXTINF:2536,,3.19. All Will Be Judged
 dvd:///mnt/dvd/archive/G/Gotham/S03D05.%20E17%e2%80%9319.iso#5
-#EXTINF:0,,3.20. Pretty Hate Machine
+#EXTINF:2543,,3.20. Pretty Hate Machine
 dvd:///mnt/dvd/archive/G/Gotham/S03D06.%20E20%e2%80%9322.iso#3
-#EXTINF:0,,3.21. Destiny Calling
+#EXTINF:2514,,3.21. Destiny Calling
 dvd:///mnt/dvd/archive/G/Gotham/S03D06.%20E20%e2%80%9322.iso#4
-#EXTINF:0,,3.22. Heavydirtysoul
+#EXTINF:2541,,3.22. Heavydirtysoul
 dvd:///mnt/dvd/archive/G/Gotham/S03D06.%20E20%e2%80%9322.iso#5
 
-#EXTINF:0,,4.1. Pax Penguina
+#EXTINF:2481,,4.1. Pax Penguina
 dvd:///mnt/dvd/archive/G/Gotham/S04D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,4.2. The Fear Reaper
+#EXTINF:2528,,4.2. The Fear Reaper
 dvd:///mnt/dvd/archive/G/Gotham/S04D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,4.3. They Who Hide Behind Masks
+#EXTINF:2532,,4.3. They Who Hide Behind Masks
 dvd:///mnt/dvd/archive/G/Gotham/S04D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,4.4. The Demon's Head
+#EXTINF:2539,,4.4. The Demon's Head
 dvd:///mnt/dvd/archive/G/Gotham/S04D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,4.5. The Blade's Path
+#EXTINF:2514,,4.5. The Blade's Path
 dvd:///mnt/dvd/archive/G/Gotham/S04D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,4.6. Hog Day Afternoon
+#EXTINF:2533,,4.6. Hog Day Afternoon
 dvd:///mnt/dvd/archive/G/Gotham/S04D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,4.7. A Day in the Narrows
+#EXTINF:2516,,4.7. A Day in the Narrows
 dvd:///mnt/dvd/archive/G/Gotham/S04D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,4.8. Stop Hitting Yourself
+#EXTINF:2538,,4.8. Stop Hitting Yourself
 dvd:///mnt/dvd/archive/G/Gotham/S04D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,4.9. Let Them Eat Pie
+#EXTINF:2525,,4.9. Let Them Eat Pie
 dvd:///mnt/dvd/archive/G/Gotham/S04D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,4.10. Things that Go Boom
+#EXTINF:2523,,4.10. Things that Go Boom
 dvd:///mnt/dvd/archive/G/Gotham/S04D02.%20E06%e2%80%9310.iso#7
-#EXTINF:0,,4.11. Queen Takes Knight
+#EXTINF:2524,,4.11. Queen Takes Knight
 dvd:///mnt/dvd/archive/G/Gotham/S04D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,4.12. Pieces of a Broken Mirror
+#EXTINF:2538,,4.12. Pieces of a Broken Mirror
 dvd:///mnt/dvd/archive/G/Gotham/S04D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,4.13. A Beautiful Darkness
+#EXTINF:2518,,4.13. A Beautiful Darkness
 dvd:///mnt/dvd/archive/G/Gotham/S04D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,4.14. Reunion
+#EXTINF:2529,,4.14. Reunion
 dvd:///mnt/dvd/archive/G/Gotham/S04D03.%20E11%e2%80%9315.iso#6
-#EXTINF:0,,4.15. The Sinking Ship The Grand Applause
+#EXTINF:2538,,4.15. The Sinking Ship The Grand Applause
 dvd:///mnt/dvd/archive/G/Gotham/S04D03.%20E11%e2%80%9315.iso#7
-#EXTINF:0,,4.16. One of My Three Soups
+#EXTINF:2528,,4.16. One of My Three Soups
 dvd:///mnt/dvd/archive/G/Gotham/S04D04.%20E16%e2%80%9320.iso#3
-#EXTINF:0,,4.17. Mandatory Brunch Meeting
+#EXTINF:2539,,4.17. Mandatory Brunch Meeting
 dvd:///mnt/dvd/archive/G/Gotham/S04D04.%20E16%e2%80%9320.iso#4
-#EXTINF:0,,4.18. That's Entertainment
+#EXTINF:2528,,4.18. That's Entertainment
 dvd:///mnt/dvd/archive/G/Gotham/S04D04.%20E16%e2%80%9320.iso#5
-#EXTINF:0,,4.19. To Our Deaths and Beyond
+#EXTINF:2540,,4.19. To Our Deaths and Beyond
 dvd:///mnt/dvd/archive/G/Gotham/S04D04.%20E16%e2%80%9320.iso#6
-#EXTINF:0,,4.20. That Old Corpse
+#EXTINF:2538,,4.20. That Old Corpse
 dvd:///mnt/dvd/archive/G/Gotham/S04D04.%20E16%e2%80%9320.iso#7
-#EXTINF:0,,4.21. One Bad Day
+#EXTINF:2536,,4.21. One Bad Day
 dvd:///mnt/dvd/archive/G/Gotham/S04D05.%20E21%e2%80%9322.iso#3
-#EXTINF:0,,4.22. No Man's Land
+#EXTINF:2525,,4.22. No Man's Land
 dvd:///mnt/dvd/archive/G/Gotham/S04D05.%20E21%e2%80%9322.iso#4
 
-#EXTINF:0,,5.1. Year Zero
+#EXTINF:2538,,5.1. Year Zero
 dvd:///mnt/dvd/archive/G/Gotham/S05D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,5.2. Trespassers
+#EXTINF:2532,,5.2. Trespassers
 dvd:///mnt/dvd/archive/G/Gotham/S05D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,5.3. Penguin, Our Hero
+#EXTINF:2538,,5.3. Penguin, Our Hero
 dvd:///mnt/dvd/archive/G/Gotham/S05D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,5.4. Ruin
+#EXTINF:2538,,5.4. Ruin
 dvd:///mnt/dvd/archive/G/Gotham/S05D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,5.5. Pena dura
+#EXTINF:2538,,5.5. Pena dura
 dvd:///mnt/dvd/archive/G/Gotham/S05D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,5.6. 13 Stitches
+#EXTINF:2533,,5.6. 13 Stitches
 dvd:///mnt/dvd/archive/G/Gotham/S05D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,5.7. Ace Chemicals
+#EXTINF:2537,,5.7. Ace Chemicals
 dvd:///mnt/dvd/archive/G/Gotham/S05D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,5.8. Nothing's Shocking
+#EXTINF:2537,,5.8. Nothing's Shocking
 dvd:///mnt/dvd/archive/G/Gotham/S05D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,5.9. The Trial of Jim Gordon
+#EXTINF:2530,,5.9. The Trial of Jim Gordon
 dvd:///mnt/dvd/archive/G/Gotham/S05D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,5.10. I Am Bane
+#EXTINF:2489,,5.10. I Am Bane
 dvd:///mnt/dvd/archive/G/Gotham/S05D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,5.11. They Did What?
+#EXTINF:2539,,5.11. They Did What?
 dvd:///mnt/dvd/archive/G/Gotham/S05D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,5.12. The Beginning…
+#EXTINF:2540,,5.12. The Beginning…
 dvd:///mnt/dvd/archive/G/Gotham/S05D03.%20E09%e2%80%9312.iso#5
index 02bff9f..9b847b7 100644 (file)
@@ -1,82 +1,82 @@
 #EXTM3U
 
-#EXTINF:0,,1.1. Apéritif
+#EXTINF:2494,,1.1. Apéritif
 dvd:///mnt/dvd/archive/H/Hannibal/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,1.2. Amuse-bouche
+#EXTINF:2498,,1.2. Amuse-bouche
 dvd:///mnt/dvd/archive/H/Hannibal/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,1.3. Potage
+#EXTINF:2499,,1.3. Potage
 dvd:///mnt/dvd/archive/H/Hannibal/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,1.4. Œuf
+#EXTINF:2500,,1.4. Œuf
 dvd:///mnt/dvd/archive/H/Hannibal/S01D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,1.5. Coquilles
+#EXTINF:2496,,1.5. Coquilles
 dvd:///mnt/dvd/archive/H/Hannibal/S01D02.%20E05%e2%80%9307.iso#3
-#EXTINF:0,,1.6. Entrée
+#EXTINF:2498,,1.6. Entrée
 dvd:///mnt/dvd/archive/H/Hannibal/S01D02.%20E05%e2%80%9307.iso#4
-#EXTINF:0,,1.7. Sorbet
+#EXTINF:2505,,1.7. Sorbet
 dvd:///mnt/dvd/archive/H/Hannibal/S01D02.%20E05%e2%80%9307.iso#5
-#EXTINF:0,,1.8. Fromage
+#EXTINF:2505,,1.8. Fromage
 dvd:///mnt/dvd/archive/H/Hannibal/S01D03.%20E08%e2%80%9310.iso#3
-#EXTINF:0,,1.9. Trou Normand
+#EXTINF:2504,,1.9. Trou Normand
 dvd:///mnt/dvd/archive/H/Hannibal/S01D03.%20E08%e2%80%9310.iso#4
-#EXTINF:0,,1.10. Buffet froid
+#EXTINF:2505,,1.10. Buffet froid
 dvd:///mnt/dvd/archive/H/Hannibal/S01D03.%20E08%e2%80%9310.iso#5
-#EXTINF:0,,1.11. Rôti
+#EXTINF:2500,,1.11. Rôti
 dvd:///mnt/dvd/archive/H/Hannibal/S01D04.%20E11%e2%80%9313.iso#3
-#EXTINF:0,,1.12. Relevés
+#EXTINF:2500,,1.12. Relevés
 dvd:///mnt/dvd/archive/H/Hannibal/S01D04.%20E11%e2%80%9313.iso#4
-#EXTINF:0,,1.13. Savoureux
+#EXTINF:2500,,1.13. Savoureux
 dvd:///mnt/dvd/archive/H/Hannibal/S01D04.%20E11%e2%80%9313.iso#5
 
-#EXTINF:0,,2.1. Kaiseki
+#EXTINF:2483,,2.1. Kaiseki
 dvd:///mnt/dvd/archive/H/Hannibal/S02D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,2.2. Sakizuke
+#EXTINF:2483,,2.2. Sakizuke
 dvd:///mnt/dvd/archive/H/Hannibal/S02D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,2.3. Hassun
+#EXTINF:2484,,2.3. Hassun
 dvd:///mnt/dvd/archive/H/Hannibal/S02D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,2.4. Takiawase
+#EXTINF:2483,,2.4. Takiawase
 dvd:///mnt/dvd/archive/H/Hannibal/S02D01.%20E01%e2%80%9304.iso#9
-#EXTINF:0,,2.5. Mukōzuke
+#EXTINF:2483,,2.5. Mukōzuke
 dvd:///mnt/dvd/archive/H/Hannibal/S02D02.%20E05%e2%80%9307.iso#4
-#EXTINF:0,,2.6. Futamono
+#EXTINF:2483,,2.6. Futamono
 dvd:///mnt/dvd/archive/H/Hannibal/S02D02.%20E05%e2%80%9307.iso#5
-#EXTINF:0,,2.7. Yakimono
+#EXTINF:2483,,2.7. Yakimono
 dvd:///mnt/dvd/archive/H/Hannibal/S02D02.%20E05%e2%80%9307.iso#6
-#EXTINF:0,,2.8. Su-zakana
+#EXTINF:2481,,2.8. Su-zakana
 dvd:///mnt/dvd/archive/H/Hannibal/S02D03.%20E08%e2%80%9310.iso#5
-#EXTINF:0,,2.9. Shiizakana
+#EXTINF:2467,,2.9. Shiizakana
 dvd:///mnt/dvd/archive/H/Hannibal/S02D03.%20E08%e2%80%9310.iso#6
-#EXTINF:0,,2.10. Naka-choko
+#EXTINF:2481,,2.10. Naka-choko
 dvd:///mnt/dvd/archive/H/Hannibal/S02D03.%20E08%e2%80%9310.iso#7
-#EXTINF:0,,2.11. Kō no mono
+#EXTINF:2481,,2.11. Kō no mono
 dvd:///mnt/dvd/archive/H/Hannibal/S02D04.%20E11%e2%80%9313.iso#5
-#EXTINF:0,,2.12. Tome-wan
+#EXTINF:2481,,2.12. Tome-wan
 dvd:///mnt/dvd/archive/H/Hannibal/S02D04.%20E11%e2%80%9313.iso#6
-#EXTINF:0,,2.13. Mizumono
+#EXTINF:2485,,2.13. Mizumono
 dvd:///mnt/dvd/archive/H/Hannibal/S02D04.%20E11%e2%80%9313.iso#7
 
-#EXTINF:0,,3.1. Antipasto
+#EXTINF:2480,,3.1. Antipasto
 dvd:///mnt/dvd/archive/H/Hannibal/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,3.2. Primavera
+#EXTINF:2481,,3.2. Primavera
 dvd:///mnt/dvd/archive/H/Hannibal/S03D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,3.3. Secondo
+#EXTINF:2481,,3.3. Secondo
 dvd:///mnt/dvd/archive/H/Hannibal/S03D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,3.4. Aperitivo
+#EXTINF:2479,,3.4. Aperitivo
 dvd:///mnt/dvd/archive/H/Hannibal/S03D01.%20E01%e2%80%9304.iso#10
-#EXTINF:0,,3.5. Contorno
+#EXTINF:2482,,3.5. Contorno
 dvd:///mnt/dvd/archive/H/Hannibal/S03D02.%20E05%e2%80%9307.iso#4
-#EXTINF:0,,3.6. Dolce
+#EXTINF:2481,,3.6. Dolce
 dvd:///mnt/dvd/archive/H/Hannibal/S03D02.%20E05%e2%80%9307.iso#6
-#EXTINF:0,,3.7. Digestivo
+#EXTINF:2480,,3.7. Digestivo
 dvd:///mnt/dvd/archive/H/Hannibal/S03D02.%20E05%e2%80%9307.iso#8
-#EXTINF:0,,3.8. The Great Red Dragon
+#EXTINF:2481,,3.8. The Great Red Dragon
 dvd:///mnt/dvd/archive/H/Hannibal/S03D03.%20E08%e2%80%9310.iso#4
-#EXTINF:0,,3.9. …And the Woman Clothed with the Sun
+#EXTINF:2483,,3.9. …And the Woman Clothed with the Sun
 dvd:///mnt/dvd/archive/H/Hannibal/S03D03.%20E08%e2%80%9310.iso#6
-#EXTINF:0,,3.10. …And the Woman Clothed in Sun
+#EXTINF:2481,,3.10. …And the Woman Clothed in Sun
 dvd:///mnt/dvd/archive/H/Hannibal/S03D03.%20E08%e2%80%9310.iso#8
-#EXTINF:0,,3.11. …And the Beast from the Sea
+#EXTINF:2481,,3.11. …And the Beast from the Sea
 dvd:///mnt/dvd/archive/H/Hannibal/S03D04.%20E11%e2%80%9313.iso#4
-#EXTINF:0,,3.12. The Number of the Beast Is 666
+#EXTINF:2481,,3.12. The Number of the Beast Is 666
 dvd:///mnt/dvd/archive/H/Hannibal/S03D04.%20E11%e2%80%9313.iso#6
-#EXTINF:0,,3.13. The Wrath of the Lamb
+#EXTINF:2470,,3.13. The Wrath of the Lamb
 dvd:///mnt/dvd/archive/H/Hannibal/S03D04.%20E11%e2%80%9313.iso#8
index 64ccd66..18dd91d 100644 (file)
@@ -1,14 +1,14 @@
 #EXTM3U
 
-#EXTINF:0,,Episode 1
+#EXTINF:1973,,Episode 1
 dvd:///mnt/dvd/archive/H/The%20Hitchhiker%27s%20Guide%20to%20the%20Galaxy/Episodes.iso#1
-#EXTINF:0,,Episode 2
+#EXTINF:2095,,Episode 2
 dvd:///mnt/dvd/archive/H/The%20Hitchhiker%27s%20Guide%20to%20the%20Galaxy/Episodes.iso#2
-#EXTINF:0,,Episode 3
+#EXTINF:1862,,Episode 3
 dvd:///mnt/dvd/archive/H/The%20Hitchhiker%27s%20Guide%20to%20the%20Galaxy/Episodes.iso#3
-#EXTINF:0,,Episode 4
+#EXTINF:1941,,Episode 4
 dvd:///mnt/dvd/archive/H/The%20Hitchhiker%27s%20Guide%20to%20the%20Galaxy/Episodes.iso#4
-#EXTINF:0,,Episode 5
+#EXTINF:1972,,Episode 5
 dvd:///mnt/dvd/archive/H/The%20Hitchhiker%27s%20Guide%20to%20the%20Galaxy/Episodes.iso#5
-#EXTINF:0,,Episode 6
+#EXTINF:2145,,Episode 6
 dvd:///mnt/dvd/archive/H/The%20Hitchhiker%27s%20Guide%20to%20the%20Galaxy/Episodes.iso#6
index eb3d625..f608042 100644 (file)
@@ -1,28 +1,28 @@
 #EXTM3U
 
-#EXTINF:0,,House of Cards—Episode 1
+#EXTINF:3347,,House of Cards—Episode 1
 dvd:///mnt/dvd/archive/H/House%20of%20Cards/01A.%20House%20of%20Cards%e2%80%94E01%e2%80%9302.iso#3
-#EXTINF:0,,House of Cards—Episode 2
+#EXTINF:3348,,House of Cards—Episode 2
 dvd:///mnt/dvd/archive/H/House%20of%20Cards/01A.%20House%20of%20Cards%e2%80%94E01%e2%80%9302.iso#5
-#EXTINF:0,,House of Cards—Episode 3
+#EXTINF:3362,,House of Cards—Episode 3
 dvd:///mnt/dvd/archive/H/House%20of%20Cards/01B.%20House%20of%20Cards%e2%80%94E03%e2%80%9304.iso#2
-#EXTINF:0,,House of Cards—Episode 4
+#EXTINF:3405,,House of Cards—Episode 4
 dvd:///mnt/dvd/archive/H/House%20of%20Cards/01B.%20House%20of%20Cards%e2%80%94E03%e2%80%9304.iso#3
 
-#EXTINF:0,,To Play the King—Episode 1
+#EXTINF:3222,,To Play the King—Episode 1
 dvd:///mnt/dvd/archive/H/House%20of%20Cards/02A.%20To%20Play%20the%20King%e2%80%94E01%e2%80%9302.iso#3
-#EXTINF:0,,To Play the King—Episode 2
+#EXTINF:3167,,To Play the King—Episode 2
 dvd:///mnt/dvd/archive/H/House%20of%20Cards/02A.%20To%20Play%20the%20King%e2%80%94E01%e2%80%9302.iso#5
-#EXTINF:0,,To Play the King—Episode 3
+#EXTINF:3213,,To Play the King—Episode 3
 dvd:///mnt/dvd/archive/H/House%20of%20Cards/02B.%20To%20Play%20the%20King%e2%80%94E03%e2%80%9304.iso#2
-#EXTINF:0,,To Play the King—Episode 4
+#EXTINF:3278,,To Play the King—Episode 4
 dvd:///mnt/dvd/archive/H/House%20of%20Cards/02B.%20To%20Play%20the%20King%e2%80%94E03%e2%80%9304.iso#3
 
-#EXTINF:0,,The Final Cut—Episode 1
+#EXTINF:3015,,The Final Cut—Episode 1
 dvd:///mnt/dvd/archive/H/House%20of%20Cards/03A.%20The%20Final%20Cut%e2%80%94E01%e2%80%9302.iso#3
-#EXTINF:0,,The Final Cut—Episode 2
+#EXTINF:3088,,The Final Cut—Episode 2
 dvd:///mnt/dvd/archive/H/House%20of%20Cards/03A.%20The%20Final%20Cut%e2%80%94E01%e2%80%9302.iso#5
-#EXTINF:0,,The Final Cut—Episode 3
+#EXTINF:3118,,The Final Cut—Episode 3
 dvd:///mnt/dvd/archive/H/House%20of%20Cards/03B.%20The%20Final%20Cut%e2%80%94E03%e2%80%9304.iso#2
-#EXTINF:0,,The Final Cut—Episode 4
+#EXTINF:3110,,The Final Cut—Episode 4
 dvd:///mnt/dvd/archive/H/House%20of%20Cards/03B.%20The%20Final%20Cut%e2%80%94E03%e2%80%9304.iso#3
index 4f3e73d..4a10cde 100644 (file)
@@ -1,26 +1,26 @@
 #EXTM3U
 
-#EXTINF:0,,1. A Touch of Murder
+#EXTINF:5866,,1. A Touch of Murder
 dvd:///mnt/dvd/archive/I/I%20Claudius/01.%20E01%e2%80%9303.iso#1
-#EXTINF:0,,2. Waiting in the Wings
+#EXTINF:3008,,2. Waiting in the Wings
 dvd:///mnt/dvd/archive/I/I%20Claudius/01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,3. What Shall We Do About Claudius
+#EXTINF:3105,,3. What Shall We Do About Claudius
 dvd:///mnt/dvd/archive/I/I%20Claudius/01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,4. Poison is Queen
+#EXTINF:3066,,4. Poison is Queen
 dvd:///mnt/dvd/archive/I/I%20Claudius/02.%20E04%e2%80%9306.iso#2
-#EXTINF:0,,5. Some Justice
+#EXTINF:3109,,5. Some Justice
 dvd:///mnt/dvd/archive/I/I%20Claudius/02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,6. Queen of Heaven
+#EXTINF:3129,,6. Queen of Heaven
 dvd:///mnt/dvd/archive/I/I%20Claudius/02.%20E04%e2%80%9306.iso#1
-#EXTINF:0,,7. Reign of Terror
+#EXTINF:3074,,7. Reign of Terror
 dvd:///mnt/dvd/archive/I/I%20Claudius/03.%20E07%e2%80%9309.iso#1
-#EXTINF:0,,8. Zeus, by Jove!
+#EXTINF:3083,,8. Zeus, by Jove!
 dvd:///mnt/dvd/archive/I/I%20Claudius/03.%20E07%e2%80%9309.iso#2
-#EXTINF:0,,9. Hail Who?
+#EXTINF:3249,,9. Hail Who?
 dvd:///mnt/dvd/archive/I/I%20Claudius/03.%20E07%e2%80%9309.iso#3
-#EXTINF:0,,10. Fool's Luck
+#EXTINF:3109,,10. Fool's Luck
 dvd:///mnt/dvd/archive/I/I%20Claudius/04.%20E10%e2%80%9312.iso#2
-#EXTINF:0,,11. A God in Colchester
+#EXTINF:3106,,11. A God in Colchester
 dvd:///mnt/dvd/archive/I/I%20Claudius/04.%20E10%e2%80%9312.iso#3
-#EXTINF:0,,12. Old King Log
+#EXTINF:3200,,12. Old King Log
 dvd:///mnt/dvd/archive/I/I%20Claudius/04.%20E10%e2%80%9312.iso#1
index 3e3f0e7..8572350 100644 (file)
@@ -1,46 +1,46 @@
 #EXTM3U
 
-#EXTINF:0,,1.1. Rothgo
+#EXTINF:1564,,1.1. Rothgo
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S01.%20E01%e2%80%9307.iso#2
-#EXTINF:0,,1.2. The Circle
+#EXTINF:1581,,1.2. The Circle
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S01.%20E01%e2%80%9307.iso#3
-#EXTINF:0,,1.3. Robin
+#EXTINF:1577,,1.3. Robin
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S01.%20E01%e2%80%9307.iso#4
-#EXTINF:0,,1.4. Masrur
+#EXTINF:1558,,1.4. Masrur
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S01.%20E01%e2%80%9307.iso#5
-#EXTINF:0,,1.5. Conflict
+#EXTINF:1549,,1.5. Conflict
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S01.%20E01%e2%80%9307.iso#6
-#EXTINF:0,,1.6. Revolution
+#EXTINF:1569,,1.6. Revolution
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S01.%20E01%e2%80%9307.iso#7
-#EXTINF:0,,1.7. Minotaur
+#EXTINF:1576,,1.7. Minotaur
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S01.%20E01%e2%80%9307.iso#8
 
-#EXTINF:0,,2.1. The Calling
+#EXTINF:1579,,2.1. The Calling
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S02.%20E01%e2%80%9307.iso#2
-#EXTINF:0,,2.2. Treason
+#EXTINF:1571,,2.2. Treason
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S02.%20E01%e2%80%9307.iso#3
-#EXTINF:0,,2.3. Alamo
+#EXTINF:1558,,2.3. Alamo
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S02.%20E01%e2%80%9307.iso#4
-#EXTINF:0,,2.4. Cave of Diamonds
+#EXTINF:1539,,2.4. Cave of Diamonds
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S02.%20E01%e2%80%9307.iso#5
-#EXTINF:0,,2.5. Shadrach
+#EXTINF:1554,,2.5. Shadrach
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S02.%20E01%e2%80%9307.iso#6
-#EXTINF:0,,2.6. Siege
+#EXTINF:1559,,2.6. Siege
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S02.%20E01%e2%80%9307.iso#7
-#EXTINF:0,,2.7. Succession
+#EXTINF:1569,,2.7. Succession
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S02.%20E01%e2%80%9307.iso#8
 
-#EXTINF:0,,3.1. Lazlo
+#EXTINF:1519,,3.1. Lazlo
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S03.%20E01%e2%80%9307.iso#2
-#EXTINF:0,,3.2. Dr Jekyll and Mrs Hyde
+#EXTINF:1539,,3.2. Dr Jekyll and Mrs Hyde
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S03.%20E01%e2%80%9307.iso#3
-#EXTINF:0,,3.3. Eye of the Sun
+#EXTINF:1560,,3.3. Eye of the Sun
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S03.%20E01%e2%80%9307.iso#4
-#EXTINF:0,,3.4. London is Burning
+#EXTINF:1540,,3.4. London is Burning
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S03.%20E01%e2%80%9307.iso#5
-#EXTINF:0,,3.5. The Phantom
+#EXTINF:1547,,3.5. The Phantom
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S03.%20E01%e2%80%9307.iso#6
-#EXTINF:0,,3.6. Xanadu
+#EXTINF:1529,,3.6. Xanadu
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S03.%20E01%e2%80%9307.iso#7
-#EXTINF:0,,3.7. Excalibur
+#EXTINF:1555,,3.7. Excalibur
 dvd:///mnt/dvd/archive/I/Into%20the%20Labyrinth/S03.%20E01%e2%80%9307.iso#8
index 598c27e..1c91bea 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Knight of the Phoenix
+#EXTINF:5524,,1.1. Knight of the Phoenix
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D07.%20E20,%20E01.iso#2
-#EXTINF:0,,1.2. Deadly Maneuvers
+#EXTINF:2778,,1.2. Deadly Maneuvers
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D01.%20E02%e2%80%9304.iso#1
-#EXTINF:0,,1.3. Good Day at White Rock
+#EXTINF:2776,,1.3. Good Day at White Rock
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D01.%20E02%e2%80%9304.iso#2
-#EXTINF:0,,1.4. Slammin' Sammy's Stunt Show Spectacular
+#EXTINF:2767,,1.4. Slammin' Sammy's Stunt Show Spectacular
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D01.%20E02%e2%80%9304.iso#3
-#EXTINF:0,,1.5. Just My Bill
+#EXTINF:2774,,1.5. Just My Bill
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D02.%20E05%e2%80%9307.iso#1
-#EXTINF:0,,1.6. Not a Drop to Drink
+#EXTINF:2773,,1.6. Not a Drop to Drink
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D02.%20E05%e2%80%9307.iso#2
-#EXTINF:0,,1.7. No Big Thing
+#EXTINF:2737,,1.7. No Big Thing
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D02.%20E05%e2%80%9307.iso#3
-#EXTINF:0,,1.8. Trust Doesn't Rust
+#EXTINF:2720,,1.8. Trust Doesn't Rust
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D03.%20E08%e2%80%9310.iso#1
-#EXTINF:0,,1.9. Inside Out
+#EXTINF:2778,,1.9. Inside Out
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D03.%20E08%e2%80%9310.iso#2
-#EXTINF:0,,1.10. The Final Verdict
+#EXTINF:2775,,1.10. The Final Verdict
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D03.%20E08%e2%80%9310.iso#3
-#EXTINF:0,,1.11. A Plush Ride
+#EXTINF:2775,,1.11. A Plush Ride
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D04.%20E11%e2%80%9313.iso#1
-#EXTINF:0,,1.12. Forget Me Not
+#EXTINF:2779,,1.12. Forget Me Not
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D04.%20E11%e2%80%9313.iso#2
-#EXTINF:0,,1.13. Hearts of Stone
+#EXTINF:2757,,1.13. Hearts of Stone
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D04.%20E11%e2%80%9313.iso#3
-#EXTINF:0,,1.14. Give Me Liberty… or Give Me Death
+#EXTINF:2775,,1.14. Give Me Liberty… or Give Me Death
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D05.%20E14%e2%80%9316.iso#1
-#EXTINF:0,,1.15. The Topaz Connection
+#EXTINF:2778,,1.15. The Topaz Connection
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D05.%20E14%e2%80%9316.iso#2
-#EXTINF:0,,1.16. A Nice, Indecent Little Town
+#EXTINF:2774,,1.16. A Nice, Indecent Little Town
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D05.%20E14%e2%80%9316.iso#3
-#EXTINF:0,,1.17. Chariot of Gold
+#EXTINF:2777,,1.17. Chariot of Gold
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D06.%20E17%e2%80%9319.iso#1
-#EXTINF:0,,1.18. White Bird
+#EXTINF:2774,,1.18. White Bird
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D06.%20E17%e2%80%9319.iso#2
-#EXTINF:0,,1.19. Knight Moves
+#EXTINF:2773,,1.19. Knight Moves
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D06.%20E17%e2%80%9319.iso#3
-#EXTINF:0,,1.20. Nobody Does It Better
+#EXTINF:2775,,1.20. Nobody Does It Better
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D07.%20E20,%20E01.iso#1
-#EXTINF:0,,1.21. Short Notice
+#EXTINF:2776,,1.21. Short Notice
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D08.%20E21.iso#1
 
-#EXTINF:0,,2.1. Goliath
+#EXTINF:5523,,2.1. Goliath
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D01.%20E01%e2%80%9303.iso#1
-#EXTINF:0,,2.2. Brother's Keeper
+#EXTINF:2766,,2.2. Brother's Keeper
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,2.3. Merchants of Death
+#EXTINF:2768,,2.3. Merchants of Death
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,2.4. Blind Spot
+#EXTINF:2767,,2.4. Blind Spot
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D02.%20E04%e2%80%9307.iso#1
-#EXTINF:0,,2.5. Return to Cadiz
+#EXTINF:2738,,2.5. Return to Cadiz
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D02.%20E04%e2%80%9307.iso#2
-#EXTINF:0,,2.6. K.I.T.T. the Cat
+#EXTINF:2767,,2.6. K.I.T.T. the Cat
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D02.%20E04%e2%80%9307.iso#3
-#EXTINF:0,,2.7. Custom K.I.T.T.
+#EXTINF:2765,,2.7. Custom K.I.T.T.
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D02.%20E04%e2%80%9307.iso#5
-#EXTINF:0,,2.8. Soul Survivor
+#EXTINF:2769,,2.8. Soul Survivor
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D03.%20E08%e2%80%9311.iso#1
-#EXTINF:0,,2.9. Ring of Fire
+#EXTINF:2739,,2.9. Ring of Fire
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D03.%20E08%e2%80%9311.iso#2
-#EXTINF:0,,2.10. Knightmares
+#EXTINF:2764,,2.10. Knightmares
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D03.%20E08%e2%80%9311.iso#3
-#EXTINF:0,,2.11. Silent Knight
+#EXTINF:2681,,2.11. Silent Knight
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D03.%20E08%e2%80%9311.iso#5
-#EXTINF:0,,2.12. A Knight in Shining Armor
+#EXTINF:2771,,2.12. A Knight in Shining Armor
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D04.%20E12%e2%80%9315.iso#1
-#EXTINF:0,,2.13. Diamonds Aren't a Girl's Best Friend
+#EXTINF:2768,,2.13. Diamonds Aren't a Girl's Best Friend
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,2.14. White-Line Warriors
+#EXTINF:2766,,2.14. White-Line Warriors
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,2.15. Race for Life
+#EXTINF:2765,,2.15. Race for Life
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,2.16. Speed Demons
+#EXTINF:2765,,2.16. Speed Demons
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D05.%20E16%e2%80%9318.iso#1
-#EXTINF:0,,2.17. Goliath Returns
+#EXTINF:5553,,2.17. Goliath Returns
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D05.%20E16%e2%80%9318.iso#2
-#EXTINF:0,,2.18. A Good Knight's Work
+#EXTINF:2767,,2.18. A Good Knight's Work
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D05.%20E16%e2%80%9318.iso#3
-#EXTINF:0,,2.19. Mouth of the Snake
+#EXTINF:5518,,2.19. Mouth of the Snake
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D06.%20E19%e2%80%9321.iso#1
-#EXTINF:0,,2.20. Let It Be Me
+#EXTINF:2769,,2.20. Let It Be Me
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D06.%20E19%e2%80%9321.iso#2
-#EXTINF:0,,2.21. Big Iron
+#EXTINF:2766,,2.21. Big Iron
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S02D06.%20E19%e2%80%9321.iso#3
 
-#EXTINF:0,,3.1. Knight of the Drones
+#EXTINF:5538,,3.1. Knight of the Drones
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D01.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,3.2. The Ice Bandits
+#EXTINF:2787,,3.2. The Ice Bandits
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D01.%20E01%e2%80%9303.iso#6
-#EXTINF:0,,3.3. Knights of the Fast Lane
+#EXTINF:2785,,3.3. Knights of the Fast Lane
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D01.%20E01%e2%80%9303.iso#7
-#EXTINF:0,,3.4. Halloween Knight
+#EXTINF:2786,,3.4. Halloween Knight
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D02.%20E04%e2%80%9307.iso#5
-#EXTINF:0,,3.5. K.I.T.T. vs. K.A.R.R.
+#EXTINF:2789,,3.5. K.I.T.T. vs. K.A.R.R.
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D02.%20E04%e2%80%9307.iso#6
-#EXTINF:0,,3.6. The Rotten Apples
+#EXTINF:2785,,3.6. The Rotten Apples
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D02.%20E04%e2%80%9307.iso#7
-#EXTINF:0,,3.7. Knight in Disgrace
+#EXTINF:2785,,3.7. Knight in Disgrace
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D02.%20E04%e2%80%9307.iso#8
-#EXTINF:0,,3.8. Dead of Knight
+#EXTINF:2786,,3.8. Dead of Knight
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D03.%20E08%e2%80%9311.iso#5
-#EXTINF:0,,3.9. Lost Knight
+#EXTINF:2791,,3.9. Lost Knight
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D03.%20E08%e2%80%9311.iso#6
-#EXTINF:0,,3.10. Knight of the Chameleon
+#EXTINF:2785,,3.10. Knight of the Chameleon
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D03.%20E08%e2%80%9311.iso#7
-#EXTINF:0,,3.11. Custom Made Killer
+#EXTINF:2758,,3.11. Custom Made Killer
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D03.%20E08%e2%80%9311.iso#8
-#EXTINF:0,,3.12. Knight by a Nose
+#EXTINF:2785,,3.12. Knight by a Nose
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D04.%20E12%e2%80%9315.iso#5
-#EXTINF:0,,3.13. Junk Yard Dog
+#EXTINF:2775,,3.13. Junk Yard Dog
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D04.%20E12%e2%80%9315.iso#6
-#EXTINF:0,,3.14. Buy Out
+#EXTINF:2783,,3.14. Buy Out
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D04.%20E12%e2%80%9315.iso#7
-#EXTINF:0,,3.15. Knightlines
+#EXTINF:2785,,3.15. Knightlines
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D04.%20E12%e2%80%9315.iso#8
-#EXTINF:0,,3.16. The Nineteenth Hole
+#EXTINF:2785,,3.16. The Nineteenth Hole
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D05.%20E16%e2%80%9318.iso#5
-#EXTINF:0,,3.17. Knight and Knerd
+#EXTINF:2757,,3.17. Knight and Knerd
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D05.%20E16%e2%80%9318.iso#6
-#EXTINF:0,,3.18. Ten Wheel Trouble
+#EXTINF:2780,,3.18. Ten Wheel Trouble
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D05.%20E16%e2%80%9318.iso#7
-#EXTINF:0,,3.19. Knight in Retreat
+#EXTINF:2785,,3.19. Knight in Retreat
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D06.%20E19%e2%80%9321.iso#5
-#EXTINF:0,,3.20. Knight Strike
+#EXTINF:2784,,3.20. Knight Strike
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D06.%20E19%e2%80%9321.iso#6
-#EXTINF:0,,3.21. Circus Knights
+#EXTINF:2787,,3.21. Circus Knights
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S03D06.%20E19%e2%80%9321.iso#7
 
-#EXTINF:0,,4.1. Knight of the Juggernaut
+#EXTINF:5578,,4.1. Knight of the Juggernaut
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D01.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,4.2. KITTnap
+#EXTINF:2778,,4.2. KITTnap
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D01.%20E01%e2%80%9303.iso#6
-#EXTINF:0,,4.3. Sky Knight
+#EXTINF:2782,,4.3. Sky Knight
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D01.%20E01%e2%80%9303.iso#7
-#EXTINF:0,,4.4. Burial Ground
+#EXTINF:2780,,4.4. Burial Ground
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D02.%20E04%e2%80%9307.iso#5
-#EXTINF:0,,4.5. The Wrong Crowd
+#EXTINF:2781,,4.5. The Wrong Crowd
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D02.%20E04%e2%80%9307.iso#6
-#EXTINF:0,,4.6. Knight Sting
+#EXTINF:2779,,4.6. Knight Sting
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D02.%20E04%e2%80%9307.iso#7
-#EXTINF:0,,4.7. Many Happy Returns
+#EXTINF:2782,,4.7. Many Happy Returns
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D02.%20E04%e2%80%9307.iso#8
-#EXTINF:0,,4.8. Knight Racer
+#EXTINF:2781,,4.8. Knight Racer
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D03.%20E08%e2%80%9311.iso#5
-#EXTINF:0,,4.9. Knight Behind Bars
+#EXTINF:2776,,4.9. Knight Behind Bars
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D03.%20E08%e2%80%9311.iso#6
-#EXTINF:0,,4.10. Knight Song
+#EXTINF:2782,,4.10. Knight Song
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D03.%20E08%e2%80%9311.iso#7
-#EXTINF:0,,4.11. The Scent of Roses
+#EXTINF:2780,,4.11. The Scent of Roses
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D03.%20E08%e2%80%9311.iso#8
-#EXTINF:0,,4.12. Killer K.I.T.T.
+#EXTINF:2781,,4.12. Killer K.I.T.T.
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D04.%20E12%e2%80%9315.iso#5
-#EXTINF:0,,4.13. Out of the Woods
+#EXTINF:2781,,4.13. Out of the Woods
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D04.%20E12%e2%80%9315.iso#6
-#EXTINF:0,,4.14. Deadly Knightshade
+#EXTINF:2785,,4.14. Deadly Knightshade
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D04.%20E12%e2%80%9315.iso#7
-#EXTINF:0,,4.15. Redemption of a Champion
+#EXTINF:2786,,4.15. Redemption of a Champion
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D04.%20E12%e2%80%9315.iso#8
-#EXTINF:0,,4.16. Knight of a Thousand Devils
+#EXTINF:2785,,4.16. Knight of a Thousand Devils
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D05.%20E16%e2%80%9319.iso#5
-#EXTINF:0,,4.17. Hills of Fire
+#EXTINF:2785,,4.17. Hills of Fire
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D05.%20E16%e2%80%9319.iso#6
-#EXTINF:0,,4.18. Knight Flight to Freedom
+#EXTINF:2785,,4.18. Knight Flight to Freedom
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D05.%20E16%e2%80%9319.iso#7
-#EXTINF:0,,4.19. Fright Knight
+#EXTINF:2785,,4.19. Fright Knight
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D05.%20E16%e2%80%9319.iso#8
-#EXTINF:0,,4.20. Knight of the Rising Sun
+#EXTINF:2784,,4.20. Knight of the Rising Sun
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D06.%20E20%e2%80%9321.iso#6
-#EXTINF:0,,4.21. Voo Doo Knight
+#EXTINF:2785,,4.21. Voo Doo Knight
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S04D06.%20E20%e2%80%9321.iso#7
 
-#EXTINF:0,,Knight Rider 2000
+#EXTINF:5453,,Knight Rider 2000
 dvd:///mnt/dvd/archive/K/Knight%20Rider/S01D08.%20E21.iso#2
index b1c0c23..a045e7b 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Pilot (part 1)
+#EXTINF:2563,,1.1. Pilot (part 1)
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,1.2. Pilot (part 2)
+#EXTINF:2448,,1.2. Pilot (part 2)
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,1.3. Blood Ties
+#EXTINF:2449,,1.3. Blood Ties
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,1.4. White Knights
+#EXTINF:2429,,1.4. White Knights
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,1.5. Fail-Safe
+#EXTINF:2449,,1.5. Fail-Safe
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,1.6. Star City 2046
+#EXTINF:2447,,1.6. Star City 2046
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,1.7. Marooned
+#EXTINF:2445,,1.7. Marooned
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,1.8. Night of the Hawk
+#EXTINF:2447,,1.8. Night of the Hawk
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,1.9. Left Behind
+#EXTINF:2406,,1.9. Left Behind
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,1.10. Progeny
+#EXTINF:2448,,1.10. Progeny
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,1.11. The Magnificent Eight
+#EXTINF:2422,,1.11. The Magnificent Eight
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,1.12. Last Refuge
+#EXTINF:2446,,1.12. Last Refuge
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,1.13. Leviathan
+#EXTINF:2445,,1.13. Leviathan
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,1.14. River of Time
+#EXTINF:2419,,1.14. River of Time
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,1.15. Destiny
+#EXTINF:2444,,1.15. Destiny
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,1.16. Legendary
+#EXTINF:2505,,1.16. Legendary
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S01D04.%20E13%e2%80%9316.iso#6
 
-#EXTINF:0,,2.1. Out of Time
+#EXTINF:2448,,2.1. Out of Time
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,2.2. The Justice Society of America
+#EXTINF:2430,,2.2. The Justice Society of America
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,2.3. Shogun
+#EXTINF:2446,,2.3. Shogun
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,2.4. Abominations
+#EXTINF:2443,,2.4. Abominations
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,2.5. Compromised
+#EXTINF:2434,,2.5. Compromised
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,2.6. Outlaw Country
+#EXTINF:2397,,2.6. Outlaw Country
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D02.%20E06%e2%80%9309.iso#3
-#EXTINF:0,,2.7. Invasion! (part 3)
+#EXTINF:2446,,2.7. Invasion! (part 3)
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D02.%20E06%e2%80%9309.iso#4
-#EXTINF:0,,2.8. The Chicago Way
+#EXTINF:2443,,2.8. The Chicago Way
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D02.%20E06%e2%80%9309.iso#5
-#EXTINF:0,,2.9. Raiders of the Lost Art
+#EXTINF:2402,,2.9. Raiders of the Lost Art
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D02.%20E06%e2%80%9309.iso#6
-#EXTINF:0,,2.10. The Legion of Doom
+#EXTINF:2444,,2.10. The Legion of Doom
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D03.%20E10%e2%80%9313.iso#3
-#EXTINF:0,,2.11. Turncoat
+#EXTINF:2359,,2.11. Turncoat
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D03.%20E10%e2%80%9313.iso#4
-#EXTINF:0,,2.12. Camelot/3000
+#EXTINF:2431,,2.12. Camelot/3000
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D03.%20E10%e2%80%9313.iso#5
-#EXTINF:0,,2.13. Land of the Lost
+#EXTINF:2438,,2.13. Land of the Lost
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D03.%20E10%e2%80%9313.iso#6
-#EXTINF:0,,2.14. Moonshot
+#EXTINF:2443,,2.14. Moonshot
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D04.%20E14%e2%80%9317.iso#3
-#EXTINF:0,,2.15. Fellowship of the Spear
+#EXTINF:2388,,2.15. Fellowship of the Spear
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D04.%20E14%e2%80%9317.iso#4
-#EXTINF:0,,2.16. Doomworld
+#EXTINF:2442,,2.16. Doomworld
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D04.%20E14%e2%80%9317.iso#5
-#EXTINF:0,,2.17. Aruba
+#EXTINF:2393,,2.17. Aruba
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S02D04.%20E14%e2%80%9317.iso#6
 
-#EXTINF:0,,3.1. Aruba-Con
+#EXTINF:2445,,3.1. Aruba-Con
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,3.2. Freakshow
+#EXTINF:2447,,3.2. Freakshow
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,3.3. Zari
+#EXTINF:2437,,3.3. Zari
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,3.4. Phone Home
+#EXTINF:2447,,3.4. Phone Home
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,3.5. Return of the Mack
+#EXTINF:2429,,3.5. Return of the Mack
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,3.6. Helen Hunt
+#EXTINF:2447,,3.6. Helen Hunt
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D02.%20E06%e2%80%9309.iso#3
-#EXTINF:0,,3.7. Welcome to the Jungle
+#EXTINF:2430,,3.7. Welcome to the Jungle
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D02.%20E06%e2%80%9309.iso#4
-#EXTINF:0,,3.8. Crisis on Earth-X (part 4)
+#EXTINF:2440,,3.8. Crisis on Earth-X (part 4)
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D02.%20E06%e2%80%9309.iso#5
-#EXTINF:0,,3.9. Beebo the God of War
+#EXTINF:2446,,3.9. Beebo the God of War
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D02.%20E06%e2%80%9309.iso#6
-#EXTINF:0,,3.10. Daddy Darhkest
+#EXTINF:2444,,3.10. Daddy Darhkest
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D03.%20E10%e2%80%9314.iso#3
-#EXTINF:0,,3.11. Here I Go Again
+#EXTINF:2446,,3.11. Here I Go Again
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D03.%20E10%e2%80%9314.iso#4
-#EXTINF:0,,3.12. The Curse of the Earth Totem
+#EXTINF:2447,,3.12. The Curse of the Earth Totem
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D03.%20E10%e2%80%9314.iso#5
-#EXTINF:0,,3.13. No Country for Old Dads
+#EXTINF:2446,,3.13. No Country for Old Dads
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D03.%20E10%e2%80%9314.iso#6
-#EXTINF:0,,3.14. Amazing Grace
+#EXTINF:2447,,3.14. Amazing Grace
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D03.%20E10%e2%80%9314.iso#7
-#EXTINF:0,,3.15. Necromancing the Stone
+#EXTINF:2445,,3.15. Necromancing the Stone
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D04.%20E15%e2%80%9318.iso#3
-#EXTINF:0,,3.16. I, Ava
+#EXTINF:2445,,3.16. I, Ava
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D04.%20E15%e2%80%9318.iso#4
-#EXTINF:0,,3.17. Guest Starring John Noble
+#EXTINF:2447,,3.17. Guest Starring John Noble
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D04.%20E15%e2%80%9318.iso#5
-#EXTINF:0,,3.18. The Good, the Bad and the Cuddly
+#EXTINF:2419,,3.18. The Good, the Bad and the Cuddly
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S03D04.%20E15%e2%80%9318.iso#6
 
-#EXTINF:0,,4.1. The Virgin Gary
+#EXTINF:2448,,4.1. The Virgin Gary
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,4.2. Witch Hunt
+#EXTINF:2430,,4.2. Witch Hunt
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,4.3. Dancing Queen
+#EXTINF:2446,,4.3. Dancing Queen
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,4.4. Wet Hot American Bummer
+#EXTINF:2440,,4.4. Wet Hot American Bummer
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,4.5. Tagumo Attacks!!!
+#EXTINF:2446,,4.5. Tagumo Attacks!!!
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,4.6. Tender Is the Nate
+#EXTINF:2446,,4.6. Tender Is the Nate
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D02.%20E06%e2%80%9311.iso#3
-#EXTINF:0,,4.7. Hell No, Dolly!
+#EXTINF:2446,,4.7. Hell No, Dolly!
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D02.%20E06%e2%80%9311.iso#4
-#EXTINF:0,,4.8. Legends of To-Meow-Meow
+#EXTINF:2445,,4.8. Legends of To-Meow-Meow
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D02.%20E06%e2%80%9311.iso#5
-#EXTINF:0,,4.9. Lucha de apuestas
+#EXTINF:2446,,4.9. Lucha de apuestas
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D02.%20E06%e2%80%9311.iso#6
-#EXTINF:0,,4.10. The Getaway
+#EXTINF:2446,,4.10. The Getaway
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D02.%20E06%e2%80%9311.iso#7
-#EXTINF:0,,4.11. Séance and Sensibility
+#EXTINF:2449,,4.11. Séance and Sensibility
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D02.%20E06%e2%80%9311.iso#8
-#EXTINF:0,,4.12. The Eggplant, the Witch & the Wardrobe
+#EXTINF:2446,,4.12. The Eggplant, the Witch & the Wardrobe
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D03.%20E12%e2%80%9316.iso#3
-#EXTINF:0,,4.13. Egg MacGuffin
+#EXTINF:2444,,4.13. Egg MacGuffin
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D03.%20E12%e2%80%9316.iso#4
-#EXTINF:0,,4.14. Nip/Stuck
+#EXTINF:2411,,4.14. Nip/Stuck
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D03.%20E12%e2%80%9316.iso#5
-#EXTINF:0,,4.15. Terms of Service
+#EXTINF:2395,,4.15. Terms of Service
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D03.%20E12%e2%80%9316.iso#6
-#EXTINF:0,,4.16. Hey, World!
+#EXTINF:2444,,4.16. Hey, World!
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S04D03.%20E12%e2%80%9316.iso#7
 
-#EXTINF:0,,5.1. Crisis on Infinite Earths (part 5)
+#EXTINF:2442,,5.1. Crisis on Infinite Earths (part 5)
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,5.2. Meet the Legends
+#EXTINF:2444,,5.2. Meet the Legends
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,5.3. Miss Me, Kiss Me, Love Me
+#EXTINF:2437,,5.3. Miss Me, Kiss Me, Love Me
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,5.4. Slay Anything
+#EXTINF:2440,,5.4. Slay Anything
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,5.5. A Head of Her Time
+#EXTINF:2446,,5.5. A Head of Her Time
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,5.6. Mortal Khanbat
+#EXTINF:2445,,5.6. Mortal Khanbat
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,5.7. Mr. Parker's Cul-de-sac
+#EXTINF:2445,,5.7. Mr. Parker's Cul-de-sac
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,5.8. Romeo v. Juliet: Dawn of Justness
+#EXTINF:2446,,5.8. Romeo v. Juliet: Dawn of Justness
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,5.9. Zari, Not Zari
+#EXTINF:2434,,5.9. Zari, Not Zari
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,5.10. The Great British Fake Off
+#EXTINF:2446,,5.10. The Great British Fake Off
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D02.%20E06%e2%80%9310.iso#7
-#EXTINF:0,,5.11. Ship Broken
+#EXTINF:2445,,5.11. Ship Broken
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,5.12. Freaks and Greeks
+#EXTINF:2440,,5.12. Freaks and Greeks
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,5.13. I Am Legends
+#EXTINF:2445,,5.13. I Am Legends
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,5.14. The One Where We're Trapped on TV
+#EXTINF:2435,,5.14. The One Where We're Trapped on TV
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D03.%20E11%e2%80%9315.iso#6
-#EXTINF:0,,5.15. Swan Thong
+#EXTINF:2444,,5.15. Swan Thong
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S05D03.%20E11%e2%80%9315.iso#7
 
-#EXTINF:0,,6.1. Ground Control to Sara Lance
+#EXTINF:2442,,6.1. Ground Control to Sara Lance
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D01.%20E01%e2%80%9305.iso#2
-#EXTINF:0,,6.2. Meat: The Legends
+#EXTINF:2428,,6.2. Meat: The Legends
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,6.3. The Ex-Factor
+#EXTINF:2435,,6.3. The Ex-Factor
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,6.4. Bay of Squids
+#EXTINF:2439,,6.4. Bay of Squids
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,6.5. The Satanist's Apprentice
+#EXTINF:2444,,6.5. The Satanist's Apprentice
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,6.6. Bishop's Gambit
+#EXTINF:2443,,6.6. Bishop's Gambit
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D02.%20E06%e2%80%9310.iso#2
-#EXTINF:0,,6.7. Back to the Finale: Part II
+#EXTINF:2444,,6.7. Back to the Finale: Part II
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,6.8. Stressed Western
+#EXTINF:2435,,6.8. Stressed Western
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,6.9. This Is Gus
+#EXTINF:2424,,6.9. This Is Gus
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,6.10. Bad Blood
+#EXTINF:2444,,6.10. Bad Blood
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,6.11. The Final Frame
+#EXTINF:2428,,6.11. The Final Frame
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D03.%20E11%e2%80%9315.iso#2
-#EXTINF:0,,6.12. Bored on Board Onboard
+#EXTINF:2445,,6.12. Bored on Board Onboard
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,6.13. Silence of the Sonograms
+#EXTINF:2446,,6.13. Silence of the Sonograms
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,6.14. There Will Be Brood
+#EXTINF:2442,,6.14. There Will Be Brood
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,6.15. The Fungus Amongus
+#EXTINF:2446,,6.15. The Fungus Amongus
 dvd:///mnt/dvd/archive/L/Legends%20of%20Tomorrow/S06D03.%20E11%e2%80%9315.iso#6
index f28af50..e590010 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. I Worship His Shadow
+#EXTINF:5358,,1.1. I Worship His Shadow
 dvd:///mnt/dvd/archive/L/Lexx/S01D01.%20E01.iso#1
-#EXTINF:0,,1.2. Super Nova
+#EXTINF:5376,,1.2. Super Nova
 dvd:///mnt/dvd/archive/L/Lexx/S01D02.%20E02.iso#1
-#EXTINF:0,,1.3. Eating Pattern
+#EXTINF:5428,,1.3. Eating Pattern
 dvd:///mnt/dvd/archive/L/Lexx/S01D03.%20E03.iso#1
-#EXTINF:0,,1.4. Giga Shadow
+#EXTINF:5348,,1.4. Giga Shadow
 dvd:///mnt/dvd/archive/L/Lexx/S01D04.%20E04.iso#1
 
-#EXTINF:0,,2.1. Mantrid
+#EXTINF:2871,,2.1. Mantrid
 dvd:///mnt/dvd/archive/L/Lexx/S02D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,2.2. Terminal
+#EXTINF:2753,,2.2. Terminal
 dvd:///mnt/dvd/archive/L/Lexx/S02D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,2.3. Lyekka
+#EXTINF:2754,,2.3. Lyekka
 dvd:///mnt/dvd/archive/L/Lexx/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,2.4. Luvliner
+#EXTINF:2754,,2.4. Luvliner
 dvd:///mnt/dvd/archive/L/Lexx/S02D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,2.5. Lafftrak
+#EXTINF:2754,,2.5. Lafftrak
 dvd:///mnt/dvd/archive/L/Lexx/S02D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,2.6. Stan's Trial
+#EXTINF:2754,,2.6. Stan's Trial
 dvd:///mnt/dvd/archive/L/Lexx/S02D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,2.7. Love Grows
+#EXTINF:2754,,2.7. Love Grows
 dvd:///mnt/dvd/archive/L/Lexx/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,2.8. White Trash
+#EXTINF:2754,,2.8. White Trash
 dvd:///mnt/dvd/archive/L/Lexx/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.9. 791
+#EXTINF:2755,,2.9. 791
 dvd:///mnt/dvd/archive/L/Lexx/S02D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,2.10. Wake the Dead
+#EXTINF:2872,,2.10. Wake the Dead
 dvd:///mnt/dvd/archive/L/Lexx/S02D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,2.11. Nook
+#EXTINF:2754,,2.11. Nook
 dvd:///mnt/dvd/archive/L/Lexx/S02D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,2.12. Norb
+#EXTINF:2754,,2.12. Norb
 dvd:///mnt/dvd/archive/L/Lexx/S02D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,2.13. Twilight
+#EXTINF:2872,,2.13. Twilight
 dvd:///mnt/dvd/archive/L/Lexx/S02D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,2.14. Patches in the Sky
+#EXTINF:2754,,2.14. Patches in the Sky
 dvd:///mnt/dvd/archive/L/Lexx/S02D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,2.15. Woz
+#EXTINF:2754,,2.15. Woz
 dvd:///mnt/dvd/archive/L/Lexx/S02D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,2.16. The Web
+#EXTINF:2755,,2.16. The Web
 dvd:///mnt/dvd/archive/L/Lexx/S02D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,2.17. The Net
+#EXTINF:2753,,2.17. The Net
 dvd:///mnt/dvd/archive/L/Lexx/S02D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,2.18. Brigadoom
+#EXTINF:2753,,2.18. Brigadoom
 dvd:///mnt/dvd/archive/L/Lexx/S02D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,2.19. Brizon
+#EXTINF:2753,,2.19. Brizon
 dvd:///mnt/dvd/archive/L/Lexx/S02D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,2.20. End of the Universe
+#EXTINF:2871,,2.20. End of the Universe
 dvd:///mnt/dvd/archive/L/Lexx/S02D05.%20E17%e2%80%9320.iso#4
 
-#EXTINF:0,,3.1. Fire and Water
+#EXTINF:2873,,3.1. Fire and Water
 dvd:///mnt/dvd/archive/L/Lexx/S03D01.%20E01%e2%80%9303.iso#1
-#EXTINF:0,,3.2. May
+#EXTINF:2811,,3.2. May
 dvd:///mnt/dvd/archive/L/Lexx/S03D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,3.3. Gametown
+#EXTINF:2811,,3.3. Gametown
 dvd:///mnt/dvd/archive/L/Lexx/S03D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,3.4. Boomtown
+#EXTINF:2751,,3.4. Boomtown
 dvd:///mnt/dvd/archive/L/Lexx/S03D02.%20E04%e2%80%9306.iso#1
-#EXTINF:0,,3.5. Gondola
+#EXTINF:2801,,3.5. Gondola
 dvd:///mnt/dvd/archive/L/Lexx/S03D02.%20E04%e2%80%9306.iso#2
-#EXTINF:0,,3.6. K-Town
+#EXTINF:2811,,3.6. K-Town
 dvd:///mnt/dvd/archive/L/Lexx/S03D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,3.7. Tunnels
+#EXTINF:2752,,3.7. Tunnels
 dvd:///mnt/dvd/archive/L/Lexx/S03D03.%20E07%e2%80%9309.iso#1
-#EXTINF:0,,3.8. The Key
+#EXTINF:2811,,3.8. The Key
 dvd:///mnt/dvd/archive/L/Lexx/S03D03.%20E07%e2%80%9309.iso#2
-#EXTINF:0,,3.9. Garden
+#EXTINF:2751,,3.9. Garden
 dvd:///mnt/dvd/archive/L/Lexx/S03D03.%20E07%e2%80%9309.iso#3
-#EXTINF:0,,3.10. Battle
+#EXTINF:2751,,3.10. Battle
 dvd:///mnt/dvd/archive/L/Lexx/S03D04.%20E10%e2%80%9313.iso#1
-#EXTINF:0,,3.11. Girltown
+#EXTINF:2751,,3.11. Girltown
 dvd:///mnt/dvd/archive/L/Lexx/S03D04.%20E10%e2%80%9313.iso#2
-#EXTINF:0,,3.12. The Beach
+#EXTINF:2750,,3.12. The Beach
 dvd:///mnt/dvd/archive/L/Lexx/S03D04.%20E10%e2%80%9313.iso#3
-#EXTINF:0,,3.13. Heaven & Hell
+#EXTINF:2751,,3.13. Heaven & Hell
 dvd:///mnt/dvd/archive/L/Lexx/S03D04.%20E10%e2%80%9313.iso#5
 
-#EXTINF:0,,4.1. Little Blue Planet
+#EXTINF:2714,,4.1. Little Blue Planet
 dvd:///mnt/dvd/archive/L/Lexx/S04D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,4.2. Texx Lexx
+#EXTINF:2713,,4.2. Texx Lexx
 dvd:///mnt/dvd/archive/L/Lexx/S04D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,4.3. P4X
+#EXTINF:2698,,4.3. P4X
 dvd:///mnt/dvd/archive/L/Lexx/S04D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,4.4. Stan Down
+#EXTINF:2697,,4.4. Stan Down
 dvd:///mnt/dvd/archive/L/Lexx/S04D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,4.5. Xevivor
+#EXTINF:2713,,4.5. Xevivor
 dvd:///mnt/dvd/archive/L/Lexx/S04D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,4.6. The Rock
+#EXTINF:2713,,4.6. The Rock
 dvd:///mnt/dvd/archive/L/Lexx/S04D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,4.7. Walpurgis Night
+#EXTINF:2713,,4.7. Walpurgis Night
 dvd:///mnt/dvd/archive/L/Lexx/S04D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,4.8. Vlad
+#EXTINF:2713,,4.8. Vlad
 dvd:///mnt/dvd/archive/L/Lexx/S04D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,4.9. Fluff Daddy
+#EXTINF:2777,,4.9. Fluff Daddy
 dvd:///mnt/dvd/archive/L/Lexx/S04D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,4.10. Magic Baby
+#EXTINF:2567,,4.10. Magic Baby
 dvd:///mnt/dvd/archive/L/Lexx/S04D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,4.11. A Midsummer's Nightmare
+#EXTINF:2656,,4.11. A Midsummer's Nightmare
 dvd:///mnt/dvd/archive/L/Lexx/S04D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,4.12. Bad Carrot
+#EXTINF:2717,,4.12. Bad Carrot
 dvd:///mnt/dvd/archive/L/Lexx/S04D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,4.13. 769
+#EXTINF:2672,,4.13. 769
 dvd:///mnt/dvd/archive/L/Lexx/S04D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,4.14. Prime Ridge
+#EXTINF:2713,,4.14. Prime Ridge
 dvd:///mnt/dvd/archive/L/Lexx/S04D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,4.15. Mort
+#EXTINF:2713,,4.15. Mort
 dvd:///mnt/dvd/archive/L/Lexx/S04D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,4.16. Moss
+#EXTINF:2712,,4.16. Moss
 dvd:///mnt/dvd/archive/L/Lexx/S04D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,4.17. Dutch Treat
+#EXTINF:2687,,4.17. Dutch Treat
 dvd:///mnt/dvd/archive/L/Lexx/S04D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,4.18. The Game
+#EXTINF:2711,,4.18. The Game
 dvd:///mnt/dvd/archive/L/Lexx/S04D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,4.19. Haley's Comet
+#EXTINF:2681,,4.19. Haley's Comet
 dvd:///mnt/dvd/archive/L/Lexx/S04D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,4.20. Apocalexx Now
+#EXTINF:2682,,4.20. Apocalexx Now
 dvd:///mnt/dvd/archive/L/Lexx/S04D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,4.21. Viva Lexx Vegas
+#EXTINF:2711,,4.21. Viva Lexx Vegas
 dvd:///mnt/dvd/archive/L/Lexx/S04D06.%20E21%e2%80%9324.iso#1
-#EXTINF:0,,4.22. Trip
+#EXTINF:2713,,4.22. Trip
 dvd:///mnt/dvd/archive/L/Lexx/S04D06.%20E21%e2%80%9324.iso#2
-#EXTINF:0,,4.23. Lyekka vs Japan
+#EXTINF:2714,,4.23. Lyekka vs Japan
 dvd:///mnt/dvd/archive/L/Lexx/S04D06.%20E21%e2%80%9324.iso#3
-#EXTINF:0,,4.24. Yo Way Yo
+#EXTINF:2713,,4.24. Yo Way Yo
 dvd:///mnt/dvd/archive/L/Lexx/S04D06.%20E21%e2%80%9324.iso#4
index 39d8859..b333dd0 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Pilot
+#EXTINF:5324,,1.1. Pilot
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D01.%20E01%e2%80%9302.iso#2
-#EXTINF:0,,1.2. Strange Visitor (from Another Planet)
+#EXTINF:2630,,1.2. Strange Visitor (from Another Planet)
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D01.%20E01%e2%80%9302.iso#3
-#EXTINF:0,,1.3. Neverending Battle
+#EXTINF:2685,,1.3. Neverending Battle
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D02.%20E03%e2%80%9306.iso#2
-#EXTINF:0,,1.4. I'm Looking Through You
+#EXTINF:2690,,1.4. I'm Looking Through You
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D02.%20E03%e2%80%9306.iso#3
-#EXTINF:0,,1.5. Requiem for a Super Hero
+#EXTINF:2585,,1.5. Requiem for a Super Hero
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D02.%20E03%e2%80%9306.iso#4
-#EXTINF:0,,1.6. I've Got a Crush on You
+#EXTINF:2621,,1.6. I've Got a Crush on You
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D02.%20E03%e2%80%9306.iso#5
-#EXTINF:0,,1.7. Smart Kids
+#EXTINF:2633,,1.7. Smart Kids
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D03.%20E07%e2%80%9310.iso#2
-#EXTINF:0,,1.8. The Green, Green Glow of Home
+#EXTINF:2687,,1.8. The Green, Green Glow of Home
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D03.%20E07%e2%80%9310.iso#3
-#EXTINF:0,,1.9. The Man of Steel Bars
+#EXTINF:2686,,1.9. The Man of Steel Bars
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D03.%20E07%e2%80%9310.iso#4
-#EXTINF:0,,1.10. Pheromone, My Lovely
+#EXTINF:2688,,1.10. Pheromone, My Lovely
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D03.%20E07%e2%80%9310.iso#5
-#EXTINF:0,,1.11. Honeymoon in Metropolis
+#EXTINF:2689,,1.11. Honeymoon in Metropolis
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D04.%20E11%e2%80%9314.iso#2
-#EXTINF:0,,1.12. All Shook Up
+#EXTINF:2688,,1.12. All Shook Up
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D04.%20E11%e2%80%9314.iso#3
-#EXTINF:0,,1.13. Witness
+#EXTINF:2658,,1.13. Witness
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D04.%20E11%e2%80%9314.iso#4
-#EXTINF:0,,1.14. Illusions of Grandeur
+#EXTINF:2662,,1.14. Illusions of Grandeur
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D04.%20E11%e2%80%9314.iso#5
-#EXTINF:0,,1.15. The Ides of Metropolis
+#EXTINF:2690,,1.15. The Ides of Metropolis
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D05.%20E15%e2%80%9318.iso#2
-#EXTINF:0,,1.16. The Foundling
+#EXTINF:2684,,1.16. The Foundling
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D05.%20E15%e2%80%9318.iso#3
-#EXTINF:0,,1.17. The Rival
+#EXTINF:2660,,1.17. The Rival
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D05.%20E15%e2%80%9318.iso#4
-#EXTINF:0,,1.18. Vatman
+#EXTINF:2690,,1.18. Vatman
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D05.%20E15%e2%80%9318.iso#5
-#EXTINF:0,,1.19. Fly Hard
+#EXTINF:2660,,1.19. Fly Hard
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D06.%20E19%e2%80%9321.iso#2
-#EXTINF:0,,1.20. Barbarians at the Planet
+#EXTINF:2690,,1.20. Barbarians at the Planet
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D06.%20E19%e2%80%9321.iso#3
-#EXTINF:0,,1.21. The House of Luthor
+#EXTINF:2693,,1.21. The House of Luthor
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S01D06.%20E19%e2%80%9321.iso#4
 
-#EXTINF:0,,2.1. Madame Ex
+#EXTINF:2576,,2.1. Madame Ex
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,2.2. Wall of Sound
+#EXTINF:2631,,2.2. Wall of Sound
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,2.3. The Source
+#EXTINF:2658,,2.3. The Source
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.4. The Prankster
+#EXTINF:2653,,2.4. The Prankster
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,2.5. Church of Metropolis
+#EXTINF:2657,,2.5. Church of Metropolis
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,2.6. Operation Blackout
+#EXTINF:2604,,2.6. Operation Blackout
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,2.7. That Old Gang of Mine
+#EXTINF:2631,,2.7. That Old Gang of Mine
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.8. A Bolt From the Blue
+#EXTINF:2657,,2.8. A Bolt From the Blue
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,2.9. Season's Greedings
+#EXTINF:2656,,2.9. Season's Greedings
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,2.10. Metallo
+#EXTINF:2653,,2.10. Metallo
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,2.11. Chi of Steel
+#EXTINF:2655,,2.11. Chi of Steel
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D03.%20E09%e2%80%9311.iso#4
-#EXTINF:0,,2.12. The Eyes Have It
+#EXTINF:2657,,2.12. The Eyes Have It
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D04.%20E12%e2%80%9315.iso#2
-#EXTINF:0,,2.13. The Phoenix
+#EXTINF:2658,,2.13. The Phoenix
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,2.14. Top Copy
+#EXTINF:2598,,2.14. Top Copy
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,2.15. Return of the Prankster
+#EXTINF:2657,,2.15. Return of the Prankster
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D04.%20E12%e2%80%9315.iso#5
-#EXTINF:0,,2.16. Lucky Leon
+#EXTINF:2655,,2.16. Lucky Leon
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,2.17. Resurrection
+#EXTINF:2659,,2.17. Resurrection
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,2.18. Tempus Fugitive
+#EXTINF:2655,,2.18. Tempus Fugitive
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,2.19. Target: Jimmy Olsen!
+#EXTINF:2564,,2.19. Target: Jimmy Olsen!
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D05.%20E16%e2%80%9319.iso#5
-#EXTINF:0,,2.20. Individual Responsibility
+#EXTINF:2629,,2.20. Individual Responsibility
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,2.21. Whine, Whine, Whine
+#EXTINF:2658,,2.21. Whine, Whine, Whine
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D06.%20E20%e2%80%9322.iso#3
-#EXTINF:0,,2.22. And the Answer Is…
+#EXTINF:2650,,2.22. And the Answer Is…
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S02D06.%20E20%e2%80%9322.iso#4
 
-#EXTINF:0,,3.1. We Have a Lot to Talk About
+#EXTINF:2643,,3.1. We Have a Lot to Talk About
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,3.2. Ordinary People
+#EXTINF:2673,,3.2. Ordinary People
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,3.3. Contact
+#EXTINF:2672,,3.3. Contact
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,3.4. When Irish Eyes Are Killing
+#EXTINF:2674,,3.4. When Irish Eyes Are Killing
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,3.5. Just Say Noah
+#EXTINF:2690,,3.5. Just Say Noah
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,3.6. Don't Tug on Superman's Cape
+#EXTINF:2666,,3.6. Don't Tug on Superman's Cape
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,3.7. Ultra Woman
+#EXTINF:2653,,3.7. Ultra Woman
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,3.8. Chip Off the Old Clark
+#EXTINF:2677,,3.8. Chip Off the Old Clark
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,3.9. Super Mann
+#EXTINF:2581,,3.9. Super Mann
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,3.10. Virtually Destroyed
+#EXTINF:2649,,3.10. Virtually Destroyed
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,3.11. Home Is Where the Hurt Is
+#EXTINF:2652,,3.11. Home Is Where the Hurt Is
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,3.12. Never on Sunday
+#EXTINF:2618,,3.12. Never on Sunday
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,3.13. The Dad Who Came In From the Cold
+#EXTINF:2638,,3.13. The Dad Who Came In From the Cold
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,3.14. Tempus, Anyone?
+#EXTINF:2631,,3.14. Tempus, Anyone?
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,3.15. I Now Pronounce You…
+#EXTINF:2652,,3.15. I Now Pronounce You…
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,3.16. Double Jeopardy
+#EXTINF:2611,,3.16. Double Jeopardy
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,3.17. Seconds
+#EXTINF:2607,,3.17. Seconds
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,3.18. Forget Me Not
+#EXTINF:2612,,3.18. Forget Me Not
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,3.19. Oedipus Wrecks
+#EXTINF:2586,,3.19. Oedipus Wrecks
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,3.20. It's a Small World After All
+#EXTINF:2647,,3.20. It's a Small World After All
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,3.21. Through a Glass, Darkly
+#EXTINF:2595,,3.21. Through a Glass, Darkly
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D06.%20E21%e2%80%9322.iso#2
-#EXTINF:0,,3.22. Big Girls Don't Fly
+#EXTINF:2675,,3.22. Big Girls Don't Fly
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S03D06.%20E21%e2%80%9322.iso#3
 
-#EXTINF:0,,4.1. Lord of the Flys
+#EXTINF:2649,,4.1. Lord of the Flys
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,4.2. Battleground Earth
+#EXTINF:2598,,4.2. Battleground Earth
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,4.3. Swear to God, This Time We're Not Kidding
+#EXTINF:2653,,4.3. Swear to God, This Time We're Not Kidding
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,4.4. Soul Mates
+#EXTINF:2621,,4.4. Soul Mates
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,4.5. Brutal Youth
+#EXTINF:2653,,4.5. Brutal Youth
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,4.6. The People vs. Lois Lane
+#EXTINF:2653,,4.6. The People vs. Lois Lane
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,4.7. Dead Lois Walking
+#EXTINF:2623,,4.7. Dead Lois Walking
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,4.8. Bob and Carol and Lois and Clark
+#EXTINF:2619,,4.8. Bob and Carol and Lois and Clark
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,4.9. Ghosts
+#EXTINF:2593,,4.9. Ghosts
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,4.10. Stop the Presses
+#EXTINF:2649,,4.10. Stop the Presses
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,4.11. 'Twas the Night Before Mxymas
+#EXTINF:2650,,4.11. 'Twas the Night Before Mxymas
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,4.12. Lethal Weapon
+#EXTINF:2650,,4.12. Lethal Weapon
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,4.13. Sex, Lies and Videotape
+#EXTINF:2652,,4.13. Sex, Lies and Videotape
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,4.14. Meet John Doe
+#EXTINF:2653,,4.14. Meet John Doe
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,4.15. Lois and Clarks
+#EXTINF:2657,,4.15. Lois and Clarks
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,4.16. … aka Superman
+#EXTINF:2653,,4.16. … aka Superman
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,4.17. Faster than a Speeding Vixen
+#EXTINF:2651,,4.17. Faster than a Speeding Vixen
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,4.18. Shadow of a Doubt
+#EXTINF:2649,,4.18. Shadow of a Doubt
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,4.19. Voice from the Past
+#EXTINF:2591,,4.19. Voice from the Past
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,4.20. I've Got You Under My Skin
+#EXTINF:2536,,4.20. I've Got You Under My Skin
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,4.21. Toy Story
+#EXTINF:2537,,4.21. Toy Story
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D06.%20E21%e2%80%9322.iso#2
-#EXTINF:0,,4.22. The Family Hour
+#EXTINF:2536,,4.22. The Family Hour
 dvd:///mnt/dvd/archive/L/Lois%20and%20Clark%e2%80%94The%20New%20Adventures%20of%20Superman/S04D06.%20E21%e2%80%9322.iso#3
index 6351a2f..8a02f85 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Pilot
+#EXTINF:2894,,1.1. Pilot
 dvd:///mnt/dvd/archive/M/MacGyver/S01D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,1.2. The Golden Triangle
+#EXTINF:2778,,1.2. The Golden Triangle
 dvd:///mnt/dvd/archive/M/MacGyver/S01D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,1.3. Thief of Budapest
+#EXTINF:2625,,1.3. Thief of Budapest
 dvd:///mnt/dvd/archive/M/MacGyver/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,1.4. The Gauntlet
+#EXTINF:2778,,1.4. The Gauntlet
 dvd:///mnt/dvd/archive/M/MacGyver/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,1.5. The Heist
+#EXTINF:2760,,1.5. The Heist
 dvd:///mnt/dvd/archive/M/MacGyver/S01D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,1.6. Trumbo's World
+#EXTINF:2782,,1.6. Trumbo's World
 dvd:///mnt/dvd/archive/M/MacGyver/S01D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,1.7. Last Stand
+#EXTINF:2759,,1.7. Last Stand
 dvd:///mnt/dvd/archive/M/MacGyver/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,1.8. Hellfire
+#EXTINF:2770,,1.8. Hellfire
 dvd:///mnt/dvd/archive/M/MacGyver/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,1.9. The Prodigal
+#EXTINF:2742,,1.9. The Prodigal
 dvd:///mnt/dvd/archive/M/MacGyver/S01D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,1.10. Target MacGyver
+#EXTINF:2674,,1.10. Target MacGyver
 dvd:///mnt/dvd/archive/M/MacGyver/S01D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,1.11. Nightmares
+#EXTINF:2790,,1.11. Nightmares
 dvd:///mnt/dvd/archive/M/MacGyver/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,1.12. Deathlock
+#EXTINF:2712,,1.12. Deathlock
 dvd:///mnt/dvd/archive/M/MacGyver/S01D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,1.13. Flame's End
+#EXTINF:2757,,1.13. Flame's End
 dvd:///mnt/dvd/archive/M/MacGyver/S01D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,1.14. Countdown
+#EXTINF:2811,,1.14. Countdown
 dvd:///mnt/dvd/archive/M/MacGyver/S01D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,1.15. The Enemy Within
+#EXTINF:2824,,1.15. The Enemy Within
 dvd:///mnt/dvd/archive/M/MacGyver/S01D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,1.16. Every Time She Smiles
+#EXTINF:2763,,1.16. Every Time She Smiles
 dvd:///mnt/dvd/archive/M/MacGyver/S01D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,1.17. To Be a Man
+#EXTINF:2829,,1.17. To Be a Man
 dvd:///mnt/dvd/archive/M/MacGyver/S01D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,1.18. Ugly Duckling
+#EXTINF:2774,,1.18. Ugly Duckling
 dvd:///mnt/dvd/archive/M/MacGyver/S01D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,1.19. Slow Death
+#EXTINF:2788,,1.19. Slow Death
 dvd:///mnt/dvd/archive/M/MacGyver/S01D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,1.20. The Escape
+#EXTINF:2895,,1.20. The Escape
 dvd:///mnt/dvd/archive/M/MacGyver/S01D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,1.21. A Prisoner of Conscience
+#EXTINF:2722,,1.21. A Prisoner of Conscience
 dvd:///mnt/dvd/archive/M/MacGyver/S01D06.%20E21%e2%80%9322.iso#1
-#EXTINF:0,,1.22. The Assassin
+#EXTINF:2643,,1.22. The Assassin
 dvd:///mnt/dvd/archive/M/MacGyver/S01D06.%20E21%e2%80%9322.iso#2
 
-#EXTINF:0,,2.1. The Human Factor
+#EXTINF:2713,,2.1. The Human Factor
 dvd:///mnt/dvd/archive/M/MacGyver/S02D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,2.2. The Eraser
+#EXTINF:2767,,2.2. The Eraser
 dvd:///mnt/dvd/archive/M/MacGyver/S02D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,2.3. Twice Stung
+#EXTINF:2765,,2.3. Twice Stung
 dvd:///mnt/dvd/archive/M/MacGyver/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,2.4. The Wish Child
+#EXTINF:2771,,2.4. The Wish Child
 dvd:///mnt/dvd/archive/M/MacGyver/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.5. Final Approach
+#EXTINF:2747,,2.5. Final Approach
 dvd:///mnt/dvd/archive/M/MacGyver/S02D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,2.6. Jack of Lies
+#EXTINF:2737,,2.6. Jack of Lies
 dvd:///mnt/dvd/archive/M/MacGyver/S02D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,2.7. The Road Not Taken
+#EXTINF:2770,,2.7. The Road Not Taken
 dvd:///mnt/dvd/archive/M/MacGyver/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,2.8. Eagles
+#EXTINF:2709,,2.8. Eagles
 dvd:///mnt/dvd/archive/M/MacGyver/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.9. Silent World
+#EXTINF:2719,,2.9. Silent World
 dvd:///mnt/dvd/archive/M/MacGyver/S02D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,2.10. Three for the Road
+#EXTINF:2667,,2.10. Three for the Road
 dvd:///mnt/dvd/archive/M/MacGyver/S02D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,2.11. Phoenix Under Siege
+#EXTINF:2770,,2.11. Phoenix Under Siege
 dvd:///mnt/dvd/archive/M/MacGyver/S02D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,2.12. Family Matter
+#EXTINF:2769,,2.12. Family Matter
 dvd:///mnt/dvd/archive/M/MacGyver/S02D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,2.13. Soft Touch
+#EXTINF:2746,,2.13. Soft Touch
 dvd:///mnt/dvd/archive/M/MacGyver/S02D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,2.14. Birth Day
+#EXTINF:2742,,2.14. Birth Day
 dvd:///mnt/dvd/archive/M/MacGyver/S02D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,2.15. Pirates
+#EXTINF:2767,,2.15. Pirates
 dvd:///mnt/dvd/archive/M/MacGyver/S02D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,2.16. Out in the Cold
+#EXTINF:2734,,2.16. Out in the Cold
 dvd:///mnt/dvd/archive/M/MacGyver/S02D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,2.17. Dalton, Jack of Spies
+#EXTINF:2727,,2.17. Dalton, Jack of Spies
 dvd:///mnt/dvd/archive/M/MacGyver/S02D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,2.18. Partners
+#EXTINF:2680,,2.18. Partners
 dvd:///mnt/dvd/archive/M/MacGyver/S02D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,2.19. Bushmaster
+#EXTINF:2773,,2.19. Bushmaster
 dvd:///mnt/dvd/archive/M/MacGyver/S02D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,2.20. Friends
+#EXTINF:2771,,2.20. Friends
 dvd:///mnt/dvd/archive/M/MacGyver/S02D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,2.21. D.O.A.: MacGyver
+#EXTINF:2737,,2.21. D.O.A.: MacGyver
 dvd:///mnt/dvd/archive/M/MacGyver/S02D06.%20E21%e2%80%9322.iso#1
-#EXTINF:0,,2.22. For Love or Money
+#EXTINF:2753,,2.22. For Love or Money
 dvd:///mnt/dvd/archive/M/MacGyver/S02D06.%20E21%e2%80%9322.iso#2
 
-#EXTINF:0,,3.1. Lost Love (part 1)
+#EXTINF:2724,,3.1. Lost Love (part 1)
 dvd:///mnt/dvd/archive/M/MacGyver/S03D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,3.2. Lost Love (part 2)
+#EXTINF:2726,,3.2. Lost Love (part 2)
 dvd:///mnt/dvd/archive/M/MacGyver/S03D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,3.3. Back from the Dead
+#EXTINF:2716,,3.3. Back from the Dead
 dvd:///mnt/dvd/archive/M/MacGyver/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,3.4. Ghost Ship
+#EXTINF:2683,,3.4. Ghost Ship
 dvd:///mnt/dvd/archive/M/MacGyver/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,3.5. Fire and Ice
+#EXTINF:2727,,3.5. Fire and Ice
 dvd:///mnt/dvd/archive/M/MacGyver/S03D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,3.6. GX-1
+#EXTINF:2696,,3.6. GX-1
 dvd:///mnt/dvd/archive/M/MacGyver/S03D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,3.7. Jack in the Box
+#EXTINF:2703,,3.7. Jack in the Box
 dvd:///mnt/dvd/archive/M/MacGyver/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,3.8. The Widowmaker
+#EXTINF:2706,,3.8. The Widowmaker
 dvd:///mnt/dvd/archive/M/MacGyver/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,3.9. Hell Week
+#EXTINF:2696,,3.9. Hell Week
 dvd:///mnt/dvd/archive/M/MacGyver/S03D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,3.10. Blow Out
+#EXTINF:2687,,3.10. Blow Out
 dvd:///mnt/dvd/archive/M/MacGyver/S03D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,3.11. Kill Zone
+#EXTINF:2704,,3.11. Kill Zone
 dvd:///mnt/dvd/archive/M/MacGyver/S03D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,3.12. Early Retirement
+#EXTINF:2726,,3.12. Early Retirement
 dvd:///mnt/dvd/archive/M/MacGyver/S03D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,3.13. Thin Ice
+#EXTINF:2714,,3.13. Thin Ice
 dvd:///mnt/dvd/archive/M/MacGyver/S03D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,3.14. The Odd Triple
+#EXTINF:2721,,3.14. The Odd Triple
 dvd:///mnt/dvd/archive/M/MacGyver/S03D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,3.15. The Negotiator
+#EXTINF:2671,,3.15. The Negotiator
 dvd:///mnt/dvd/archive/M/MacGyver/S03D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,3.16. The Spoilers
+#EXTINF:2716,,3.16. The Spoilers
 dvd:///mnt/dvd/archive/M/MacGyver/S03D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,3.17. Mask of the Wolf
+#EXTINF:2693,,3.17. Mask of the Wolf
 dvd:///mnt/dvd/archive/M/MacGyver/S03D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,3.18. Rock the Cradle
+#EXTINF:2688,,3.18. Rock the Cradle
 dvd:///mnt/dvd/archive/M/MacGyver/S03D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,3.19. The Endangered
+#EXTINF:2714,,3.19. The Endangered
 dvd:///mnt/dvd/archive/M/MacGyver/S03D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,3.20. Murderers' Sky
+#EXTINF:2679,,3.20. Murderers' Sky
 dvd:///mnt/dvd/archive/M/MacGyver/S03D05.%20E17%e2%80%9320.iso#4
 
-#EXTINF:0,,4.1. The Secret of Parker House
+#EXTINF:2800,,4.1. The Secret of Parker House
 dvd:///mnt/dvd/archive/M/MacGyver/S04D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,4.2. Blood Brothers
+#EXTINF:2766,,4.2. Blood Brothers
 dvd:///mnt/dvd/archive/M/MacGyver/S04D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,4.3. The Outsiders
+#EXTINF:2729,,4.3. The Outsiders
 dvd:///mnt/dvd/archive/M/MacGyver/S04D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,4.4. On a Wing and a Prayer
+#EXTINF:2748,,4.4. On a Wing and a Prayer
 dvd:///mnt/dvd/archive/M/MacGyver/S04D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,4.5. Collision Course
+#EXTINF:2753,,4.5. Collision Course
 dvd:///mnt/dvd/archive/M/MacGyver/S04D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,4.6. The Survivors
+#EXTINF:2776,,4.6. The Survivors
 dvd:///mnt/dvd/archive/M/MacGyver/S04D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,4.7. Deadly Dreams
+#EXTINF:2798,,4.7. Deadly Dreams
 dvd:///mnt/dvd/archive/M/MacGyver/S04D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,4.8. Ma Dalton
+#EXTINF:2756,,4.8. Ma Dalton
 dvd:///mnt/dvd/archive/M/MacGyver/S04D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,4.9. Cleo Rocks
+#EXTINF:2786,,4.9. Cleo Rocks
 dvd:///mnt/dvd/archive/M/MacGyver/S04D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,4.10. Fraternity of Thieves
+#EXTINF:2773,,4.10. Fraternity of Thieves
 dvd:///mnt/dvd/archive/M/MacGyver/S04D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,4.11. The Battle of Tommy Giordano
+#EXTINF:2798,,4.11. The Battle of Tommy Giordano
 dvd:///mnt/dvd/archive/M/MacGyver/S04D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,4.12. The Challenge
+#EXTINF:2804,,4.12. The Challenge
 dvd:///mnt/dvd/archive/M/MacGyver/S04D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,4.13. Runners
+#EXTINF:2795,,4.13. Runners
 dvd:///mnt/dvd/archive/M/MacGyver/S04D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,4.14. Gold Rush
+#EXTINF:2793,,4.14. Gold Rush
 dvd:///mnt/dvd/archive/M/MacGyver/S04D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,4.15. The Invisible Killer
+#EXTINF:2779,,4.15. The Invisible Killer
 dvd:///mnt/dvd/archive/M/MacGyver/S04D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,4.16. Brainwashed
+#EXTINF:2805,,4.16. Brainwashed
 dvd:///mnt/dvd/archive/M/MacGyver/S04D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,4.17. Easy Target
+#EXTINF:2803,,4.17. Easy Target
 dvd:///mnt/dvd/archive/M/MacGyver/S04D05.%20E17%e2%80%9319.iso#1
-#EXTINF:0,,4.18. Renegade
+#EXTINF:2757,,4.18. Renegade
 dvd:///mnt/dvd/archive/M/MacGyver/S04D05.%20E17%e2%80%9319.iso#2
-#EXTINF:0,,4.19. Unfinished Business
+#EXTINF:2775,,4.19. Unfinished Business
 dvd:///mnt/dvd/archive/M/MacGyver/S04D05.%20E17%e2%80%9319.iso#3
 
-#EXTINF:0,,5.1. Legend of the Holy Rose (part 1)
+#EXTINF:2770,,5.1. Legend of the Holy Rose (part 1)
 dvd:///mnt/dvd/archive/M/MacGyver/S05D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,5.2. Legend of the Holy Rose (part 2)
+#EXTINF:2766,,5.2. Legend of the Holy Rose (part 2)
 dvd:///mnt/dvd/archive/M/MacGyver/S05D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,5.3. The Black Corsage
+#EXTINF:2759,,5.3. The Black Corsage
 dvd:///mnt/dvd/archive/M/MacGyver/S05D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,5.4. Cease Fire
+#EXTINF:2752,,5.4. Cease Fire
 dvd:///mnt/dvd/archive/M/MacGyver/S05D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,5.5. Second Chance
+#EXTINF:2713,,5.5. Second Chance
 dvd:///mnt/dvd/archive/M/MacGyver/S05D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,5.6. Halloween Knights
+#EXTINF:2763,,5.6. Halloween Knights
 dvd:///mnt/dvd/archive/M/MacGyver/S05D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,5.7. Children of Light
+#EXTINF:2745,,5.7. Children of Light
 dvd:///mnt/dvd/archive/M/MacGyver/S05D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,5.8. Black Rhino
+#EXTINF:2762,,5.8. Black Rhino
 dvd:///mnt/dvd/archive/M/MacGyver/S05D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,5.9. The Ten Percent Solution
+#EXTINF:2712,,5.9. The Ten Percent Solution
 dvd:///mnt/dvd/archive/M/MacGyver/S05D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,5.10. Two Times Trouble
+#EXTINF:2745,,5.10. Two Times Trouble
 dvd:///mnt/dvd/archive/M/MacGyver/S05D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,5.11. The Madonna
+#EXTINF:2741,,5.11. The Madonna
 dvd:///mnt/dvd/archive/M/MacGyver/S05D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,5.12. Serenity
+#EXTINF:2748,,5.12. Serenity
 dvd:///mnt/dvd/archive/M/MacGyver/S05D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,5.13. Live and Learn
+#EXTINF:2755,,5.13. Live and Learn
 dvd:///mnt/dvd/archive/M/MacGyver/S05D04.%20E13%e2%80%9315.iso#1
-#EXTINF:0,,5.14. Log Jam
+#EXTINF:2765,,5.14. Log Jam
 dvd:///mnt/dvd/archive/M/MacGyver/S05D04.%20E13%e2%80%9315.iso#2
-#EXTINF:0,,5.15. The Treasure of Manco
+#EXTINF:2746,,5.15. The Treasure of Manco
 dvd:///mnt/dvd/archive/M/MacGyver/S05D04.%20E13%e2%80%9315.iso#3
-#EXTINF:0,,5.16. Jenny's Chance
+#EXTINF:2762,,5.16. Jenny's Chance
 dvd:///mnt/dvd/archive/M/MacGyver/S05D05.%20E16%e2%80%9318.iso#1
-#EXTINF:0,,5.17. Deep Cover
+#EXTINF:2762,,5.17. Deep Cover
 dvd:///mnt/dvd/archive/M/MacGyver/S05D05.%20E16%e2%80%9318.iso#2
-#EXTINF:0,,5.18. The Lost Amadeus
+#EXTINF:2762,,5.18. The Lost Amadeus
 dvd:///mnt/dvd/archive/M/MacGyver/S05D05.%20E16%e2%80%9318.iso#3
-#EXTINF:0,,5.19. Hearts of Steel
+#EXTINF:2743,,5.19. Hearts of Steel
 dvd:///mnt/dvd/archive/M/MacGyver/S05D06.%20E19%e2%80%9321.iso#1
-#EXTINF:0,,5.20. Rush to Judgement
+#EXTINF:2768,,5.20. Rush to Judgement
 dvd:///mnt/dvd/archive/M/MacGyver/S05D06.%20E19%e2%80%9321.iso#2
-#EXTINF:0,,5.21. Passages
+#EXTINF:2748,,5.21. Passages
 dvd:///mnt/dvd/archive/M/MacGyver/S05D06.%20E19%e2%80%9321.iso#3
 
-#EXTINF:0,,6.1. Tough Boys
+#EXTINF:2767,,6.1. Tough Boys
 dvd:///mnt/dvd/archive/M/MacGyver/S06D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,6.2. Humanity
+#EXTINF:2768,,6.2. Humanity
 dvd:///mnt/dvd/archive/M/MacGyver/S06D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,6.3. The Gun
+#EXTINF:2768,,6.3. The Gun
 dvd:///mnt/dvd/archive/M/MacGyver/S06D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,6.4. Twenty Questions
+#EXTINF:2758,,6.4. Twenty Questions
 dvd:///mnt/dvd/archive/M/MacGyver/S06D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,6.5. The Wall
+#EXTINF:2759,,6.5. The Wall
 dvd:///mnt/dvd/archive/M/MacGyver/S06D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,6.6. Lesson in Evil
+#EXTINF:2745,,6.6. Lesson in Evil
 dvd:///mnt/dvd/archive/M/MacGyver/S06D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,6.7. Harry's Will
+#EXTINF:2767,,6.7. Harry's Will
 dvd:///mnt/dvd/archive/M/MacGyver/S06D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,6.8. MacGyver's Women
+#EXTINF:2752,,6.8. MacGyver's Women
 dvd:///mnt/dvd/archive/M/MacGyver/S06D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,6.9. Bitter Harvest
+#EXTINF:2744,,6.9. Bitter Harvest
 dvd:///mnt/dvd/archive/M/MacGyver/S06D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,6.10. The Visitor
+#EXTINF:2754,,6.10. The Visitor
 dvd:///mnt/dvd/archive/M/MacGyver/S06D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,6.11. Squeeze Play
+#EXTINF:2755,,6.11. Squeeze Play
 dvd:///mnt/dvd/archive/M/MacGyver/S06D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,6.12. Jerico Games
+#EXTINF:2754,,6.12. Jerico Games
 dvd:///mnt/dvd/archive/M/MacGyver/S06D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,6.13. The Wasteland
+#EXTINF:2745,,6.13. The Wasteland
 dvd:///mnt/dvd/archive/M/MacGyver/S06D04.%20E13%e2%80%9315.iso#1
-#EXTINF:0,,6.14. Eye of Osiris
+#EXTINF:2754,,6.14. Eye of Osiris
 dvd:///mnt/dvd/archive/M/MacGyver/S06D04.%20E13%e2%80%9315.iso#2
-#EXTINF:0,,6.15. High Control
+#EXTINF:2755,,6.15. High Control
 dvd:///mnt/dvd/archive/M/MacGyver/S06D04.%20E13%e2%80%9315.iso#3
-#EXTINF:0,,6.16. There but for the Grace
+#EXTINF:2754,,6.16. There but for the Grace
 dvd:///mnt/dvd/archive/M/MacGyver/S06D05.%20E16%e2%80%9318.iso#1
-#EXTINF:0,,6.17. Blind Faith
+#EXTINF:2720,,6.17. Blind Faith
 dvd:///mnt/dvd/archive/M/MacGyver/S06D05.%20E16%e2%80%9318.iso#2
-#EXTINF:0,,6.18. Faith, Hope & Charity
+#EXTINF:2734,,6.18. Faith, Hope & Charity
 dvd:///mnt/dvd/archive/M/MacGyver/S06D05.%20E16%e2%80%9318.iso#3
-#EXTINF:0,,6.19. Strictly Business
+#EXTINF:2745,,6.19. Strictly Business
 dvd:///mnt/dvd/archive/M/MacGyver/S06D06.%20E19%e2%80%9321.iso#1
-#EXTINF:0,,6.20. Trail of Tears
+#EXTINF:2753,,6.20. Trail of Tears
 dvd:///mnt/dvd/archive/M/MacGyver/S06D06.%20E19%e2%80%9321.iso#2
-#EXTINF:0,,6.21. Hind-Sight
+#EXTINF:2729,,6.21. Hind-Sight
 dvd:///mnt/dvd/archive/M/MacGyver/S06D06.%20E19%e2%80%9321.iso#3
 
-#EXTINF:0,,7.1. Honest Abe
+#EXTINF:2751,,7.1. Honest Abe
 dvd:///mnt/dvd/archive/M/MacGyver/S07D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,7.2. The 'Hood
+#EXTINF:2754,,7.2. The 'Hood
 dvd:///mnt/dvd/archive/M/MacGyver/S07D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,7.3. Obsessed
+#EXTINF:2751,,7.3. Obsessed
 dvd:///mnt/dvd/archive/M/MacGyver/S07D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,7.4. The Prometheus Syndrome
+#EXTINF:2755,,7.4. The Prometheus Syndrome
 dvd:///mnt/dvd/archive/M/MacGyver/S07D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,7.5. The Coltons
+#EXTINF:2754,,7.5. The Coltons
 dvd:///mnt/dvd/archive/M/MacGyver/S07D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,7.6. Walking Dead
+#EXTINF:2745,,7.6. Walking Dead
 dvd:///mnt/dvd/archive/M/MacGyver/S07D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,7.7. Good Knight MacGyver (part 1)
+#EXTINF:2752,,7.7. Good Knight MacGyver (part 1)
 dvd:///mnt/dvd/archive/M/MacGyver/S07D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,7.8. Good Knight MacGyver (part 2)
+#EXTINF:2751,,7.8. Good Knight MacGyver (part 2)
 dvd:///mnt/dvd/archive/M/MacGyver/S07D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,7.9. Deadly Silents
+#EXTINF:2703,,7.9. Deadly Silents
 dvd:///mnt/dvd/archive/M/MacGyver/S07D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,7.10. Split Decision
+#EXTINF:2707,,7.10. Split Decision
 dvd:///mnt/dvd/archive/M/MacGyver/S07D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,7.11. Gunz 'n Boyz
+#EXTINF:2752,,7.11. Gunz 'n Boyz
 dvd:///mnt/dvd/archive/M/MacGyver/S07D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,7.12. Off the Wall
+#EXTINF:2696,,7.12. Off the Wall
 dvd:///mnt/dvd/archive/M/MacGyver/S07D04.%20E12%e2%80%9314.iso#1
-#EXTINF:0,,7.13. The Stringer
+#EXTINF:2753,,7.13. The Stringer
 dvd:///mnt/dvd/archive/M/MacGyver/S07D04.%20E12%e2%80%9314.iso#2
-#EXTINF:0,,7.14. The Mountain of Youth
+#EXTINF:2753,,7.14. The Mountain of Youth
 dvd:///mnt/dvd/archive/M/MacGyver/S07D04.%20E12%e2%80%9314.iso#3
 
-#EXTINF:0,,Lost Treasure of Atlantis
+#EXTINF:5341,,Lost Treasure of Atlantis
 dvd:///mnt/dvd/archive/M/MacGyver/TV%20movies.iso#1
-#EXTINF:0,,Trail to Doomsday
+#EXTINF:5333,,Trail to Doomsday
 dvd:///mnt/dvd/archive/M/MacGyver/TV%20movies.iso#2
index 9ff9438..e9809e4 100644 (file)
@@ -1,68 +1,68 @@
 #EXTM3U
 
-#EXTINF:0,,The Dead of Jericho
+#EXTINF:6258,,The Dead of Jericho
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/01.%20The%20Dead%20of%20Jericho%3b%20The%20Silent%20World%20of%20Nicholas%20Quinn.iso#2
-#EXTINF:0,,The Silent World of Nicholas Quinn
+#EXTINF:6094,,The Silent World of Nicholas Quinn
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/01.%20The%20Dead%20of%20Jericho%3b%20The%20Silent%20World%20of%20Nicholas%20Quinn.iso#3
-#EXTINF:0,,Service of All the Dead
+#EXTINF:6142,,Service of All the Dead
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/02.%20Service%20of%20All%20the%20Dead%3b%20The%20Wolvercote%20Tongue.iso#2
-#EXTINF:0,,The Wolvercote Tongue
+#EXTINF:6100,,The Wolvercote Tongue
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/02.%20Service%20of%20All%20the%20Dead%3b%20The%20Wolvercote%20Tongue.iso#3
-#EXTINF:0,,Last Seen Wearing
+#EXTINF:6215,,Last Seen Wearing
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/03.%20Last%20Seen%20Wearing%3b%20The%20Settling%20of%20the%20Sun.iso#2
-#EXTINF:0,,The Settling of the Sun
+#EXTINF:6279,,The Settling of the Sun
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/03.%20Last%20Seen%20Wearing%3b%20The%20Settling%20of%20the%20Sun.iso#3
-#EXTINF:0,,Last Bus to Woodstock
+#EXTINF:6205,,Last Bus to Woodstock
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/04.%20Last%20Bus%20to%20Woodstock%3b%20Ghost%20in%20the%20Machine.iso#2
-#EXTINF:0,,Ghost in the Machine
+#EXTINF:6161,,Ghost in the Machine
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/04.%20Last%20Bus%20to%20Woodstock%3b%20Ghost%20in%20the%20Machine.iso#3
-#EXTINF:0,,The Last Enemy
+#EXTINF:6148,,The Last Enemy
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/05.%20The%20Last%20Enemy%3b%20Deceived%20by%20Flight.iso#2
-#EXTINF:0,,Deceived by Flight
+#EXTINF:6195,,Deceived by Flight
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/05.%20The%20Last%20Enemy%3b%20Deceived%20by%20Flight.iso#3
-#EXTINF:0,,The Secret of Bay 5B
+#EXTINF:6169,,The Secret of Bay 5B
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/06.%20The%20Secret%20of%20Bay%205B%3b%20Infernal%20Serpent.iso#2
-#EXTINF:0,,Infernal Serpent
+#EXTINF:6294,,Infernal Serpent
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/06.%20The%20Secret%20of%20Bay%205B%3b%20Infernal%20Serpent.iso#3
-#EXTINF:0,,The Sins of the Father
+#EXTINF:6258,,The Sins of the Father
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/07.%20The%20Sins%20of%20the%20Father%3b%20Driven%20to%20Distraction.iso#2
-#EXTINF:0,,Driven to Distraction
+#EXTINF:6272,,Driven to Distraction
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/07.%20The%20Sins%20of%20the%20Father%3b%20Driven%20to%20Distraction.iso#3
-#EXTINF:0,,Masonic Mysteries
+#EXTINF:6279,,Masonic Mysteries
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/08.%20Masonic%20Mysteries%3b%20Second%20Time%20Around.iso#2
-#EXTINF:0,,Second Time Around
+#EXTINF:6242,,Second Time Around
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/08.%20Masonic%20Mysteries%3b%20Second%20Time%20Around.iso#3
-#EXTINF:0,,Fat Chance
+#EXTINF:6249,,Fat Chance
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/09.%20Fat%20Chance%3b%20Who%20Killed%20Harry%20Field%3f.iso#2
-#EXTINF:0,,Who Killed Harry Field?
+#EXTINF:6270,,Who Killed Harry Field?
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/09.%20Fat%20Chance%3b%20Who%20Killed%20Harry%20Field%3f.iso#3
-#EXTINF:0,,Greeks Bearing Gifts
+#EXTINF:6166,,Greeks Bearing Gifts
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/10.%20Greeks%20Bearing%20Gifts%3b%20Promised%20Land.iso#2
-#EXTINF:0,,Promised Land
+#EXTINF:6187,,Promised Land
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/10.%20Greeks%20Bearing%20Gifts%3b%20Promised%20Land.iso#3
-#EXTINF:0,,Dead on Time
+#EXTINF:6175,,Dead on Time
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/11.%20Dead%20on%20Time%3b%20Happy%20Families.iso#2
-#EXTINF:0,,Happy Families
+#EXTINF:6162,,Happy Families
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/11.%20Dead%20on%20Time%3b%20Happy%20Families.iso#3
-#EXTINF:0,,The Death of the Self
+#EXTINF:6167,,The Death of the Self
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/12.%20The%20Death%20of%20the%20Self%3b%20Absolute%20Conviction.iso#2
-#EXTINF:0,,Absolute Conviction
+#EXTINF:6155,,Absolute Conviction
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/12.%20The%20Death%20of%20the%20Self%3b%20Absolute%20Conviction.iso#3
-#EXTINF:0,,Cherubim and Seraphim
+#EXTINF:6203,,Cherubim and Seraphim
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/13.%20Cherubim%20and%20Seraphim%3b%20Deadly%20Slumber.iso#2
-#EXTINF:0,,Deadly Slumber
+#EXTINF:6135,,Deadly Slumber
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/13.%20Cherubim%20and%20Seraphim%3b%20Deadly%20Slumber.iso#3
-#EXTINF:0,,The Day of the Devil
+#EXTINF:6110,,The Day of the Devil
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/14.%20The%20Day%20of%20the%20Devil%3b%20Twilight%20of%20the%20Gods.iso#2
-#EXTINF:0,,Twilight of the Gods
+#EXTINF:6126,,Twilight of the Gods
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/14.%20The%20Day%20of%20the%20Devil%3b%20Twilight%20of%20the%20Gods.iso#3
-#EXTINF:0,,The Way Through the Woods
+#EXTINF:6093,,The Way Through the Woods
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/15.%20The%20Way%20Through%20the%20Woods%3b%20The%20Daughters%20of%20Cain.iso#2
-#EXTINF:0,,The Daughters of Cain
+#EXTINF:6092,,The Daughters of Cain
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/15.%20The%20Way%20Through%20the%20Woods%3b%20The%20Daughters%20of%20Cain.iso#3
-#EXTINF:0,,Death Is Now My Neighbour
+#EXTINF:6091,,Death Is Now My Neighbour
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/16.%20Death%20Is%20Now%20My%20Neighbour%3b%20The%20Wench%20is%20Dead.iso#2
-#EXTINF:0,,The Wench is Dead
+#EXTINF:6093,,The Wench is Dead
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/16.%20Death%20Is%20Now%20My%20Neighbour%3b%20The%20Wench%20is%20Dead.iso#3
-#EXTINF:0,,The Remorseful Day
+#EXTINF:5977,,The Remorseful Day
 dvd:///mnt/dvd/archive/M/Inspector%20Morse/17.%20The%20Remorseful%20Day.iso#2
index 639961d..003b51f 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Pilot
+#EXTINF:2536,,1.1. Pilot
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,1.2. Ghosts
+#EXTINF:2527,,1.2. Ghosts
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,1.3. Mission Creep
+#EXTINF:2518,,1.3. Mission Creep
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,1.4. Cura Te Ipsum
+#EXTINF:2520,,1.4. Cura Te Ipsum
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,1.5. Judgment
+#EXTINF:2477,,1.5. Judgment
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,1.6. The Fix
+#EXTINF:2533,,1.6. The Fix
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,1.7. Witness
+#EXTINF:2528,,1.7. Witness
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,1.8. Foe
+#EXTINF:2534,,1.8. Foe
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,1.9. Get Carter
+#EXTINF:2533,,1.9. Get Carter
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,1.10. Number Crunch
+#EXTINF:2528,,1.10. Number Crunch
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,1.11. Super
+#EXTINF:2527,,1.11. Super
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,1.12. Legacy
+#EXTINF:2512,,1.12. Legacy
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,1.13. Root Cause
+#EXTINF:2532,,1.13. Root Cause
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,1.14. Wolf and Cub
+#EXTINF:2532,,1.14. Wolf and Cub
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,1.15. Blue Code
+#EXTINF:2524,,1.15. Blue Code
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,1.16. Risk
+#EXTINF:2531,,1.16. Risk
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,1.17. Baby Blue
+#EXTINF:2534,,1.17. Baby Blue
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,1.18. Identity Crisis
+#EXTINF:2529,,1.18. Identity Crisis
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,1.19. Flesh and Blood
+#EXTINF:2530,,1.19. Flesh and Blood
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,1.20. Matsya Nyaya
+#EXTINF:2533,,1.20. Matsya Nyaya
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,1.21. Many Happy Returns
+#EXTINF:2533,,1.21. Many Happy Returns
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D06.%20E21%e2%80%9323.iso#3
-#EXTINF:0,,1.22. No Good Deed
+#EXTINF:2530,,1.22. No Good Deed
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D06.%20E21%e2%80%9323.iso#4
-#EXTINF:0,,1.23. Firewall
+#EXTINF:2532,,1.23. Firewall
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S01D06.%20E21%e2%80%9323.iso#5
 
-#EXTINF:0,,2.1. The Contingency
+#EXTINF:2521,,2.1. The Contingency
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,2.2. Bad Code
+#EXTINF:2535,,2.2. Bad Code
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.3. Masquerade
+#EXTINF:2516,,2.3. Masquerade
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,2.4. Triggerman
+#EXTINF:2529,,2.4. Triggerman
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,2.5. Bury the Lede
+#EXTINF:2534,,2.5. Bury the Lede
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,2.6. The High Road
+#EXTINF:2528,,2.6. The High Road
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.7. Critical
+#EXTINF:2535,,2.7. Critical
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,2.8. 'Til Death
+#EXTINF:2530,,2.8. 'Til Death
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,2.9. C.O.D.
+#EXTINF:2521,,2.9. C.O.D.
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,2.10. Shadow Box
+#EXTINF:2475,,2.10. Shadow Box
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,2.11. 2 π r
+#EXTINF:2533,,2.11. 2 π r
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,2.12. Prisoner's Dilemma
+#EXTINF:2534,,2.12. Prisoner's Dilemma
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,2.13. Dead Reckoning
+#EXTINF:2529,,2.13. Dead Reckoning
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,2.14. One Percent
+#EXTINF:2534,,2.14. One Percent
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,2.15. Booked Solid
+#EXTINF:2536,,2.15. Booked Solid
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,2.16. Relevance
+#EXTINF:2535,,2.16. Relevance
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,2.17. Proteus
+#EXTINF:2526,,2.17. Proteus
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,2.18. All In
+#EXTINF:2535,,2.18. All In
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,2.19. Trojan Horse
+#EXTINF:2536,,2.19. Trojan Horse
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,2.20. In Extremis
+#EXTINF:2534,,2.20. In Extremis
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,2.21. Zero Day
+#EXTINF:2532,,2.21. Zero Day
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D06.%20E21%e2%80%9322.iso#3
-#EXTINF:0,,2.22. God Mode
+#EXTINF:2534,,2.22. God Mode
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S02D06.%20E21%e2%80%9322.iso#4
 
-#EXTINF:0,,3.1. Liberty
+#EXTINF:2515,,3.1. Liberty
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,3.2. Nothing to Hide
+#EXTINF:2509,,3.2. Nothing to Hide
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,3.3. Lady Killer
+#EXTINF:2514,,3.3. Lady Killer
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,3.4. Reasonable Doubt
+#EXTINF:2514,,3.4. Reasonable Doubt
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,3.5. Разговор
+#EXTINF:2514,,3.5. Разговор
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,3.6. Mors Praematura
+#EXTINF:2513,,3.6. Mors Praematura
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,3.7. The Perfect Mark
+#EXTINF:2512,,3.7. The Perfect Mark
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,3.8. Endgame
+#EXTINF:2516,,3.8. Endgame
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,3.9. The Crossing
+#EXTINF:2517,,3.9. The Crossing
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,3.10. The Devil's Share
+#EXTINF:2514,,3.10. The Devil's Share
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,3.11. Lethe
+#EXTINF:2512,,3.11. Lethe
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,3.12. Aletheia
+#EXTINF:2515,,3.12. Aletheia
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,3.13. 4C
+#EXTINF:2514,,3.13. 4C
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,3.14. Provenance
+#EXTINF:2432,,3.14. Provenance
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,3.15. Last Call
+#EXTINF:2514,,3.15. Last Call
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,3.16. RAM
+#EXTINF:2510,,3.16. RAM
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,3.17. /
+#EXTINF:2500,,3.17. /
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,3.18. Allegiance
+#EXTINF:2514,,3.18. Allegiance
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,3.19. Most Likely to…
+#EXTINF:2511,,3.19. Most Likely to…
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,3.20. Death Benefit
+#EXTINF:2509,,3.20. Death Benefit
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,3.21. Beta
+#EXTINF:2515,,3.21. Beta
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D06.%20E21%e2%80%9323.iso#3
-#EXTINF:0,,3.22. A House Divided
+#EXTINF:2512,,3.22. A House Divided
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D06.%20E21%e2%80%9323.iso#4
-#EXTINF:0,,3.23. Deus ex machina
+#EXTINF:2514,,3.23. Deus ex machina
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S03D06.%20E21%e2%80%9323.iso#5
 
-#EXTINF:0,,4.1. Panopticon
+#EXTINF:2511,,4.1. Panopticon
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,4.2. Nautilus
+#EXTINF:2514,,4.2. Nautilus
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,4.3. Wingman
+#EXTINF:2512,,4.3. Wingman
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,4.4. Brotherhood
+#EXTINF:2514,,4.4. Brotherhood
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,4.5. Prophets
+#EXTINF:2512,,4.5. Prophets
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,4.6. Pretenders
+#EXTINF:2513,,4.6. Pretenders
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,4.7. Honor Among Thieves
+#EXTINF:2511,,4.7. Honor Among Thieves
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,4.8. Point of Origin
+#EXTINF:2496,,4.8. Point of Origin
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,4.9. The Devil You Know
+#EXTINF:2510,,4.9. The Devil You Know
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,4.10. The Cold War
+#EXTINF:2513,,4.10. The Cold War
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,4.11. If–Then–Else
+#EXTINF:2515,,4.11. If–Then–Else
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,4.12. Control–Alt–Delete
+#EXTINF:2499,,4.12. Control–Alt–Delete
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,4.13. M.I.A.
+#EXTINF:2492,,4.13. M.I.A.
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,4.14. Guilty
+#EXTINF:2508,,4.14. Guilty
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,4.15. Q&A
+#EXTINF:2520,,4.15. Q&A
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,4.16. Blunt
+#EXTINF:2490,,4.16. Blunt
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,4.17. Karma
+#EXTINF:2509,,4.17. Karma
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,4.18. Skip
+#EXTINF:2519,,4.18. Skip
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,4.19. Search & Destroy
+#EXTINF:2487,,4.19. Search & Destroy
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,4.20. Terra incognita
+#EXTINF:2519,,4.20. Terra incognita
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,4.21. Asylum
+#EXTINF:2507,,4.21. Asylum
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D06.%20E21%e2%80%9322.iso#3
-#EXTINF:0,,4.22. YHWH
+#EXTINF:2523,,4.22. YHWH
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S04D06.%20E21%e2%80%9322.iso#4
 
-#EXTINF:0,,5.1. B.S.O.D.
+#EXTINF:2521,,5.1. B.S.O.D.
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S05D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,5.2. SNAFU
+#EXTINF:2507,,5.2. SNAFU
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S05D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,5.3. Truth Be Told
+#EXTINF:2521,,5.3. Truth Be Told
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S05D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,5.4. 6,741
+#EXTINF:2501,,5.4. 6,741
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S05D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,5.5. ShotSeeker
+#EXTINF:2518,,5.5. ShotSeeker
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S05D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,5.6. A More Perfect Union
+#EXTINF:2514,,5.6. A More Perfect Union
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S05D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,5.7. QSO
+#EXTINF:2518,,5.7. QSO
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S05D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,5.8. Reassortment
+#EXTINF:2517,,5.8. Reassortment
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S05D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,5.9. Sotto Voce
+#EXTINF:2519,,5.9. Sotto Voce
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S05D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,5.10. The Day the World Went Away
+#EXTINF:2504,,5.10. The Day the World Went Away
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S05D02.%20E06%e2%80%9310.iso#7
-#EXTINF:0,,5.11. Synecdoche
+#EXTINF:2486,,5.11. Synecdoche
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S05D03.%20E11%e2%80%9313.iso#3
-#EXTINF:0,,5.12. .exe
+#EXTINF:2519,,5.12. .exe
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S05D03.%20E11%e2%80%9313.iso#4
-#EXTINF:0,,5.13. return 0
+#EXTINF:2513,,5.13. return 0
 dvd:///mnt/dvd/archive/P/Person%20of%20Interest/S05D03.%20E11%e2%80%9313.iso#5
index 67232b0..865beff 100644 (file)
@@ -1,56 +1,56 @@
 #EXTM3U
 
-#EXTINF:0,,1.1. Robin Hood and the Sorcerer (part 1)
+#EXTINF:3124,,1.1. Robin Hood and the Sorcerer (part 1)
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S01D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,1.2. Robin Hood and the Sorcerer (part 2)
+#EXTINF:3151,,1.2. Robin Hood and the Sorcerer (part 2)
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S01D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,1.3. The Witch of Elsdon
+#EXTINF:3139,,1.3. The Witch of Elsdon
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S01D01.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,1.4. Seven Poor Knights from Acre
+#EXTINF:3064,,1.4. Seven Poor Knights from Acre
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S01D03.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,1.5. Alan a Dale
+#EXTINF:3095,,1.5. Alan a Dale
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S01D03.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,1.6. The King's Fool
+#EXTINF:3145,,1.6. The King's Fool
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S01D03.%20E04%e2%80%9306.iso#5
 
-#EXTINF:0,,2.1. The Prophecy
+#EXTINF:3159,,2.1. The Prophecy
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,2.2. The Children of Israel
+#EXTINF:3090,,2.2. The Children of Israel
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S02D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,2.3. Lord of the Trees
+#EXTINF:3102,,2.3. Lord of the Trees
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.4. The Enchantment
+#EXTINF:3095,,2.4. The Enchantment
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S02D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,2.5. The Swords of Wayland (part 1)
+#EXTINF:3066,,2.5. The Swords of Wayland (part 1)
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S02D02.%20E05%e2%80%9307.iso#4
-#EXTINF:0,,2.6. The Swords of Wayland (part 2)
+#EXTINF:3089,,2.6. The Swords of Wayland (part 2)
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S02D02.%20E05%e2%80%9307.iso#5
-#EXTINF:0,,2.7. The Greatest Enemy
+#EXTINF:3117,,2.7. The Greatest Enemy
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S02D02.%20E05%e2%80%9307.iso#6
 
-#EXTINF:0,,3.1. Herne's Son (part 1)
+#EXTINF:2834,,3.1. Herne's Son (part 1)
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S03D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,3.2. Herne's Son (part 2)
+#EXTINF:3108,,3.2. Herne's Son (part 2)
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S03D01.%20E01%e2%80%9303.iso#18
-#EXTINF:0,,3.3. The Power of Albion
+#EXTINF:3005,,3.3. The Power of Albion
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S03D01.%20E01%e2%80%9303.iso#31
-#EXTINF:0,,3.4. The Inheritance
+#EXTINF:3036,,3.4. The Inheritance
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S03D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,3.5. The Cross of St Ciricus
+#EXTINF:3060,,3.5. The Cross of St Ciricus
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S03D02.%20E04%e2%80%9306.iso#31
-#EXTINF:0,,3.6. The Sheriff of Nottingham
+#EXTINF:3018,,3.6. The Sheriff of Nottingham
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S03D02.%20E04%e2%80%9306.iso#18
-#EXTINF:0,,3.7. Cromm Cruac
+#EXTINF:3003,,3.7. Cromm Cruac
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S03D03.%20E07%e2%80%9310.iso#2
-#EXTINF:0,,3.8. The Betrayal
+#EXTINF:3013,,3.8. The Betrayal
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S03D03.%20E07%e2%80%9310.iso#3
-#EXTINF:0,,3.9. Adam Bell
+#EXTINF:3045,,3.9. Adam Bell
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S03D03.%20E07%e2%80%9310.iso#4
-#EXTINF:0,,3.10. The Pretender
+#EXTINF:3043,,3.10. The Pretender
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S03D03.%20E07%e2%80%9310.iso#5
-#EXTINF:0,,3.11. Rutterkin
+#EXTINF:3027,,3.11. Rutterkin
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S03D04.%20E11%e2%80%9313.iso#2
-#EXTINF:0,,3.12. The Time of the Wolf (part 1)
+#EXTINF:2980,,3.12. The Time of the Wolf (part 1)
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S03D04.%20E11%e2%80%9313.iso#3
-#EXTINF:0,,3.13. The Time of the Wolf (part 2)
+#EXTINF:3027,,3.13. The Time of the Wolf (part 2)
 dvd:///mnt/dvd/archive/R/Robin%20of%20Sherwood/S03D04.%20E11%e2%80%9313.iso#4
index 88fd8f4..abfe817 100644 (file)
@@ -1,47 +1,47 @@
 #EXTM3U
 
-#EXTINF:0,,1.1. The Stolen Eagle
+#EXTINF:3010,,1.1. The Stolen Eagle
 dvd:///mnt/dvd/archive/R/Rome/S01D01.%20E01%e2%80%9303.iso#1
-#EXTINF:0,,1.2. How Titus Pullo Brought down the Republic
+#EXTINF:2878,,1.2. How Titus Pullo Brought down the Republic
 dvd:///mnt/dvd/archive/R/Rome/S01D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,1.3. An Owl in a Thornbush
+#EXTINF:2551,,1.3. An Owl in a Thornbush
 dvd:///mnt/dvd/archive/R/Rome/S01D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,1.4. Stealing from Saturn
+#EXTINF:3133,,1.4. Stealing from Saturn
 dvd:///mnt/dvd/archive/R/Rome/S01D02.%20E04%e2%80%9306.iso#1
-#EXTINF:0,,1.5. The Ram Has Touched the Wall
+#EXTINF:2983,,1.5. The Ram Has Touched the Wall
 dvd:///mnt/dvd/archive/R/Rome/S01D02.%20E04%e2%80%9306.iso#2
-#EXTINF:0,,1.6. Egeria
+#EXTINF:3178,,1.6. Egeria
 dvd:///mnt/dvd/archive/R/Rome/S01D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,1.7. Pharsalus
+#EXTINF:3224,,1.7. Pharsalus
 dvd:///mnt/dvd/archive/R/Rome/S01D03.%20E07%e2%80%9308.iso#1
-#EXTINF:0,,1.8. Caesarion
+#EXTINF:3060,,1.8. Caesarion
 dvd:///mnt/dvd/archive/R/Rome/S01D03.%20E07%e2%80%9308.iso#2
-#EXTINF:0,,1.9. Utica
+#EXTINF:3079,,1.9. Utica
 dvd:///mnt/dvd/archive/R/Rome/S01D04.%20E09%e2%80%9310.iso#1
-#EXTINF:0,,1.10. Triumph
+#EXTINF:3043,,1.10. Triumph
 dvd:///mnt/dvd/archive/R/Rome/S01D04.%20E09%e2%80%9310.iso#2
-#EXTINF:0,,1.11. The Spoils
+#EXTINF:2805,,1.11. The Spoils
 dvd:///mnt/dvd/archive/R/Rome/S01D05.%20E11%e2%80%9312.iso#1
-#EXTINF:0,,1.12. Kalends of February
+#EXTINF:2750,,1.12. Kalends of February
 dvd:///mnt/dvd/archive/R/Rome/S01D05.%20E11%e2%80%9312.iso#2
 
-#EXTINF:0,,2.1. Passover
+#EXTINF:3472,,2.1. Passover
 dvd:///mnt/dvd/archive/R/Rome/S02D01.%20E01%e2%80%9302.iso#1
-#EXTINF:0,,2.2. Son of Hades
+#EXTINF:3199,,2.2. Son of Hades
 dvd:///mnt/dvd/archive/R/Rome/S02D01.%20E01%e2%80%9302.iso#2
-#EXTINF:0,,2.3. These Being the Words of Marcus Tullius Cicero
+#EXTINF:3337,,2.3. These Being the Words of Marcus Tullius Cicero
 dvd:///mnt/dvd/archive/R/Rome/S02D02.%20E03%e2%80%9304.iso#1
-#EXTINF:0,,2.4. Testudo et lepus (The Tortoise and the Hare)
+#EXTINF:3098,,2.4. Testudo et lepus (The Tortoise and the Hare)
 dvd:///mnt/dvd/archive/R/Rome/S02D02.%20E03%e2%80%9304.iso#2
-#EXTINF:0,,2.5. Heroes of the Republic
+#EXTINF:3543,,2.5. Heroes of the Republic
 dvd:///mnt/dvd/archive/R/Rome/S02D03.%20E05%e2%80%9306.iso#1
-#EXTINF:0,,2.6. Philippi
+#EXTINF:3391,,2.6. Philippi
 dvd:///mnt/dvd/archive/R/Rome/S02D03.%20E05%e2%80%9306.iso#2
-#EXTINF:0,,2.7. Death Mask
+#EXTINF:3295,,2.7. Death Mask
 dvd:///mnt/dvd/archive/R/Rome/S02D04.%20E07%e2%80%9308.iso#1
-#EXTINF:0,,2.8. A Necessary Fiction
+#EXTINF:3410,,2.8. A Necessary Fiction
 dvd:///mnt/dvd/archive/R/Rome/S02D04.%20E07%e2%80%9308.iso#2
-#EXTINF:0,,2.9. Deus impeditio esuritori nullus (No God Can Stop a Hungry Man)
+#EXTINF:3454,,2.9. Deus impeditio esuritori nullus (No God Can Stop a Hungry Man)
 dvd:///mnt/dvd/archive/R/Rome/S02D05.%20E09%e2%80%9310.iso#1
-#EXTINF:0,,2.10. De patre vostro (About Your Father)
+#EXTINF:3904,,2.10. De patre vostro (About Your Father)
 dvd:///mnt/dvd/archive/R/Rome/S02D05.%20E09%e2%80%9310.iso#2
index dd257b5..ba0b3ab 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Sanctuary for All (part 1)
+#EXTINF:2784,,1.1. Sanctuary for All (part 1)
 dvd:///mnt/dvd/archive/S/Sanctuary/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,1.2. Sanctuary for All (part 2)
+#EXTINF:2648,,1.2. Sanctuary for All (part 2)
 dvd:///mnt/dvd/archive/S/Sanctuary/S01D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,1.3. Fata Morgana
+#EXTINF:2612,,1.3. Fata Morgana
 dvd:///mnt/dvd/archive/S/Sanctuary/S01D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,1.4. Folding Man
+#EXTINF:2614,,1.4. Folding Man
 dvd:///mnt/dvd/archive/S/Sanctuary/S01D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,1.5. Kush
+#EXTINF:2614,,1.5. Kush
 dvd:///mnt/dvd/archive/S/Sanctuary/S01D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,1.6. Nubbins
+#EXTINF:2606,,1.6. Nubbins
 dvd:///mnt/dvd/archive/S/Sanctuary/S01D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,1.7. The Five
+#EXTINF:2609,,1.7. The Five
 dvd:///mnt/dvd/archive/S/Sanctuary/S01D02.%20E05%e2%80%9308.iso#7
-#EXTINF:0,,1.8. Edward
+#EXTINF:2609,,1.8. Edward
 dvd:///mnt/dvd/archive/S/Sanctuary/S01D02.%20E05%e2%80%9308.iso#8
-#EXTINF:0,,1.9. Requiem
+#EXTINF:2611,,1.9. Requiem
 dvd:///mnt/dvd/archive/S/Sanctuary/S01D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,1.10. Warriors
+#EXTINF:2610,,1.10. Warriors
 dvd:///mnt/dvd/archive/S/Sanctuary/S01D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,1.11. Instinct
+#EXTINF:2614,,1.11. Instinct
 dvd:///mnt/dvd/archive/S/Sanctuary/S01D03.%20E09%e2%80%9312.iso#7
-#EXTINF:0,,1.12. Revelations (part 1)
+#EXTINF:2609,,1.12. Revelations (part 1)
 dvd:///mnt/dvd/archive/S/Sanctuary/S01D03.%20E09%e2%80%9312.iso#8
-#EXTINF:0,,1.13. Revelations (part 2)
+#EXTINF:2611,,1.13. Revelations (part 2)
 dvd:///mnt/dvd/archive/S/Sanctuary/S01D04.%20E13.iso#12
 
-#EXTINF:0,,2.1. End of Nights (part 1)
+#EXTINF:2721,,2.1. End of Nights (part 1)
 dvd:///mnt/dvd/archive/S/Sanctuary/S02D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,2.2. End of Nights (part 2)
+#EXTINF:2718,,2.2. End of Nights (part 2)
 dvd:///mnt/dvd/archive/S/Sanctuary/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,2.3. Eulogy
+#EXTINF:2722,,2.3. Eulogy
 dvd:///mnt/dvd/archive/S/Sanctuary/S02D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,2.4. Hero
+#EXTINF:2721,,2.4. Hero
 dvd:///mnt/dvd/archive/S/Sanctuary/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.5. Pavor nocturnus
+#EXTINF:2722,,2.5. Pavor nocturnus
 dvd:///mnt/dvd/archive/S/Sanctuary/S02D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,2.6. Fragments
+#EXTINF:2712,,2.6. Fragments
 dvd:///mnt/dvd/archive/S/Sanctuary/S02D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,2.7. Veritas
+#EXTINF:2721,,2.7. Veritas
 dvd:///mnt/dvd/archive/S/Sanctuary/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,2.8. Next Tuesday
+#EXTINF:2715,,2.8. Next Tuesday
 dvd:///mnt/dvd/archive/S/Sanctuary/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.9. Penance
+#EXTINF:2719,,2.9. Penance
 dvd:///mnt/dvd/archive/S/Sanctuary/S02D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,2.10. Sleepers
+#EXTINF:2719,,2.10. Sleepers
 dvd:///mnt/dvd/archive/S/Sanctuary/S02D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,2.11. Haunted
+#EXTINF:2721,,2.11. Haunted
 dvd:///mnt/dvd/archive/S/Sanctuary/S02D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,2.12. Kali (part 1)
+#EXTINF:2715,,2.12. Kali (part 1)
 dvd:///mnt/dvd/archive/S/Sanctuary/S02D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,2.13. Kali (part 2)
+#EXTINF:2722,,2.13. Kali (part 2)
 dvd:///mnt/dvd/archive/S/Sanctuary/S02D04.%20E13.iso#1
 
-#EXTINF:0,,3.1. Kali (part 3)
+#EXTINF:2609,,3.1. Kali (part 3)
 dvd:///mnt/dvd/archive/S/Sanctuary/S03D01.%20E01%e2%80%9304.iso#68
-#EXTINF:0,,3.2. Firewall
+#EXTINF:2607,,3.2. Firewall
 dvd:///mnt/dvd/archive/S/Sanctuary/S03D01.%20E01%e2%80%9304.iso#69
-#EXTINF:0,,3.3. Bank Job
+#EXTINF:2607,,3.3. Bank Job
 dvd:///mnt/dvd/archive/S/Sanctuary/S03D01.%20E01%e2%80%9304.iso#70
-#EXTINF:0,,3.4. Trail of Blood
+#EXTINF:2601,,3.4. Trail of Blood
 dvd:///mnt/dvd/archive/S/Sanctuary/S03D01.%20E01%e2%80%9304.iso#71
-#EXTINF:0,,3.5. Hero II: Broken Arrow
+#EXTINF:2603,,3.5. Hero II: Broken Arrow
 dvd:///mnt/dvd/archive/S/Sanctuary/S03D02.%20E05%e2%80%9308.iso#68
-#EXTINF:0,,3.6. Animus
+#EXTINF:2610,,3.6. Animus
 dvd:///mnt/dvd/archive/S/Sanctuary/S03D02.%20E05%e2%80%9308.iso#69
-#EXTINF:0,,3.7. Breach
+#EXTINF:2604,,3.7. Breach
 dvd:///mnt/dvd/archive/S/Sanctuary/S03D02.%20E05%e2%80%9308.iso#70
-#EXTINF:0,,3.8. For King and Country
+#EXTINF:2607,,3.8. For King and Country
 dvd:///mnt/dvd/archive/S/Sanctuary/S03D02.%20E05%e2%80%9308.iso#71
-#EXTINF:0,,3.9. Vigilante
+#EXTINF:2607,,3.9. Vigilante
 dvd:///mnt/dvd/archive/S/Sanctuary/S03D03.%20E09%e2%80%9312.iso#68
-#EXTINF:0,,3.10. The Hollow Men
+#EXTINF:2609,,3.10. The Hollow Men
 dvd:///mnt/dvd/archive/S/Sanctuary/S03D03.%20E09%e2%80%9312.iso#69
-#EXTINF:0,,3.11. Pax Romana
+#EXTINF:2608,,3.11. Pax Romana
 dvd:///mnt/dvd/archive/S/Sanctuary/S03D03.%20E09%e2%80%9312.iso#70
-#EXTINF:0,,3.12. Hangover
+#EXTINF:2613,,3.12. Hangover
 dvd:///mnt/dvd/archive/S/Sanctuary/S03D03.%20E09%e2%80%9312.iso#71
-#EXTINF:0,,3.13. One Night
+#EXTINF:2608,,3.13. One Night
 dvd:///mnt/dvd/archive/S/Sanctuary/S03D04.%20E13%e2%80%9316.iso#68
-#EXTINF:0,,3.14. Metamorphosis
+#EXTINF:2612,,3.14. Metamorphosis
 dvd:///mnt/dvd/archive/S/Sanctuary/S03D04.%20E13%e2%80%9316.iso#69
-#EXTINF:0,,3.15. Wingman
+#EXTINF:2599,,3.15. Wingman
 dvd:///mnt/dvd/archive/S/Sanctuary/S03D04.%20E13%e2%80%9316.iso#70
-#EXTINF:0,,3.16. Awakening
+#EXTINF:2603,,3.16. Awakening
 dvd:///mnt/dvd/archive/S/Sanctuary/S03D04.%20E13%e2%80%9316.iso#71
-#EXTINF:0,,3.17. Normandy
+#EXTINF:2611,,3.17. Normandy
 dvd:///mnt/dvd/archive/S/Sanctuary/S03D05.%20E17%e2%80%9320.iso#68
-#EXTINF:0,,3.18. Carentan
+#EXTINF:2614,,3.18. Carentan
 dvd:///mnt/dvd/archive/S/Sanctuary/S03D05.%20E17%e2%80%9320.iso#69
-#EXTINF:0,,3.19. Out of the Blue
+#EXTINF:2611,,3.19. Out of the Blue
 dvd:///mnt/dvd/archive/S/Sanctuary/S03D05.%20E17%e2%80%9320.iso#70
-#EXTINF:0,,3.20. Into the Black
+#EXTINF:2610,,3.20. Into the Black
 dvd:///mnt/dvd/archive/S/Sanctuary/S03D05.%20E17%e2%80%9320.iso#71
 
-#EXTINF:0,,4.1. Tempus
+#EXTINF:2588,,4.1. Tempus
 dvd:///mnt/dvd/archive/S/Sanctuary/S04D01.%20E01%e2%80%9304.iso#80
-#EXTINF:0,,4.2. Uprising
+#EXTINF:2584,,4.2. Uprising
 dvd:///mnt/dvd/archive/S/Sanctuary/S04D01.%20E01%e2%80%9304.iso#81
-#EXTINF:0,,4.3. Untouchable
+#EXTINF:2590,,4.3. Untouchable
 dvd:///mnt/dvd/archive/S/Sanctuary/S04D01.%20E01%e2%80%9304.iso#82
-#EXTINF:0,,4.4. Monsoon
+#EXTINF:2585,,4.4. Monsoon
 dvd:///mnt/dvd/archive/S/Sanctuary/S04D01.%20E01%e2%80%9304.iso#83
-#EXTINF:0,,4.5. Resistance
+#EXTINF:2586,,4.5. Resistance
 dvd:///mnt/dvd/archive/S/Sanctuary/S04D02.%20E05%e2%80%9308.iso#80
-#EXTINF:0,,4.6. Homecoming
+#EXTINF:2586,,4.6. Homecoming
 dvd:///mnt/dvd/archive/S/Sanctuary/S04D02.%20E05%e2%80%9308.iso#81
-#EXTINF:0,,4.7. Icebreaker
+#EXTINF:2590,,4.7. Icebreaker
 dvd:///mnt/dvd/archive/S/Sanctuary/S04D02.%20E05%e2%80%9308.iso#82
-#EXTINF:0,,4.8. Fugue
+#EXTINF:2581,,4.8. Fugue
 dvd:///mnt/dvd/archive/S/Sanctuary/S04D02.%20E05%e2%80%9308.iso#83
-#EXTINF:0,,4.9. Chimera
+#EXTINF:2584,,4.9. Chimera
 dvd:///mnt/dvd/archive/S/Sanctuary/S04D03.%20E09%e2%80%9312.iso#80
-#EXTINF:0,,4.10. Acolyte
+#EXTINF:2590,,4.10. Acolyte
 dvd:///mnt/dvd/archive/S/Sanctuary/S04D03.%20E09%e2%80%9312.iso#81
-#EXTINF:0,,4.11. The Depths
+#EXTINF:2595,,4.11. The Depths
 dvd:///mnt/dvd/archive/S/Sanctuary/S04D03.%20E09%e2%80%9312.iso#82
-#EXTINF:0,,4.12. Sanctuary for None (part 1)
+#EXTINF:2589,,4.12. Sanctuary for None (part 1)
 dvd:///mnt/dvd/archive/S/Sanctuary/S04D03.%20E09%e2%80%9312.iso#83
-#EXTINF:0,,4.13. Sanctuary for None (part 2)
+#EXTINF:2589,,4.13. Sanctuary for None (part 2)
 dvd:///mnt/dvd/archive/S/Sanctuary/S04D04.%20E13.iso#80
index 9875e0b..92b363a 100644 (file)
@@ -1,75 +1,75 @@
 #EXTM3U
 
-#EXTINF:0,,Assignment One—Episode 1
+#EXTINF:1550,,Assignment One—Episode 1
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/01.%20S01%20E01%e2%80%9306,%20S02%20E01.iso#2
-#EXTINF:0,,Assignment One—Episode 2
+#EXTINF:1470,,Assignment One—Episode 2
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/01.%20S01%20E01%e2%80%9306,%20S02%20E01.iso#3
-#EXTINF:0,,Assignment One—Episode 3
+#EXTINF:1444,,Assignment One—Episode 3
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/01.%20S01%20E01%e2%80%9306,%20S02%20E01.iso#4
-#EXTINF:0,,Assignment One—Episode 4
+#EXTINF:1504,,Assignment One—Episode 4
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/01.%20S01%20E01%e2%80%9306,%20S02%20E01.iso#5
-#EXTINF:0,,Assignment One—Episode 5
+#EXTINF:1487,,Assignment One—Episode 5
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/01.%20S01%20E01%e2%80%9306,%20S02%20E01.iso#6
-#EXTINF:0,,Assignment One—Episode 6
+#EXTINF:1493,,Assignment One—Episode 6
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/01.%20S01%20E01%e2%80%9306,%20S02%20E01.iso#7
 
-#EXTINF:0,,Assignment Two—Episode 1
+#EXTINF:1629,,Assignment Two—Episode 1
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/01.%20S01%20E01%e2%80%9306,%20S02%20E01.iso#8
-#EXTINF:0,,Assignment Two—Episode 2
+#EXTINF:1549,,Assignment Two—Episode 2
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/02.%20S02%20E02%e2%80%9308.iso#2
-#EXTINF:0,,Assignment Two—Episode 3
+#EXTINF:1498,,Assignment Two—Episode 3
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/02.%20S02%20E02%e2%80%9308.iso#3
-#EXTINF:0,,Assignment Two—Episode 4
+#EXTINF:1550,,Assignment Two—Episode 4
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/02.%20S02%20E02%e2%80%9308.iso#4
-#EXTINF:0,,Assignment Two—Episode 5
+#EXTINF:1550,,Assignment Two—Episode 5
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/02.%20S02%20E02%e2%80%9308.iso#5
-#EXTINF:0,,Assignment Two—Episode 6
+#EXTINF:1604,,Assignment Two—Episode 6
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/02.%20S02%20E02%e2%80%9308.iso#6
-#EXTINF:0,,Assignment Two—Episode 7
+#EXTINF:1579,,Assignment Two—Episode 7
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/02.%20S02%20E02%e2%80%9308.iso#7
-#EXTINF:0,,Assignment Two—Episode 8
+#EXTINF:1567,,Assignment Two—Episode 8
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/02.%20S02%20E02%e2%80%9308.iso#8
 
-#EXTINF:0,,Assignment Three—Episode 1
+#EXTINF:1488,,Assignment Three—Episode 1
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/03.%20S03%20E01%e2%80%9306.iso#2
-#EXTINF:0,,Assignment Three—Episode 2
+#EXTINF:1468,,Assignment Three—Episode 2
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/03.%20S03%20E01%e2%80%9306.iso#3
-#EXTINF:0,,Assignment Three—Episode 3
+#EXTINF:1516,,Assignment Three—Episode 3
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/03.%20S03%20E01%e2%80%9306.iso#4
-#EXTINF:0,,Assignment Three—Episode 4
+#EXTINF:1476,,Assignment Three—Episode 4
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/03.%20S03%20E01%e2%80%9306.iso#5
-#EXTINF:0,,Assignment Three—Episode 5
+#EXTINF:1552,,Assignment Three—Episode 5
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/03.%20S03%20E01%e2%80%9306.iso#6
-#EXTINF:0,,Assignment Three—Episode 6
+#EXTINF:1578,,Assignment Three—Episode 6
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/03.%20S03%20E01%e2%80%9306.iso#7
 
-#EXTINF:0,,Assignment Four—Episode 1
+#EXTINF:1440,,Assignment Four—Episode 1
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/04.%20S04%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Assignment Four—Episode 2
+#EXTINF:1483,,Assignment Four—Episode 2
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/04.%20S04%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Assignment Four—Episode 3
+#EXTINF:1481,,Assignment Four—Episode 3
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/04.%20S04%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Assignment Four—Episode 4
+#EXTINF:1559,,Assignment Four—Episode 4
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/04.%20S04%20E01%e2%80%9304.iso#5
 
-#EXTINF:0,,Assignment Five—Episode 1
+#EXTINF:1538,,Assignment Five—Episode 1
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/05.%20S05%20E01%e2%80%9306.iso#2
-#EXTINF:0,,Assignment Five—Episode 2
+#EXTINF:1464,,Assignment Five—Episode 2
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/05.%20S05%20E01%e2%80%9306.iso#3
-#EXTINF:0,,Assignment Five—Episode 3
+#EXTINF:1428,,Assignment Five—Episode 3
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/05.%20S05%20E01%e2%80%9306.iso#4
-#EXTINF:0,,Assignment Five—Episode 4
+#EXTINF:1511,,Assignment Five—Episode 4
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/05.%20S05%20E01%e2%80%9306.iso#5
-#EXTINF:0,,Assignment Five—Episode 5
+#EXTINF:1535,,Assignment Five—Episode 5
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/05.%20S05%20E01%e2%80%9306.iso#6
-#EXTINF:0,,Assignment Five—Episode 6
+#EXTINF:1535,,Assignment Five—Episode 6
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/05.%20S05%20E01%e2%80%9306.iso#7
 
-#EXTINF:0,,Assignment Six—Episode 1
+#EXTINF:1495,,Assignment Six—Episode 1
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/06.%20S06%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Assignment Six—Episode 2
+#EXTINF:1478,,Assignment Six—Episode 2
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/06.%20S06%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Assignment Six—Episode 3
+#EXTINF:1493,,Assignment Six—Episode 3
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/06.%20S06%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Assignment Six—Episode 4
+#EXTINF:1504,,Assignment Six—Episode 4
 dvd:///mnt/dvd/archive/S/Sapphire%20and%20Steel/06.%20S06%20E01%e2%80%9304.iso#5
index d705ee9..ba29587 100644 (file)
@@ -1,46 +1,46 @@
 #EXTM3U
 
-#EXTINF:0,,1.1. Pilot
+#EXTINF:2526,,1.1. Pilot
 dvd:///mnt/dvd/archive/S/Shark/S01D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,1.2. LAPD Blue
+#EXTINF:2514,,1.2. LAPD Blue
 dvd:///mnt/dvd/archive/S/Shark/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,1.3. Dr. Feelbad
+#EXTINF:2490,,1.3. Dr. Feelbad
 dvd:///mnt/dvd/archive/S/Shark/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,1.4. Russo
+#EXTINF:2415,,1.4. Russo
 dvd:///mnt/dvd/archive/S/Shark/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,1.5. In the Grasp
+#EXTINF:2551,,1.5. In the Grasp
 dvd:///mnt/dvd/archive/S/Shark/S01D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,1.6. Fashion Police
+#EXTINF:2532,,1.6. Fashion Police
 dvd:///mnt/dvd/archive/S/Shark/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,1.7. Déjà Vu All Over Again
+#EXTINF:2551,,1.7. Déjà Vu All Over Again
 dvd:///mnt/dvd/archive/S/Shark/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,1.8. Love Triangle
+#EXTINF:2553,,1.8. Love Triangle
 dvd:///mnt/dvd/archive/S/Shark/S01D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,1.9. Dial M for Monica
+#EXTINF:2523,,1.9. Dial M for Monica
 dvd:///mnt/dvd/archive/S/Shark/S01D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,1.10. Sins of the Mother
+#EXTINF:2513,,1.10. Sins of the Mother
 dvd:///mnt/dvd/archive/S/Shark/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,1.11. The Wrath of Khan
+#EXTINF:2489,,1.11. The Wrath of Khan
 dvd:///mnt/dvd/archive/S/Shark/S01D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,1.12. Wayne's World
+#EXTINF:2514,,1.12. Wayne's World
 dvd:///mnt/dvd/archive/S/Shark/S01D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,1.13. Teacher's Pet
+#EXTINF:2435,,1.13. Teacher's Pet
 dvd:///mnt/dvd/archive/S/Shark/S01D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,1.14. Starlet Fever
+#EXTINF:2528,,1.14. Starlet Fever
 dvd:///mnt/dvd/archive/S/Shark/S01D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,1.15. Here Comes the Judge
+#EXTINF:2469,,1.15. Here Comes the Judge
 dvd:///mnt/dvd/archive/S/Shark/S01D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,1.16. Blind Trust
+#EXTINF:2551,,1.16. Blind Trust
 dvd:///mnt/dvd/archive/S/Shark/S01D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,1.17. Backfire
+#EXTINF:2527,,1.17. Backfire
 dvd:///mnt/dvd/archive/S/Shark/S01D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,1.18. Trial by Fire
+#EXTINF:2549,,1.18. Trial by Fire
 dvd:///mnt/dvd/archive/S/Shark/S01D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,1.19. Porn Free
+#EXTINF:2533,,1.19. Porn Free
 dvd:///mnt/dvd/archive/S/Shark/S01D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,1.20. Fall from Grace
+#EXTINF:2540,,1.20. Fall from Grace
 dvd:///mnt/dvd/archive/S/Shark/S01D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,1.21. Strange Bedfellows
+#EXTINF:2547,,1.21. Strange Bedfellows
 dvd:///mnt/dvd/archive/S/Shark/S01D06.%20E21%e2%80%9322.iso#2
-#EXTINF:0,,1.22. Wayne's World 2: Revenge of the Shark
+#EXTINF:2552,,1.22. Wayne's World 2: Revenge of the Shark
 dvd:///mnt/dvd/archive/S/Shark/S01D06.%20E21%e2%80%9322.iso#3
index 51f8463..aa1ac35 100644 (file)
@@ -1,87 +1,87 @@
 #EXTM3U
 
-#EXTINF:0,,The Adventures of Sherlock Holmes—1. A Scandal in Bohemia
+#EXTINF:3127,,The Adventures of Sherlock Holmes—1. A Scandal in Bohemia
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S01D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,The Adventures of Sherlock Holmes—2. The Dancing Men
+#EXTINF:3122,,The Adventures of Sherlock Holmes—2. The Dancing Men
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S01D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,The Adventures of Sherlock Holmes—3. The Naval Treaty
+#EXTINF:3126,,The Adventures of Sherlock Holmes—3. The Naval Treaty
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,The Adventures of Sherlock Holmes—4. The Solitary Cyclist
+#EXTINF:3122,,The Adventures of Sherlock Holmes—4. The Solitary Cyclist
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,The Adventures of Sherlock Holmes—5. The Crooked Man
+#EXTINF:3096,,The Adventures of Sherlock Holmes—5. The Crooked Man
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S01D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,The Adventures of Sherlock Holmes—6. The Speckled Band
+#EXTINF:3149,,The Adventures of Sherlock Holmes—6. The Speckled Band
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S01D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,The Adventures of Sherlock Holmes—7. The Blue Carbuncle
+#EXTINF:3107,,The Adventures of Sherlock Holmes—7. The Blue Carbuncle
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,The Adventures of Sherlock Holmes—8. The Copper Beeches
+#EXTINF:3074,,The Adventures of Sherlock Holmes—8. The Copper Beeches
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,The Adventures of Sherlock Holmes—9. The Greek Interpreter
+#EXTINF:3018,,The Adventures of Sherlock Holmes—9. The Greek Interpreter
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S01D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,The Adventures of Sherlock Holmes—10. The Norwood Builder
+#EXTINF:3121,,The Adventures of Sherlock Holmes—10. The Norwood Builder
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S01D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,The Adventures of Sherlock Holmes—11. The Resident Patient
+#EXTINF:3069,,The Adventures of Sherlock Holmes—11. The Resident Patient
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,The Adventures of Sherlock Holmes—12. The Red Headed League
+#EXTINF:3098,,The Adventures of Sherlock Holmes—12. The Red Headed League
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S01D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,The Adventures of Sherlock Holmes—13. The Final Problem
+#EXTINF:3084,,The Adventures of Sherlock Holmes—13. The Final Problem
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S01D04.%20E13.iso#1
 
-#EXTINF:0,,The Return of Sherlock Holmes—1. The Empty House
+#EXTINF:3045,,The Return of Sherlock Holmes—1. The Empty House
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S02D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,The Return of Sherlock Holmes—2. The Priory School
+#EXTINF:3133,,The Return of Sherlock Holmes—2. The Priory School
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S02D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,The Return of Sherlock Holmes—3. The Second Stain
+#EXTINF:3033,,The Return of Sherlock Holmes—3. The Second Stain
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,The Return of Sherlock Holmes—4. The Musgrave Ritual
+#EXTINF:3103,,The Return of Sherlock Holmes—4. The Musgrave Ritual
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,The Return of Sherlock Holmes—5. The Abbey Grange
+#EXTINF:3095,,The Return of Sherlock Holmes—5. The Abbey Grange
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S02D02.%20E05%e2%80%9307.iso#1
-#EXTINF:0,,The Return of Sherlock Holmes—6. The Man with the Twisted Lip
+#EXTINF:3128,,The Return of Sherlock Holmes—6. The Man with the Twisted Lip
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S02D02.%20E05%e2%80%9307.iso#2
-#EXTINF:0,,The Return of Sherlock Holmes—7. The Six Napoleons
+#EXTINF:3109,,The Return of Sherlock Holmes—7. The Six Napoleons
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S02D02.%20E05%e2%80%9307.iso#3
-#EXTINF:0,,The Return of Sherlock Holmes—8. The Sign of Four
+#EXTINF:6185,,The Return of Sherlock Holmes—8. The Sign of Four
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S02D03.%20E08.iso#1
-#EXTINF:0,,The Return of Sherlock Holmes—9. The Devil's Foot
+#EXTINF:3070,,The Return of Sherlock Holmes—9. The Devil's Foot
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S02D04.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,The Return of Sherlock Holmes—10. Silver Blaze
+#EXTINF:3063,,The Return of Sherlock Holmes—10. Silver Blaze
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S02D04.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,The Return of Sherlock Holmes—11. Wisteria Lodge
+#EXTINF:3122,,The Return of Sherlock Holmes—11. Wisteria Lodge
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S02D04.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,The Return of Sherlock Holmes—12. The Bruce Partington Plans
+#EXTINF:3162,,The Return of Sherlock Holmes—12. The Bruce Partington Plans
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S02D04.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,The Return of Sherlock Holmes—13. The Hound of the Baskervilles
+#EXTINF:6078,,The Return of Sherlock Holmes—13. The Hound of the Baskervilles
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S02D05.%20E13.iso#1
 
-#EXTINF:0,,The Casebook of Sherlock Holmes—1. The Disappearance of Lady Frances Carfax
+#EXTINF:2995,,The Casebook of Sherlock Holmes—1. The Disappearance of Lady Frances Carfax
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S03D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,The Casebook of Sherlock Holmes—2. The Problem of Thor Bridge
+#EXTINF:2881,,The Casebook of Sherlock Holmes—2. The Problem of Thor Bridge
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S03D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,The Casebook of Sherlock Holmes—3. Shoscombe Old Place
+#EXTINF:3073,,The Casebook of Sherlock Holmes—3. Shoscombe Old Place
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,The Casebook of Sherlock Holmes—4. The Boscombe Abbey Mystery
+#EXTINF:3073,,The Casebook of Sherlock Holmes—4. The Boscombe Abbey Mystery
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,The Casebook of Sherlock Holmes—5. The Illustrious Client
+#EXTINF:3106,,The Casebook of Sherlock Holmes—5. The Illustrious Client
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S03D02.%20E05%e2%80%9306.iso#1
-#EXTINF:0,,The Casebook of Sherlock Holmes—6. The Creeping Man
+#EXTINF:3007,,The Casebook of Sherlock Holmes—6. The Creeping Man
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S03D02.%20E05%e2%80%9306.iso#2
-#EXTINF:0,,The Casebook of Sherlock Holmes—7. The Master Blackmailer
+#EXTINF:6157,,The Casebook of Sherlock Holmes—7. The Master Blackmailer
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S03D03.%20E07.iso#1
-#EXTINF:0,,The Casebook of Sherlock Holmes—8. The Last Vampyre
+#EXTINF:6075,,The Casebook of Sherlock Holmes—8. The Last Vampyre
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S03D04.%20E08.iso#1
-#EXTINF:0,,The Casebook of Sherlock Holmes—9. The Eligible Bachelor
+#EXTINF:6220,,The Casebook of Sherlock Holmes—9. The Eligible Bachelor
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S03D05.%20E09.iso#1
 
-#EXTINF:0,,The Memoirs of Sherlock Holmes—1. The Three Gables
+#EXTINF:3046,,The Memoirs of Sherlock Holmes—1. The Three Gables
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S04D01.%20E01%e2%80%9303.iso#1
-#EXTINF:0,,The Memoirs of Sherlock Holmes—2. The Dying Detective
+#EXTINF:3063,,The Memoirs of Sherlock Holmes—2. The Dying Detective
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S04D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,The Memoirs of Sherlock Holmes—3. The Golden Pince-Nez
+#EXTINF:3043,,The Memoirs of Sherlock Holmes—3. The Golden Pince-Nez
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S04D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,The Memoirs of Sherlock Holmes—4. The Red Circle
+#EXTINF:3054,,The Memoirs of Sherlock Holmes—4. The Red Circle
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S04D02.%20E04%e2%80%9306.iso#1
-#EXTINF:0,,The Memoirs of Sherlock Holmes—5. The Mazarin Stone
+#EXTINF:3044,,The Memoirs of Sherlock Holmes—5. The Mazarin Stone
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S04D02.%20E04%e2%80%9306.iso#2
-#EXTINF:0,,The Memoirs of Sherlock Holmes—6. The Cardboard Box
+#EXTINF:3054,,The Memoirs of Sherlock Holmes—6. The Cardboard Box
 dvd:///mnt/dvd/archive/H/Sherlock%20Holmes%20%281984%29/S04D02.%20E04%e2%80%9306.iso#3
index 15da688..bb151ce 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Pilot
+#EXTINF:2887,,1.1. Pilot
 dvd:///mnt/dvd/archive/S/Smallville/S01D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,1.2. Metamorphosis
+#EXTINF:2593,,1.2. Metamorphosis
 dvd:///mnt/dvd/archive/S/Smallville/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,1.3. Hothead
+#EXTINF:2543,,1.3. Hothead
 dvd:///mnt/dvd/archive/S/Smallville/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,1.4. X-Ray
+#EXTINF:2562,,1.4. X-Ray
 dvd:///mnt/dvd/archive/S/Smallville/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,1.5. Cool
+#EXTINF:2539,,1.5. Cool
 dvd:///mnt/dvd/archive/S/Smallville/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,1.6. Hourglass
+#EXTINF:2553,,1.6. Hourglass
 dvd:///mnt/dvd/archive/S/Smallville/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,1.7. Craving
+#EXTINF:2526,,1.7. Craving
 dvd:///mnt/dvd/archive/S/Smallville/S01D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,1.8. Jitters
+#EXTINF:2419,,1.8. Jitters
 dvd:///mnt/dvd/archive/S/Smallville/S01D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,1.9. Rogue
+#EXTINF:2542,,1.9. Rogue
 dvd:///mnt/dvd/archive/S/Smallville/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,1.10. Shimmer
+#EXTINF:2535,,1.10. Shimmer
 dvd:///mnt/dvd/archive/S/Smallville/S01D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,1.11. Hug
+#EXTINF:2550,,1.11. Hug
 dvd:///mnt/dvd/archive/S/Smallville/S01D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,1.12. Leech
+#EXTINF:2481,,1.12. Leech
 dvd:///mnt/dvd/archive/S/Smallville/S01D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,1.13. Kinetic
+#EXTINF:2513,,1.13. Kinetic
 dvd:///mnt/dvd/archive/S/Smallville/S01D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,1.14. Zero
+#EXTINF:2379,,1.14. Zero
 dvd:///mnt/dvd/archive/S/Smallville/S01D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,1.15. Nicodemus
+#EXTINF:2542,,1.15. Nicodemus
 dvd:///mnt/dvd/archive/S/Smallville/S01D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,1.16. Stray
+#EXTINF:2538,,1.16. Stray
 dvd:///mnt/dvd/archive/S/Smallville/S01D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,1.17. Reaper
+#EXTINF:2541,,1.17. Reaper
 dvd:///mnt/dvd/archive/S/Smallville/S01D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,1.18. Drone
+#EXTINF:2470,,1.18. Drone
 dvd:///mnt/dvd/archive/S/Smallville/S01D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,1.19. Crush
+#EXTINF:2487,,1.19. Crush
 dvd:///mnt/dvd/archive/S/Smallville/S01D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,1.20. Obscura
+#EXTINF:2501,,1.20. Obscura
 dvd:///mnt/dvd/archive/S/Smallville/S01D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,1.21. Tempest
+#EXTINF:2515,,1.21. Tempest
 dvd:///mnt/dvd/archive/S/Smallville/S01D06.%20E21.iso#2
 
-#EXTINF:0,,2.1. Vortex
+#EXTINF:2461,,2.1. Vortex
 dvd:///mnt/dvd/archive/S/Smallville/S02D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,2.2. Heat
+#EXTINF:2498,,2.2. Heat
 dvd:///mnt/dvd/archive/S/Smallville/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,2.3. Duplicity
+#EXTINF:2426,,2.3. Duplicity
 dvd:///mnt/dvd/archive/S/Smallville/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.4. Red
+#EXTINF:2530,,2.4. Red
 dvd:///mnt/dvd/archive/S/Smallville/S02D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,2.5. Nocturne
+#EXTINF:2423,,2.5. Nocturne
 dvd:///mnt/dvd/archive/S/Smallville/S02D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,2.6. Redux
+#EXTINF:2359,,2.6. Redux
 dvd:///mnt/dvd/archive/S/Smallville/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,2.7. Lineage
+#EXTINF:2526,,2.7. Lineage
 dvd:///mnt/dvd/archive/S/Smallville/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.8. Ryan
+#EXTINF:2481,,2.8. Ryan
 dvd:///mnt/dvd/archive/S/Smallville/S02D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,2.9. Dichotic
+#EXTINF:2443,,2.9. Dichotic
 dvd:///mnt/dvd/archive/S/Smallville/S02D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,2.10. Skinwalker
+#EXTINF:2415,,2.10. Skinwalker
 dvd:///mnt/dvd/archive/S/Smallville/S02D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,2.11. Visage
+#EXTINF:2511,,2.11. Visage
 dvd:///mnt/dvd/archive/S/Smallville/S02D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,2.12. Insurgence
+#EXTINF:2539,,2.12. Insurgence
 dvd:///mnt/dvd/archive/S/Smallville/S02D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,2.13. Suspect
+#EXTINF:2449,,2.13. Suspect
 dvd:///mnt/dvd/archive/S/Smallville/S02D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,2.14. Rush
+#EXTINF:2468,,2.14. Rush
 dvd:///mnt/dvd/archive/S/Smallville/S02D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,2.15. Prodigal
+#EXTINF:2529,,2.15. Prodigal
 dvd:///mnt/dvd/archive/S/Smallville/S02D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,2.16. Fever
+#EXTINF:2514,,2.16. Fever
 dvd:///mnt/dvd/archive/S/Smallville/S02D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,2.17. Rosetta
+#EXTINF:2542,,2.17. Rosetta
 dvd:///mnt/dvd/archive/S/Smallville/S02D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,2.18. Visitor
+#EXTINF:2465,,2.18. Visitor
 dvd:///mnt/dvd/archive/S/Smallville/S02D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,2.19. Precipice
+#EXTINF:2527,,2.19. Precipice
 dvd:///mnt/dvd/archive/S/Smallville/S02D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,2.20. Witness
+#EXTINF:2421,,2.20. Witness
 dvd:///mnt/dvd/archive/S/Smallville/S02D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,2.21. Accelerate
+#EXTINF:2544,,2.21. Accelerate
 dvd:///mnt/dvd/archive/S/Smallville/S02D06.%20E21%e2%80%9323.iso#2
-#EXTINF:0,,2.22. Calling
+#EXTINF:2532,,2.22. Calling
 dvd:///mnt/dvd/archive/S/Smallville/S02D06.%20E21%e2%80%9323.iso#3
-#EXTINF:0,,2.23. Exodus
+#EXTINF:2531,,2.23. Exodus
 dvd:///mnt/dvd/archive/S/Smallville/S02D06.%20E21%e2%80%9323.iso#4
 
-#EXTINF:0,,3.1. Exile
+#EXTINF:2482,,3.1. Exile
 dvd:///mnt/dvd/archive/S/Smallville/S03D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,3.2. Phoenix
+#EXTINF:2539,,3.2. Phoenix
 dvd:///mnt/dvd/archive/S/Smallville/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,3.3. Extinction
+#EXTINF:2403,,3.3. Extinction
 dvd:///mnt/dvd/archive/S/Smallville/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,3.4. Slumber
+#EXTINF:2533,,3.4. Slumber
 dvd:///mnt/dvd/archive/S/Smallville/S03D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,3.5. Perry
+#EXTINF:2547,,3.5. Perry
 dvd:///mnt/dvd/archive/S/Smallville/S03D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,3.6. Relic
+#EXTINF:2528,,3.6. Relic
 dvd:///mnt/dvd/archive/S/Smallville/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,3.7. Magnetic
+#EXTINF:2473,,3.7. Magnetic
 dvd:///mnt/dvd/archive/S/Smallville/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,3.8. Shattered
+#EXTINF:2514,,3.8. Shattered
 dvd:///mnt/dvd/archive/S/Smallville/S03D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,3.9. Asylum
+#EXTINF:2549,,3.9. Asylum
 dvd:///mnt/dvd/archive/S/Smallville/S03D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,3.10. Whisper
+#EXTINF:2360,,3.10. Whisper
 dvd:///mnt/dvd/archive/S/Smallville/S03D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,3.11. Delete
+#EXTINF:2462,,3.11. Delete
 dvd:///mnt/dvd/archive/S/Smallville/S03D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,3.12. Hereafter
+#EXTINF:2411,,3.12. Hereafter
 dvd:///mnt/dvd/archive/S/Smallville/S03D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,3.13. Velocity
+#EXTINF:2463,,3.13. Velocity
 dvd:///mnt/dvd/archive/S/Smallville/S03D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,3.14. Obsession
+#EXTINF:2457,,3.14. Obsession
 dvd:///mnt/dvd/archive/S/Smallville/S03D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,3.15. Resurrection
+#EXTINF:2383,,3.15. Resurrection
 dvd:///mnt/dvd/archive/S/Smallville/S03D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,3.16. Crisis
+#EXTINF:2460,,3.16. Crisis
 dvd:///mnt/dvd/archive/S/Smallville/S03D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,3.17. Legacy
+#EXTINF:2492,,3.17. Legacy
 dvd:///mnt/dvd/archive/S/Smallville/S03D05.%20E17%e2%80%9319.iso#2
-#EXTINF:0,,3.18. Truth
+#EXTINF:2509,,3.18. Truth
 dvd:///mnt/dvd/archive/S/Smallville/S03D05.%20E17%e2%80%9319.iso#3
-#EXTINF:0,,3.19. Memoria
+#EXTINF:2513,,3.19. Memoria
 dvd:///mnt/dvd/archive/S/Smallville/S03D05.%20E17%e2%80%9319.iso#4
-#EXTINF:0,,3.20. Talisman
+#EXTINF:2420,,3.20. Talisman
 dvd:///mnt/dvd/archive/S/Smallville/S03D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,3.21. Forsaken
+#EXTINF:2474,,3.21. Forsaken
 dvd:///mnt/dvd/archive/S/Smallville/S03D06.%20E20%e2%80%9322.iso#3
-#EXTINF:0,,3.22. Covenant
+#EXTINF:2489,,3.22. Covenant
 dvd:///mnt/dvd/archive/S/Smallville/S03D06.%20E20%e2%80%9322.iso#4
 
-#EXTINF:0,,4.1. Crusade
+#EXTINF:2522,,4.1. Crusade
 dvd:///mnt/dvd/archive/S/Smallville/S04D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,4.2. Gone
+#EXTINF:2367,,4.2. Gone
 dvd:///mnt/dvd/archive/S/Smallville/S04D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,4.3. Façade
+#EXTINF:2419,,4.3. Façade
 dvd:///mnt/dvd/archive/S/Smallville/S04D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,4.4. Devoted
+#EXTINF:2482,,4.4. Devoted
 dvd:///mnt/dvd/archive/S/Smallville/S04D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,4.5. Run
+#EXTINF:2423,,4.5. Run
 dvd:///mnt/dvd/archive/S/Smallville/S04D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,4.6. Transference
+#EXTINF:2502,,4.6. Transference
 dvd:///mnt/dvd/archive/S/Smallville/S04D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,4.7. Jinx
+#EXTINF:2438,,4.7. Jinx
 dvd:///mnt/dvd/archive/S/Smallville/S04D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,4.8. Spell
+#EXTINF:2456,,4.8. Spell
 dvd:///mnt/dvd/archive/S/Smallville/S04D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,4.9. Bound
+#EXTINF:2462,,4.9. Bound
 dvd:///mnt/dvd/archive/S/Smallville/S04D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,4.10. Scare
+#EXTINF:2355,,4.10. Scare
 dvd:///mnt/dvd/archive/S/Smallville/S04D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,4.11. Unsafe
+#EXTINF:2473,,4.11. Unsafe
 dvd:///mnt/dvd/archive/S/Smallville/S04D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,4.12. Pariah
+#EXTINF:2392,,4.12. Pariah
 dvd:///mnt/dvd/archive/S/Smallville/S04D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,4.13. Recruit
+#EXTINF:2456,,4.13. Recruit
 dvd:///mnt/dvd/archive/S/Smallville/S04D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,4.14. Krypto
+#EXTINF:2506,,4.14. Krypto
 dvd:///mnt/dvd/archive/S/Smallville/S04D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,4.15. Sacred
+#EXTINF:2497,,4.15. Sacred
 dvd:///mnt/dvd/archive/S/Smallville/S04D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,4.16. Lucy
+#EXTINF:2456,,4.16. Lucy
 dvd:///mnt/dvd/archive/S/Smallville/S04D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,4.17. Onyx
+#EXTINF:2499,,4.17. Onyx
 dvd:///mnt/dvd/archive/S/Smallville/S04D05.%20E17%e2%80%9319.iso#3
-#EXTINF:0,,4.18. Spirit
+#EXTINF:2518,,4.18. Spirit
 dvd:///mnt/dvd/archive/S/Smallville/S04D05.%20E17%e2%80%9319.iso#4
-#EXTINF:0,,4.19. Blank
+#EXTINF:2511,,4.19. Blank
 dvd:///mnt/dvd/archive/S/Smallville/S04D05.%20E17%e2%80%9319.iso#5
-#EXTINF:0,,4.20. Ageless
+#EXTINF:2482,,4.20. Ageless
 dvd:///mnt/dvd/archive/S/Smallville/S04D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,4.21. Forever
+#EXTINF:2467,,4.21. Forever
 dvd:///mnt/dvd/archive/S/Smallville/S04D06.%20E20%e2%80%9322.iso#3
-#EXTINF:0,,4.22. Commencement
+#EXTINF:3047,,4.22. Commencement
 dvd:///mnt/dvd/archive/S/Smallville/S04D06.%20E20%e2%80%9322.iso#4
 
-#EXTINF:0,,5.1. Arrival
+#EXTINF:2444,,5.1. Arrival
 dvd:///mnt/dvd/archive/S/Smallville/S05D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,5.2. Mortal
+#EXTINF:2405,,5.2. Mortal
 dvd:///mnt/dvd/archive/S/Smallville/S05D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,5.3. Hidden
+#EXTINF:2449,,5.3. Hidden
 dvd:///mnt/dvd/archive/S/Smallville/S05D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,5.4. Aqua
+#EXTINF:2374,,5.4. Aqua
 dvd:///mnt/dvd/archive/S/Smallville/S05D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,5.5. Thirst
+#EXTINF:2366,,5.5. Thirst
 dvd:///mnt/dvd/archive/S/Smallville/S05D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,5.6. Exposed
+#EXTINF:2397,,5.6. Exposed
 dvd:///mnt/dvd/archive/S/Smallville/S05D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,5.7. Splinter
+#EXTINF:2480,,5.7. Splinter
 dvd:///mnt/dvd/archive/S/Smallville/S05D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,5.8. Solitude
+#EXTINF:2385,,5.8. Solitude
 dvd:///mnt/dvd/archive/S/Smallville/S05D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,5.9. Lexmas
+#EXTINF:2471,,5.9. Lexmas
 dvd:///mnt/dvd/archive/S/Smallville/S05D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,5.10. Fanatic
+#EXTINF:2401,,5.10. Fanatic
 dvd:///mnt/dvd/archive/S/Smallville/S05D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,5.11. Lockdown
+#EXTINF:2391,,5.11. Lockdown
 dvd:///mnt/dvd/archive/S/Smallville/S05D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,5.12. Reckoning
+#EXTINF:2494,,5.12. Reckoning
 dvd:///mnt/dvd/archive/S/Smallville/S05D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,5.13. Vengeance
+#EXTINF:2403,,5.13. Vengeance
 dvd:///mnt/dvd/archive/S/Smallville/S05D04.%20E13%e2%80%9315.iso#2
-#EXTINF:0,,5.14. Tomb
+#EXTINF:2339,,5.14. Tomb
 dvd:///mnt/dvd/archive/S/Smallville/S05D04.%20E13%e2%80%9315.iso#3
-#EXTINF:0,,5.15. Cyborg
+#EXTINF:2366,,5.15. Cyborg
 dvd:///mnt/dvd/archive/S/Smallville/S05D04.%20E13%e2%80%9315.iso#4
-#EXTINF:0,,5.16. Hypnotic
+#EXTINF:2423,,5.16. Hypnotic
 dvd:///mnt/dvd/archive/S/Smallville/S05D05.%20E16%e2%80%9319.iso#2
-#EXTINF:0,,5.17. Void
+#EXTINF:2365,,5.17. Void
 dvd:///mnt/dvd/archive/S/Smallville/S05D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,5.18. Fragile
+#EXTINF:2446,,5.18. Fragile
 dvd:///mnt/dvd/archive/S/Smallville/S05D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,5.19. Mercy
+#EXTINF:2503,,5.19. Mercy
 dvd:///mnt/dvd/archive/S/Smallville/S05D05.%20E16%e2%80%9319.iso#5
-#EXTINF:0,,5.20. Fade
+#EXTINF:2438,,5.20. Fade
 dvd:///mnt/dvd/archive/S/Smallville/S05D06.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,5.21. Oracle
+#EXTINF:2474,,5.21. Oracle
 dvd:///mnt/dvd/archive/S/Smallville/S05D06.%20E20%e2%80%9322.iso#3
-#EXTINF:0,,5.22. Vessel
+#EXTINF:2502,,5.22. Vessel
 dvd:///mnt/dvd/archive/S/Smallville/S05D06.%20E20%e2%80%9322.iso#4
 
-#EXTINF:0,,6.1. Zod
+#EXTINF:2459,,6.1. Zod
 dvd:///mnt/dvd/archive/S/Smallville/S06D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,6.2. Sneeze
+#EXTINF:2436,,6.2. Sneeze
 dvd:///mnt/dvd/archive/S/Smallville/S06D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,6.3. Wither
+#EXTINF:2414,,6.3. Wither
 dvd:///mnt/dvd/archive/S/Smallville/S06D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,6.4. Arrow
+#EXTINF:2432,,6.4. Arrow
 dvd:///mnt/dvd/archive/S/Smallville/S06D02.%20E04%e2%80%9306.iso#2
-#EXTINF:0,,6.5. Reunion
+#EXTINF:2427,,6.5. Reunion
 dvd:///mnt/dvd/archive/S/Smallville/S06D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,6.6. Fallout
+#EXTINF:2319,,6.6. Fallout
 dvd:///mnt/dvd/archive/S/Smallville/S06D02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,6.7. Rage
+#EXTINF:2442,,6.7. Rage
 dvd:///mnt/dvd/archive/S/Smallville/S06D03.%20E07%e2%80%9310.iso#2
-#EXTINF:0,,6.8. Static
+#EXTINF:2380,,6.8. Static
 dvd:///mnt/dvd/archive/S/Smallville/S06D03.%20E07%e2%80%9310.iso#3
-#EXTINF:0,,6.9. Subterranean
+#EXTINF:2327,,6.9. Subterranean
 dvd:///mnt/dvd/archive/S/Smallville/S06D03.%20E07%e2%80%9310.iso#4
-#EXTINF:0,,6.10. Hydro
+#EXTINF:2451,,6.10. Hydro
 dvd:///mnt/dvd/archive/S/Smallville/S06D03.%20E07%e2%80%9310.iso#5
-#EXTINF:0,,6.11. Justice
+#EXTINF:2456,,6.11. Justice
 dvd:///mnt/dvd/archive/S/Smallville/S06D04.%20E11%e2%80%9314.iso#2
-#EXTINF:0,,6.12. Labyrinth
+#EXTINF:2292,,6.12. Labyrinth
 dvd:///mnt/dvd/archive/S/Smallville/S06D04.%20E11%e2%80%9314.iso#3
-#EXTINF:0,,6.13. Crimson
+#EXTINF:2455,,6.13. Crimson
 dvd:///mnt/dvd/archive/S/Smallville/S06D04.%20E11%e2%80%9314.iso#4
-#EXTINF:0,,6.14. Trespass
+#EXTINF:2431,,6.14. Trespass
 dvd:///mnt/dvd/archive/S/Smallville/S06D04.%20E11%e2%80%9314.iso#5
-#EXTINF:0,,6.15. Freak
+#EXTINF:2449,,6.15. Freak
 dvd:///mnt/dvd/archive/S/Smallville/S06D05.%20E15%e2%80%9318.iso#2
-#EXTINF:0,,6.16. Promise
+#EXTINF:2440,,6.16. Promise
 dvd:///mnt/dvd/archive/S/Smallville/S06D05.%20E15%e2%80%9318.iso#3
-#EXTINF:0,,6.17. Combat
+#EXTINF:2321,,6.17. Combat
 dvd:///mnt/dvd/archive/S/Smallville/S06D05.%20E15%e2%80%9318.iso#4
-#EXTINF:0,,6.18. Progeny
+#EXTINF:2328,,6.18. Progeny
 dvd:///mnt/dvd/archive/S/Smallville/S06D05.%20E15%e2%80%9318.iso#5
-#EXTINF:0,,6.19. Nemesis
+#EXTINF:2377,,6.19. Nemesis
 dvd:///mnt/dvd/archive/S/Smallville/S06D06.%20E19%e2%80%9322.iso#2
-#EXTINF:0,,6.20. Noir
+#EXTINF:2412,,6.20. Noir
 dvd:///mnt/dvd/archive/S/Smallville/S06D06.%20E19%e2%80%9322.iso#3
-#EXTINF:0,,6.21. Prototype
+#EXTINF:2373,,6.21. Prototype
 dvd:///mnt/dvd/archive/S/Smallville/S06D06.%20E19%e2%80%9322.iso#4
-#EXTINF:0,,6.22. Phantom
+#EXTINF:2361,,6.22. Phantom
 dvd:///mnt/dvd/archive/S/Smallville/S06D06.%20E19%e2%80%9322.iso#5
 
-#EXTINF:0,,7.1. Bizarro
+#EXTINF:2426,,7.1. Bizarro
 dvd:///mnt/dvd/archive/S/Smallville/S07D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,7.2. Kara
+#EXTINF:2335,,7.2. Kara
 dvd:///mnt/dvd/archive/S/Smallville/S07D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,7.3. Fierce
+#EXTINF:2347,,7.3. Fierce
 dvd:///mnt/dvd/archive/S/Smallville/S07D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,7.4. Cure
+#EXTINF:2406,,7.4. Cure
 dvd:///mnt/dvd/archive/S/Smallville/S07D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,7.5. Action
+#EXTINF:2395,,7.5. Action
 dvd:///mnt/dvd/archive/S/Smallville/S07D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,7.6. Lara
+#EXTINF:2391,,7.6. Lara
 dvd:///mnt/dvd/archive/S/Smallville/S07D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,7.7. Wrath
+#EXTINF:2421,,7.7. Wrath
 dvd:///mnt/dvd/archive/S/Smallville/S07D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,7.8. Blue
+#EXTINF:2320,,7.8. Blue
 dvd:///mnt/dvd/archive/S/Smallville/S07D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,7.9. Gemini
+#EXTINF:2396,,7.9. Gemini
 dvd:///mnt/dvd/archive/S/Smallville/S07D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,7.10. Persona
+#EXTINF:2385,,7.10. Persona
 dvd:///mnt/dvd/archive/S/Smallville/S07D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,7.11. Siren
+#EXTINF:2452,,7.11. Siren
 dvd:///mnt/dvd/archive/S/Smallville/S07D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,7.12. Fracture
+#EXTINF:2407,,7.12. Fracture
 dvd:///mnt/dvd/archive/S/Smallville/S07D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,7.13. Hero
+#EXTINF:2432,,7.13. Hero
 dvd:///mnt/dvd/archive/S/Smallville/S07D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,7.14. Traveler
+#EXTINF:2421,,7.14. Traveler
 dvd:///mnt/dvd/archive/S/Smallville/S07D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,7.15. Veritas
+#EXTINF:2302,,7.15. Veritas
 dvd:///mnt/dvd/archive/S/Smallville/S07D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,7.16. Descent
+#EXTINF:2437,,7.16. Descent
 dvd:///mnt/dvd/archive/S/Smallville/S07D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,7.17. Sleeper
+#EXTINF:2306,,7.17. Sleeper
 dvd:///mnt/dvd/archive/S/Smallville/S07D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,7.18. Apocalypse
+#EXTINF:2353,,7.18. Apocalypse
 dvd:///mnt/dvd/archive/S/Smallville/S07D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,7.19. Quest
+#EXTINF:2449,,7.19. Quest
 dvd:///mnt/dvd/archive/S/Smallville/S07D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,7.20. Arctic
+#EXTINF:2371,,7.20. Arctic
 dvd:///mnt/dvd/archive/S/Smallville/S07D05.%20E17%e2%80%9320.iso#6
 
-#EXTINF:0,,8.1. Odyssey
+#EXTINF:2454,,8.1. Odyssey
 dvd:///mnt/dvd/archive/S/Smallville/S08D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,8.2. Plastique
+#EXTINF:2450,,8.2. Plastique
 dvd:///mnt/dvd/archive/S/Smallville/S08D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,8.3. Toxic
+#EXTINF:2450,,8.3. Toxic
 dvd:///mnt/dvd/archive/S/Smallville/S08D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,8.4. Instinct
+#EXTINF:2451,,8.4. Instinct
 dvd:///mnt/dvd/archive/S/Smallville/S08D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,8.5. Committed
+#EXTINF:2450,,8.5. Committed
 dvd:///mnt/dvd/archive/S/Smallville/S08D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,8.6. Prey
+#EXTINF:2448,,8.6. Prey
 dvd:///mnt/dvd/archive/S/Smallville/S08D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,8.7. Identity
+#EXTINF:2451,,8.7. Identity
 dvd:///mnt/dvd/archive/S/Smallville/S08D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,8.8. Bloodline
+#EXTINF:2447,,8.8. Bloodline
 dvd:///mnt/dvd/archive/S/Smallville/S08D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,8.9. Abyss
+#EXTINF:2445,,8.9. Abyss
 dvd:///mnt/dvd/archive/S/Smallville/S08D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,8.10. Bride
+#EXTINF:2423,,8.10. Bride
 dvd:///mnt/dvd/archive/S/Smallville/S08D03.%20E09%e2%80%9311.iso#4
-#EXTINF:0,,8.11. Legion
+#EXTINF:2449,,8.11. Legion
 dvd:///mnt/dvd/archive/S/Smallville/S08D03.%20E09%e2%80%9311.iso#5
-#EXTINF:0,,8.12. Bulletproof
+#EXTINF:2429,,8.12. Bulletproof
 dvd:///mnt/dvd/archive/S/Smallville/S08D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,8.13. Power
+#EXTINF:2434,,8.13. Power
 dvd:///mnt/dvd/archive/S/Smallville/S08D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,8.14. Requiem
+#EXTINF:2439,,8.14. Requiem
 dvd:///mnt/dvd/archive/S/Smallville/S08D04.%20E12%e2%80%9315.iso#5
-#EXTINF:0,,8.15. Infamous
+#EXTINF:2448,,8.15. Infamous
 dvd:///mnt/dvd/archive/S/Smallville/S08D04.%20E12%e2%80%9315.iso#6
-#EXTINF:0,,8.16. Turbulence
+#EXTINF:2441,,8.16. Turbulence
 dvd:///mnt/dvd/archive/S/Smallville/S08D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,8.17. Hex
+#EXTINF:2434,,8.17. Hex
 dvd:///mnt/dvd/archive/S/Smallville/S08D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,8.18. Eternal
+#EXTINF:2449,,8.18. Eternal
 dvd:///mnt/dvd/archive/S/Smallville/S08D05.%20E16%e2%80%9319.iso#5
-#EXTINF:0,,8.19. Stiletto
+#EXTINF:2452,,8.19. Stiletto
 dvd:///mnt/dvd/archive/S/Smallville/S08D05.%20E16%e2%80%9319.iso#6
-#EXTINF:0,,8.20. Beast
+#EXTINF:2443,,8.20. Beast
 dvd:///mnt/dvd/archive/S/Smallville/S08D06.%20E20%e2%80%9322.iso#3
-#EXTINF:0,,8.21. Injustice
+#EXTINF:2452,,8.21. Injustice
 dvd:///mnt/dvd/archive/S/Smallville/S08D06.%20E20%e2%80%9322.iso#4
-#EXTINF:0,,8.22. Doomsday
+#EXTINF:2477,,8.22. Doomsday
 dvd:///mnt/dvd/archive/S/Smallville/S08D06.%20E20%e2%80%9322.iso#5
 
-#EXTINF:0,,9.1. Savior
+#EXTINF:2430,,9.1. Savior
 dvd:///mnt/dvd/archive/S/Smallville/S09D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,9.2. Metallo
+#EXTINF:2432,,9.2. Metallo
 dvd:///mnt/dvd/archive/S/Smallville/S09D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,9.3. Rabid
+#EXTINF:2435,,9.3. Rabid
 dvd:///mnt/dvd/archive/S/Smallville/S09D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,9.4. Echo
+#EXTINF:2436,,9.4. Echo
 dvd:///mnt/dvd/archive/S/Smallville/S09D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,9.5. Roulette
+#EXTINF:2431,,9.5. Roulette
 dvd:///mnt/dvd/archive/S/Smallville/S09D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,9.6. Crossfire
+#EXTINF:2430,,9.6. Crossfire
 dvd:///mnt/dvd/archive/S/Smallville/S09D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,9.7. Kandor
+#EXTINF:2438,,9.7. Kandor
 dvd:///mnt/dvd/archive/S/Smallville/S09D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,9.8. Idol
+#EXTINF:2419,,9.8. Idol
 dvd:///mnt/dvd/archive/S/Smallville/S09D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,9.9. Pandora
+#EXTINF:2439,,9.9. Pandora
 dvd:///mnt/dvd/archive/S/Smallville/S09D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,9.10. Disciple
+#EXTINF:2438,,9.10. Disciple
 dvd:///mnt/dvd/archive/S/Smallville/S09D03.%20E09%e2%80%9311.iso#4
-#EXTINF:0,,9.11. Absolute Justice
+#EXTINF:4818,,9.11. Absolute Justice
 dvd:///mnt/dvd/archive/S/Smallville/S09D03.%20E09%e2%80%9311.iso#5
-#EXTINF:0,,9.12. Warrior
+#EXTINF:2435,,9.12. Warrior
 dvd:///mnt/dvd/archive/S/Smallville/S09D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,9.13. Persuasion
+#EXTINF:2437,,9.13. Persuasion
 dvd:///mnt/dvd/archive/S/Smallville/S09D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,9.14. Conspiracy
+#EXTINF:2436,,9.14. Conspiracy
 dvd:///mnt/dvd/archive/S/Smallville/S09D04.%20E12%e2%80%9315.iso#5
-#EXTINF:0,,9.15. Escape
+#EXTINF:2436,,9.15. Escape
 dvd:///mnt/dvd/archive/S/Smallville/S09D04.%20E12%e2%80%9315.iso#6
-#EXTINF:0,,9.16. Checkmate
+#EXTINF:2439,,9.16. Checkmate
 dvd:///mnt/dvd/archive/S/Smallville/S09D05.%20E16%e2%80%9318.iso#3
-#EXTINF:0,,9.17. Upgrade
+#EXTINF:2435,,9.17. Upgrade
 dvd:///mnt/dvd/archive/S/Smallville/S09D05.%20E16%e2%80%9318.iso#4
-#EXTINF:0,,9.18. Charade
+#EXTINF:2438,,9.18. Charade
 dvd:///mnt/dvd/archive/S/Smallville/S09D05.%20E16%e2%80%9318.iso#5
-#EXTINF:0,,9.19. Sacrifice
+#EXTINF:2438,,9.19. Sacrifice
 dvd:///mnt/dvd/archive/S/Smallville/S09D06.%20E19%e2%80%9321.iso#3
-#EXTINF:0,,9.20. Hostage
+#EXTINF:2439,,9.20. Hostage
 dvd:///mnt/dvd/archive/S/Smallville/S09D06.%20E19%e2%80%9321.iso#4
-#EXTINF:0,,9.21. Salvation
+#EXTINF:2434,,9.21. Salvation
 dvd:///mnt/dvd/archive/S/Smallville/S09D06.%20E19%e2%80%9321.iso#5
 
-#EXTINF:0,,10.1. Lazarus
+#EXTINF:2440,,10.1. Lazarus
 dvd:///mnt/dvd/archive/S/Smallville/S10D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,10.2. Shield
+#EXTINF:2437,,10.2. Shield
 dvd:///mnt/dvd/archive/S/Smallville/S10D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,10.3. Supergirl
+#EXTINF:2414,,10.3. Supergirl
 dvd:///mnt/dvd/archive/S/Smallville/S10D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,10.4. Homecoming
+#EXTINF:2427,,10.4. Homecoming
 dvd:///mnt/dvd/archive/S/Smallville/S10D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,10.5. Isis
+#EXTINF:2426,,10.5. Isis
 dvd:///mnt/dvd/archive/S/Smallville/S10D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,10.6. Harvest
+#EXTINF:2440,,10.6. Harvest
 dvd:///mnt/dvd/archive/S/Smallville/S10D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,10.7. Ambush
+#EXTINF:2438,,10.7. Ambush
 dvd:///mnt/dvd/archive/S/Smallville/S10D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,10.8. Abandoned
+#EXTINF:2438,,10.8. Abandoned
 dvd:///mnt/dvd/archive/S/Smallville/S10D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,10.9. Patriot
+#EXTINF:2434,,10.9. Patriot
 dvd:///mnt/dvd/archive/S/Smallville/S10D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,10.10. Luthor
+#EXTINF:2440,,10.10. Luthor
 dvd:///mnt/dvd/archive/S/Smallville/S10D03.%20E09%e2%80%9311.iso#4
-#EXTINF:0,,10.11. Icarus
+#EXTINF:2440,,10.11. Icarus
 dvd:///mnt/dvd/archive/S/Smallville/S10D03.%20E09%e2%80%9311.iso#5
-#EXTINF:0,,10.12. Collateral
+#EXTINF:2431,,10.12. Collateral
 dvd:///mnt/dvd/archive/S/Smallville/S10D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,10.13. Beacon
+#EXTINF:2442,,10.13. Beacon
 dvd:///mnt/dvd/archive/S/Smallville/S10D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,10.14. Masquerade
+#EXTINF:2438,,10.14. Masquerade
 dvd:///mnt/dvd/archive/S/Smallville/S10D04.%20E12%e2%80%9315.iso#5
-#EXTINF:0,,10.15. Fortune
+#EXTINF:2432,,10.15. Fortune
 dvd:///mnt/dvd/archive/S/Smallville/S10D04.%20E12%e2%80%9315.iso#6
-#EXTINF:0,,10.16. Scion
+#EXTINF:2432,,10.16. Scion
 dvd:///mnt/dvd/archive/S/Smallville/S10D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,10.17. Kent
+#EXTINF:2440,,10.17. Kent
 dvd:///mnt/dvd/archive/S/Smallville/S10D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,10.18. Booster
+#EXTINF:2432,,10.18. Booster
 dvd:///mnt/dvd/archive/S/Smallville/S10D05.%20E16%e2%80%9319.iso#5
-#EXTINF:0,,10.19. Dominion
+#EXTINF:2441,,10.19. Dominion
 dvd:///mnt/dvd/archive/S/Smallville/S10D05.%20E16%e2%80%9319.iso#6
-#EXTINF:0,,10.20. Prophecy
+#EXTINF:2439,,10.20. Prophecy
 dvd:///mnt/dvd/archive/S/Smallville/S10D06.%20E20%e2%80%9321.iso#3
-#EXTINF:0,,10.21. Finale
+#EXTINF:4834,,10.21. Finale
 dvd:///mnt/dvd/archive/S/Smallville/S10D06.%20E20%e2%80%9321.iso#4
index 77c98b1..5238742 100644 (file)
@@ -1,83 +1,83 @@
 #EXTM3U
 
-#EXTINF:0,,Gods of the Arena—1. Past Transgressions
+#EXTINF:3038,,Gods of the Arena—1. Past Transgressions
 dvd:///mnt/dvd/archive/S/Spartacus/S00.%20Gods%20of%20the%20Arena%e2%80%94D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Gods of the Arena—2. Missio
+#EXTINF:3176,,Gods of the Arena—2. Missio
 dvd:///mnt/dvd/archive/S/Spartacus/S00.%20Gods%20of%20the%20Arena%e2%80%94D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Gods of the Arena—3. Paterfamilias
+#EXTINF:3440,,Gods of the Arena—3. Paterfamilias
 dvd:///mnt/dvd/archive/S/Spartacus/S00.%20Gods%20of%20the%20Arena%e2%80%94D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Gods of the Arena—4. Beneath the Mask
+#EXTINF:3094,,Gods of the Arena—4. Beneath the Mask
 dvd:///mnt/dvd/archive/S/Spartacus/S00.%20Gods%20of%20the%20Arena%e2%80%94D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,Gods of the Arena—5. Reckoning
+#EXTINF:3338,,Gods of the Arena—5. Reckoning
 dvd:///mnt/dvd/archive/S/Spartacus/S00.%20Gods%20of%20the%20Arena%e2%80%94D02.%20E05%e2%80%9306.iso#3
-#EXTINF:0,,Gods of the Arena—6. The Bitter End
+#EXTINF:3969,,Gods of the Arena—6. The Bitter End
 dvd:///mnt/dvd/archive/S/Spartacus/S00.%20Gods%20of%20the%20Arena%e2%80%94D02.%20E05%e2%80%9306.iso#5
 
-#EXTINF:0,,Blood and Sand—1. The Red Serpent
+#EXTINF:3155,,Blood and Sand—1. The Red Serpent
 dvd:///mnt/dvd/archive/S/Spartacus/S01.%20Blood%20and%20Sand%e2%80%94D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Blood and Sand—2. Sacramentum gladiatorum
+#EXTINF:3074,,Blood and Sand—2. Sacramentum gladiatorum
 dvd:///mnt/dvd/archive/S/Spartacus/S01.%20Blood%20and%20Sand%e2%80%94D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Blood and Sand—3. Legends
+#EXTINF:3216,,Blood and Sand—3. Legends
 dvd:///mnt/dvd/archive/S/Spartacus/S01.%20Blood%20and%20Sand%e2%80%94D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Blood and Sand—4. The Thing in the Pit
+#EXTINF:2869,,Blood and Sand—4. The Thing in the Pit
 dvd:///mnt/dvd/archive/S/Spartacus/S01.%20Blood%20and%20Sand%e2%80%94D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,Blood and Sand—5. Shadow Games
+#EXTINF:3227,,Blood and Sand—5. Shadow Games
 dvd:///mnt/dvd/archive/S/Spartacus/S01.%20Blood%20and%20Sand%e2%80%94D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Blood and Sand—6. Delicate Things
+#EXTINF:3156,,Blood and Sand—6. Delicate Things
 dvd:///mnt/dvd/archive/S/Spartacus/S01.%20Blood%20and%20Sand%e2%80%94D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,Blood and Sand—7. Great and Unfortunate Things
+#EXTINF:2968,,Blood and Sand—7. Great and Unfortunate Things
 dvd:///mnt/dvd/archive/S/Spartacus/S01.%20Blood%20and%20Sand%e2%80%94D02.%20E05%e2%80%9308.iso#7
-#EXTINF:0,,Blood and Sand—8. Mark of the Brotherhood
+#EXTINF:2964,,Blood and Sand—8. Mark of the Brotherhood
 dvd:///mnt/dvd/archive/S/Spartacus/S01.%20Blood%20and%20Sand%e2%80%94D02.%20E05%e2%80%9308.iso#9
-#EXTINF:0,,Blood and Sand—9. Whore
+#EXTINF:2929,,Blood and Sand—9. Whore
 dvd:///mnt/dvd/archive/S/Spartacus/S01.%20Blood%20and%20Sand%e2%80%94D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,Blood and Sand—10. Party Favors
+#EXTINF:3016,,Blood and Sand—10. Party Favors
 dvd:///mnt/dvd/archive/S/Spartacus/S01.%20Blood%20and%20Sand%e2%80%94D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,Blood and Sand—11. Old Wounds
+#EXTINF:3007,,Blood and Sand—11. Old Wounds
 dvd:///mnt/dvd/archive/S/Spartacus/S01.%20Blood%20and%20Sand%e2%80%94D03.%20E09%e2%80%9312.iso#7
-#EXTINF:0,,Blood and Sand—12. Revelations
+#EXTINF:3215,,Blood and Sand—12. Revelations
 dvd:///mnt/dvd/archive/S/Spartacus/S01.%20Blood%20and%20Sand%e2%80%94D03.%20E09%e2%80%9312.iso#9
-#EXTINF:0,,Blood and Sand—13. Kill Them All
+#EXTINF:3160,,Blood and Sand—13. Kill Them All
 dvd:///mnt/dvd/archive/S/Spartacus/S01.%20Blood%20and%20Sand%e2%80%94D04.%20E13.iso#3
 
-#EXTINF:0,,Vengeance—1. Fugitivus
+#EXTINF:3312,,Vengeance—1. Fugitivus
 dvd:///mnt/dvd/archive/S/Spartacus/S02.%20Vengeance%e2%80%94D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,Vengeance—2. A Place in This World
+#EXTINF:3042,,Vengeance—2. A Place in This World
 dvd:///mnt/dvd/archive/S/Spartacus/S02.%20Vengeance%e2%80%94D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,Vengeance—3. The Greater Good
+#EXTINF:3077,,Vengeance—3. The Greater Good
 dvd:///mnt/dvd/archive/S/Spartacus/S02.%20Vengeance%e2%80%94D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,Vengeance—4. Empty Hands
+#EXTINF:3447,,Vengeance—4. Empty Hands
 dvd:///mnt/dvd/archive/S/Spartacus/S02.%20Vengeance%e2%80%94D02.%20E04%e2%80%9306.iso#2
-#EXTINF:0,,Vengeance—5. Libertus
+#EXTINF:3226,,Vengeance—5. Libertus
 dvd:///mnt/dvd/archive/S/Spartacus/S02.%20Vengeance%e2%80%94D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,Vengeance—6. Chosen Path
+#EXTINF:3247,,Vengeance—6. Chosen Path
 dvd:///mnt/dvd/archive/S/Spartacus/S02.%20Vengeance%e2%80%94D02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,Vengeance—7. Sacramentum
+#EXTINF:3294,,Vengeance—7. Sacramentum
 dvd:///mnt/dvd/archive/S/Spartacus/S02.%20Vengeance%e2%80%94D03.%20E07%e2%80%9309.iso#2
-#EXTINF:0,,Vengeance—8. Balance
+#EXTINF:3316,,Vengeance—8. Balance
 dvd:///mnt/dvd/archive/S/Spartacus/S02.%20Vengeance%e2%80%94D03.%20E07%e2%80%9309.iso#3
-#EXTINF:0,,Vengeance—9. Monsters
+#EXTINF:3274,,Vengeance—9. Monsters
 dvd:///mnt/dvd/archive/S/Spartacus/S02.%20Vengeance%e2%80%94D03.%20E07%e2%80%9309.iso#4
-#EXTINF:0,,Vengeance—10. Wrath of the Gods
+#EXTINF:3522,,Vengeance—10. Wrath of the Gods
 dvd:///mnt/dvd/archive/S/Spartacus/S02.%20Vengeance%e2%80%94D04.%20E10.iso#2
 
-#EXTINF:0,,War of the Damned—1. Enemies of Rome
+#EXTINF:2961,,War of the Damned—1. Enemies of Rome
 dvd:///mnt/dvd/archive/S/Spartacus/S03.%20War%20of%20the%20Damned%e2%80%94D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,War of the Damned—2. Wolves at the Gate
+#EXTINF:3120,,War of the Damned—2. Wolves at the Gate
 dvd:///mnt/dvd/archive/S/Spartacus/S03.%20War%20of%20the%20Damned%e2%80%94D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,War of the Damned—3. Men of Honor
+#EXTINF:3370,,War of the Damned—3. Men of Honor
 dvd:///mnt/dvd/archive/S/Spartacus/S03.%20War%20of%20the%20Damned%e2%80%94D01.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,War of the Damned—4. Decimation
+#EXTINF:3275,,War of the Damned—4. Decimation
 dvd:///mnt/dvd/archive/S/Spartacus/S03.%20War%20of%20the%20Damned%e2%80%94D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,War of the Damned—5. Blood Brothers
+#EXTINF:3112,,War of the Damned—5. Blood Brothers
 dvd:///mnt/dvd/archive/S/Spartacus/S03.%20War%20of%20the%20Damned%e2%80%94D02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,War of the Damned—6. Spoils of War
+#EXTINF:3305,,War of the Damned—6. Spoils of War
 dvd:///mnt/dvd/archive/S/Spartacus/S03.%20War%20of%20the%20Damned%e2%80%94D02.%20E04%e2%80%9306.iso#5
-#EXTINF:0,,War of the Damned—7. Mors indecepta
+#EXTINF:3183,,War of the Damned—7. Mors indecepta
 dvd:///mnt/dvd/archive/S/Spartacus/S03.%20War%20of%20the%20Damned%e2%80%94D03.%20E07%e2%80%9308.iso#3
-#EXTINF:0,,War of the Damned—8. Separate Paths
+#EXTINF:3151,,War of the Damned—8. Separate Paths
 dvd:///mnt/dvd/archive/S/Spartacus/S03.%20War%20of%20the%20Damned%e2%80%94D03.%20E07%e2%80%9308.iso#4
-#EXTINF:0,,War of the Damned—9. The Dead and the Dying
+#EXTINF:3468,,War of the Damned—9. The Dead and the Dying
 dvd:///mnt/dvd/archive/S/Spartacus/S03.%20War%20of%20the%20Damned%e2%80%94D04.%20E09%e2%80%9310.iso#3
-#EXTINF:0,,War of the Damned—10. Victory
+#EXTINF:3490,,War of the Damned—10. Victory
 dvd:///mnt/dvd/archive/S/Spartacus/S03.%20War%20of%20the%20Damned%e2%80%94D04.%20E09%e2%80%9310.iso#4
index 20edb0f..a158e34 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Thou Shalt Not Kill
+#EXTINF:3555,,1.1. Thou Shalt Not Kill
 dvd:///mnt/dvd/archive/S/Spooks/S01D01.%20E01%e2%80%9302.iso#3
-#EXTINF:0,,1.2. Looking After Our Own
+#EXTINF:3549,,1.2. Looking After Our Own
 dvd:///mnt/dvd/archive/S/Spooks/S01D01.%20E01%e2%80%9302.iso#17
-#EXTINF:0,,1.3. One Last Dance
+#EXTINF:3544,,1.3. One Last Dance
 dvd:///mnt/dvd/archive/S/Spooks/S01D02.%20E03%e2%80%9304.iso#3
-#EXTINF:0,,1.4. Traitor's Gate
+#EXTINF:3557,,1.4. Traitor's Gate
 dvd:///mnt/dvd/archive/S/Spooks/S01D02.%20E03%e2%80%9304.iso#27
-#EXTINF:0,,1.5. The Rose Bed Memoirs
+#EXTINF:3528,,1.5. The Rose Bed Memoirs
 dvd:///mnt/dvd/archive/S/Spooks/S01D03.%20E05%e2%80%9306.iso#3
-#EXTINF:0,,1.6. Lesser of Two Evils
+#EXTINF:3509,,1.6. Lesser of Two Evils
 dvd:///mnt/dvd/archive/S/Spooks/S01D03.%20E05%e2%80%9306.iso#17
 
-#EXTINF:0,,2.1. Legitimate Targets
+#EXTINF:3551,,2.1. Legitimate Targets
 dvd:///mnt/dvd/archive/S/Spooks/S02D01.%20E01%e2%80%9302.iso#3
-#EXTINF:0,,2.2. Nest of Angels
+#EXTINF:3552,,2.2. Nest of Angels
 dvd:///mnt/dvd/archive/S/Spooks/S02D01.%20E01%e2%80%9302.iso#14
-#EXTINF:0,,2.3. Spiders
+#EXTINF:3583,,2.3. Spiders
 dvd:///mnt/dvd/archive/S/Spooks/S02D02.%20E03%e2%80%9304.iso#3
-#EXTINF:0,,2.4. Blood and Money
+#EXTINF:3580,,2.4. Blood and Money
 dvd:///mnt/dvd/archive/S/Spooks/S02D02.%20E03%e2%80%9304.iso#12
-#EXTINF:0,,2.5. I Spy Apocalypse
+#EXTINF:3574,,2.5. I Spy Apocalypse
 dvd:///mnt/dvd/archive/S/Spooks/S02D03.%20E05%e2%80%9306.iso#3
-#EXTINF:0,,2.6. Without Incident
+#EXTINF:3478,,2.6. Without Incident
 dvd:///mnt/dvd/archive/S/Spooks/S02D03.%20E05%e2%80%9306.iso#11
-#EXTINF:0,,2.7. Clean Skin
+#EXTINF:3582,,2.7. Clean Skin
 dvd:///mnt/dvd/archive/S/Spooks/S02D04.%20E07%e2%80%9308.iso#3
-#EXTINF:0,,2.8. Strike Force
+#EXTINF:3463,,2.8. Strike Force
 dvd:///mnt/dvd/archive/S/Spooks/S02D04.%20E07%e2%80%9308.iso#14
-#EXTINF:0,,2.9. The Seventh Division
+#EXTINF:3583,,2.9. The Seventh Division
 dvd:///mnt/dvd/archive/S/Spooks/S02D05.%20E09%e2%80%9310.iso#16
-#EXTINF:0,,2.10. Smoke and Mirrors
+#EXTINF:3612,,2.10. Smoke and Mirrors
 dvd:///mnt/dvd/archive/S/Spooks/S02D05.%20E09%e2%80%9310.iso#3
 
-#EXTINF:0,,3.1. Project Friendly Fire
+#EXTINF:3577,,3.1. Project Friendly Fire
 dvd:///mnt/dvd/archive/S/Spooks/S03D01.%20E01%e2%80%9302.iso#1
-#EXTINF:0,,3.2. The Sleeper
+#EXTINF:3580,,3.2. The Sleeper
 dvd:///mnt/dvd/archive/S/Spooks/S03D01.%20E01%e2%80%9302.iso#13
-#EXTINF:0,,3.3. Who Guards the Guards?
+#EXTINF:3492,,3.3. Who Guards the Guards?
 dvd:///mnt/dvd/archive/S/Spooks/S03D02.%20E03%e2%80%9304.iso#1
-#EXTINF:0,,3.4. A Prayer for My Daughter
+#EXTINF:3549,,3.4. A Prayer for My Daughter
 dvd:///mnt/dvd/archive/S/Spooks/S03D02.%20E03%e2%80%9304.iso#13
-#EXTINF:0,,3.5. Love and Death
+#EXTINF:3552,,3.5. Love and Death
 dvd:///mnt/dvd/archive/S/Spooks/S03D03.%20E05%e2%80%9306.iso#1
-#EXTINF:0,,3.6. Persephone
+#EXTINF:3547,,3.6. Persephone
 dvd:///mnt/dvd/archive/S/Spooks/S03D03.%20E05%e2%80%9306.iso#11
-#EXTINF:0,,3.7. Outsiders
+#EXTINF:3518,,3.7. Outsiders
 dvd:///mnt/dvd/archive/S/Spooks/S03D04.%20E07%e2%80%9308.iso#1
-#EXTINF:0,,3.8. Celebrity
+#EXTINF:3489,,3.8. Celebrity
 dvd:///mnt/dvd/archive/S/Spooks/S03D04.%20E07%e2%80%9308.iso#13
-#EXTINF:0,,3.9. Frequently Asked Questions
+#EXTINF:3508,,3.9. Frequently Asked Questions
 dvd:///mnt/dvd/archive/S/Spooks/S03D05.%20E09%e2%80%9310.iso#1
-#EXTINF:0,,3.10. The Suffering of Strangers
+#EXTINF:3543,,3.10. The Suffering of Strangers
 dvd:///mnt/dvd/archive/S/Spooks/S03D05.%20E09%e2%80%9310.iso#12
 
-#EXTINF:0,,4.1. The Special (part 1)
+#EXTINF:3411,,4.1. The Special (part 1)
 dvd:///mnt/dvd/archive/S/Spooks/S04D01.%20E01%e2%80%9302.iso#2
-#EXTINF:0,,4.2. The Special (part 2)
+#EXTINF:3532,,4.2. The Special (part 2)
 dvd:///mnt/dvd/archive/S/Spooks/S04D01.%20E01%e2%80%9302.iso#4
-#EXTINF:0,,4.3. Divided They Fall
+#EXTINF:3532,,4.3. Divided They Fall
 dvd:///mnt/dvd/archive/S/Spooks/S04D02.%20E03%e2%80%9304.iso#2
-#EXTINF:0,,4.4. Road Trip
+#EXTINF:3542,,4.4. Road Trip
 dvd:///mnt/dvd/archive/S/Spooks/S04D02.%20E03%e2%80%9304.iso#3
-#EXTINF:0,,4.5. The Book
+#EXTINF:3493,,4.5. The Book
 dvd:///mnt/dvd/archive/S/Spooks/S04D03.%20E05%e2%80%9306.iso#2
-#EXTINF:0,,4.6. The Innocent
+#EXTINF:3527,,4.6. The Innocent
 dvd:///mnt/dvd/archive/S/Spooks/S04D03.%20E05%e2%80%9306.iso#3
-#EXTINF:0,,4.7. Syria
+#EXTINF:3542,,4.7. Syria
 dvd:///mnt/dvd/archive/S/Spooks/S04D04.%20E07%e2%80%9308.iso#2
-#EXTINF:0,,4.8. The Russian
+#EXTINF:3556,,4.8. The Russian
 dvd:///mnt/dvd/archive/S/Spooks/S04D04.%20E07%e2%80%9308.iso#4
-#EXTINF:0,,4.9. The Sting
+#EXTINF:3510,,4.9. The Sting
 dvd:///mnt/dvd/archive/S/Spooks/S04D05.%20E09%e2%80%9310.iso#2
-#EXTINF:0,,4.10. Diana
+#EXTINF:3555,,4.10. Diana
 dvd:///mnt/dvd/archive/S/Spooks/S04D05.%20E09%e2%80%9310.iso#4
 
-#EXTINF:0,,5.1. Gas and Oil (part 1)
+#EXTINF:3501,,5.1. Gas and Oil (part 1)
 dvd:///mnt/dvd/archive/S/Spooks/S05D01.%20E01%e2%80%9302.iso#4
-#EXTINF:0,,5.2. Gas and Oil (part 2)
+#EXTINF:3548,,5.2. Gas and Oil (part 2)
 dvd:///mnt/dvd/archive/S/Spooks/S05D01.%20E01%e2%80%9302.iso#6
-#EXTINF:0,,5.3. The Cell
+#EXTINF:3439,,5.3. The Cell
 dvd:///mnt/dvd/archive/S/Spooks/S05D02.%20E03%e2%80%9304.iso#4
-#EXTINF:0,,5.4. World Trade
+#EXTINF:3464,,5.4. World Trade
 dvd:///mnt/dvd/archive/S/Spooks/S05D02.%20E03%e2%80%9304.iso#5
-#EXTINF:0,,5.5. The Message
+#EXTINF:3542,,5.5. The Message
 dvd:///mnt/dvd/archive/S/Spooks/S05D03.%20E05%e2%80%9306.iso#4
-#EXTINF:0,,5.6. Hostage Takers (part 1)
+#EXTINF:3488,,5.6. Hostage Takers (part 1)
 dvd:///mnt/dvd/archive/S/Spooks/S05D03.%20E05%e2%80%9306.iso#6
-#EXTINF:0,,5.7. Hostage Takers (part 2)
+#EXTINF:3526,,5.7. Hostage Takers (part 2)
 dvd:///mnt/dvd/archive/S/Spooks/S05D04.%20E07%e2%80%9308.iso#4
-#EXTINF:0,,5.8. Agenda
+#EXTINF:3469,,5.8. Agenda
 dvd:///mnt/dvd/archive/S/Spooks/S05D04.%20E07%e2%80%9308.iso#5
-#EXTINF:0,,5.9. The Criminal
+#EXTINF:3560,,5.9. The Criminal
 dvd:///mnt/dvd/archive/S/Spooks/S05D05.%20E09%e2%80%9310.iso#4
-#EXTINF:0,,5.10. Aftermath
+#EXTINF:3535,,5.10. Aftermath
 dvd:///mnt/dvd/archive/S/Spooks/S05D05.%20E09%e2%80%9310.iso#6
 
-#EXTINF:0,,6.1. The Virus (part 1)
+#EXTINF:3553,,6.1. The Virus (part 1)
 dvd:///mnt/dvd/archive/S/Spooks/S06D01.%20E01%e2%80%9302.iso#4
-#EXTINF:0,,6.2. The Virus (part 2)
+#EXTINF:3538,,6.2. The Virus (part 2)
 dvd:///mnt/dvd/archive/S/Spooks/S06D01.%20E01%e2%80%9302.iso#7
-#EXTINF:0,,6.3. The Kidnap
+#EXTINF:3518,,6.3. The Kidnap
 dvd:///mnt/dvd/archive/S/Spooks/S06D02.%20E03%e2%80%9304.iso#4
-#EXTINF:0,,6.4. The Extremist
+#EXTINF:3506,,6.4. The Extremist
 dvd:///mnt/dvd/archive/S/Spooks/S06D02.%20E03%e2%80%9304.iso#6
-#EXTINF:0,,6.5. The Deal
+#EXTINF:3538,,6.5. The Deal
 dvd:///mnt/dvd/archive/S/Spooks/S06D03.%20E05%e2%80%9306.iso#4
-#EXTINF:0,,6.6. The Courier
+#EXTINF:3402,,6.6. The Courier
 dvd:///mnt/dvd/archive/S/Spooks/S06D03.%20E05%e2%80%9306.iso#7
-#EXTINF:0,,6.7. The Broadcast
+#EXTINF:3548,,6.7. The Broadcast
 dvd:///mnt/dvd/archive/S/Spooks/S06D04.%20E07%e2%80%9308.iso#4
-#EXTINF:0,,6.8. Infiltration
+#EXTINF:3533,,6.8. Infiltration
 dvd:///mnt/dvd/archive/S/Spooks/S06D04.%20E07%e2%80%9308.iso#6
-#EXTINF:0,,6.9. Isolated
+#EXTINF:3561,,6.9. Isolated
 dvd:///mnt/dvd/archive/S/Spooks/S06D05.%20E09%e2%80%9310.iso#4
-#EXTINF:0,,6.10. The School
+#EXTINF:3504,,6.10. The School
 dvd:///mnt/dvd/archive/S/Spooks/S06D05.%20E09%e2%80%9310.iso#10
 
-#EXTINF:0,,7.1. New Allegiances
+#EXTINF:3578,,7.1. New Allegiances
 dvd:///mnt/dvd/archive/S/Spooks/S07D01.%20E01%e2%80%9302.iso#4
-#EXTINF:0,,7.2. Split Loyalties
+#EXTINF:3507,,7.2. Split Loyalties
 dvd:///mnt/dvd/archive/S/Spooks/S07D01.%20E01%e2%80%9302.iso#5
-#EXTINF:0,,7.3. The Tip-Off
+#EXTINF:3493,,7.3. The Tip-Off
 dvd:///mnt/dvd/archive/S/Spooks/S07D02.%20E03%e2%80%9304.iso#4
-#EXTINF:0,,7.4. A Chance for Peace
+#EXTINF:3499,,7.4. A Chance for Peace
 dvd:///mnt/dvd/archive/S/Spooks/S07D02.%20E03%e2%80%9304.iso#5
-#EXTINF:0,,7.5. On the Brink
+#EXTINF:3508,,7.5. On the Brink
 dvd:///mnt/dvd/archive/S/Spooks/S07D03.%20E05%e2%80%9306.iso#4
-#EXTINF:0,,7.6. Accidental Discovery
+#EXTINF:3529,,7.6. Accidental Discovery
 dvd:///mnt/dvd/archive/S/Spooks/S07D03.%20E05%e2%80%9306.iso#5
-#EXTINF:0,,7.7. The Mole
+#EXTINF:3571,,7.7. The Mole
 dvd:///mnt/dvd/archive/S/Spooks/S07D04.%20E07%e2%80%9308.iso#4
-#EXTINF:0,,7.8. Nuclear Strike
+#EXTINF:3560,,7.8. Nuclear Strike
 dvd:///mnt/dvd/archive/S/Spooks/S07D04.%20E07%e2%80%9308.iso#5
 
-#EXTINF:0,,Episode 8.1
+#EXTINF:3563,,Episode 8.1
 dvd:///mnt/dvd/archive/S/Spooks/S08D01.%20E01%e2%80%9302.iso#4
-#EXTINF:0,,Episode 8.2
+#EXTINF:3533,,Episode 8.2
 dvd:///mnt/dvd/archive/S/Spooks/S08D01.%20E01%e2%80%9302.iso#5
-#EXTINF:0,,Episode 8.3
+#EXTINF:3480,,Episode 8.3
 dvd:///mnt/dvd/archive/S/Spooks/S08D02.%20E03%e2%80%9304.iso#4
-#EXTINF:0,,Episode 8.4
+#EXTINF:3555,,Episode 8.4
 dvd:///mnt/dvd/archive/S/Spooks/S08D02.%20E03%e2%80%9304.iso#5
-#EXTINF:0,,Episode 8.5
+#EXTINF:3495,,Episode 8.5
 dvd:///mnt/dvd/archive/S/Spooks/S08D03.%20E05%e2%80%9306.iso#4
-#EXTINF:0,,Episode 8.6
+#EXTINF:3549,,Episode 8.6
 dvd:///mnt/dvd/archive/S/Spooks/S08D03.%20E05%e2%80%9306.iso#5
-#EXTINF:0,,Episode 8.7
+#EXTINF:3549,,Episode 8.7
 dvd:///mnt/dvd/archive/S/Spooks/S08D04.%20E07%e2%80%9308.iso#4
-#EXTINF:0,,Episode 8.8
+#EXTINF:3507,,Episode 8.8
 dvd:///mnt/dvd/archive/S/Spooks/S08D04.%20E07%e2%80%9308.iso#5
 
-#EXTINF:0,,Episode 9.1
+#EXTINF:3514,,Episode 9.1
 dvd:///mnt/dvd/archive/S/Spooks/S09D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,Episode 9.2
+#EXTINF:3530,,Episode 9.2
 dvd:///mnt/dvd/archive/S/Spooks/S09D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,Episode 9.3
+#EXTINF:3524,,Episode 9.3
 dvd:///mnt/dvd/archive/S/Spooks/S09D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,Episode 9.4
+#EXTINF:3531,,Episode 9.4
 dvd:///mnt/dvd/archive/S/Spooks/S09D02.%20E04%e2%80%9306.iso#2
-#EXTINF:0,,Episode 9.5
+#EXTINF:3542,,Episode 9.5
 dvd:///mnt/dvd/archive/S/Spooks/S09D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,Episode 9.6
+#EXTINF:3531,,Episode 9.6
 dvd:///mnt/dvd/archive/S/Spooks/S09D02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,Episode 9.7
+#EXTINF:3535,,Episode 9.7
 dvd:///mnt/dvd/archive/S/Spooks/S09D03.%20E07%e2%80%9308.iso#2
-#EXTINF:0,,Episode 9.8
+#EXTINF:3486,,Episode 9.8
 dvd:///mnt/dvd/archive/S/Spooks/S09D03.%20E07%e2%80%9308.iso#3
 
-#EXTINF:0,,Episode 10.1
+#EXTINF:3538,,Episode 10.1
 dvd:///mnt/dvd/archive/S/Spooks/S10D01.%20E01%e2%80%9302.iso#2
-#EXTINF:0,,Episode 10.2
+#EXTINF:3508,,Episode 10.2
 dvd:///mnt/dvd/archive/S/Spooks/S10D01.%20E01%e2%80%9302.iso#4
-#EXTINF:0,,Episode 10.3
+#EXTINF:3535,,Episode 10.3
 dvd:///mnt/dvd/archive/S/Spooks/S10D02.%20E03%e2%80%9305.iso#2
-#EXTINF:0,,Episode 10.4
+#EXTINF:3522,,Episode 10.4
 dvd:///mnt/dvd/archive/S/Spooks/S10D02.%20E03%e2%80%9305.iso#3
-#EXTINF:0,,Episode 10.5
+#EXTINF:3484,,Episode 10.5
 dvd:///mnt/dvd/archive/S/Spooks/S10D02.%20E03%e2%80%9305.iso#4
-#EXTINF:0,,Episode 10.6
+#EXTINF:3536,,Episode 10.6
 dvd:///mnt/dvd/archive/S/Spooks/S10D03.%20E06.iso#1
 
-#EXTINF:0,,The Greater Good
+#EXTINF:5981,,The Greater Good
 dvd:///mnt/dvd/archive/S/Spooks%e2%80%94The%20Greater%20Good.iso#7
index 3c4ce2b..9b3c882 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Rising
+#EXTINF:5070,,1.1. Rising
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D01.%20E01%e2%80%9303.iso#8
-#EXTINF:0,,1.2. Hide and Seek
+#EXTINF:2518,,1.2. Hide and Seek
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D01.%20E01%e2%80%9303.iso#12
-#EXTINF:0,,1.3. Thirty-Eight Minutes
+#EXTINF:2515,,1.3. Thirty-Eight Minutes
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D01.%20E01%e2%80%9303.iso#13
-#EXTINF:0,,1.4. Suspicion
+#EXTINF:2515,,1.4. Suspicion
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D02.%20E04%e2%80%9306,%20E08.iso#11
-#EXTINF:0,,1.5. Childhood's End
+#EXTINF:2515,,1.5. Childhood's End
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D02.%20E04%e2%80%9306,%20E08.iso#6
-#EXTINF:0,,1.6. Poisoning the Well
+#EXTINF:2515,,1.6. Poisoning the Well
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D02.%20E04%e2%80%9306,%20E08.iso#12
-#EXTINF:0,,1.7. Underground
+#EXTINF:2509,,1.7. Underground
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D03.%20E07,%20E09%e2%80%9311.iso#14
-#EXTINF:0,,1.8. Home
+#EXTINF:2515,,1.8. Home
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D02.%20E04%e2%80%9306,%20E08.iso#13
-#EXTINF:0,,1.9. The Storm
+#EXTINF:2515,,1.9. The Storm
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D03.%20E07,%20E09%e2%80%9311.iso#9
-#EXTINF:0,,1.10. The Eye
+#EXTINF:2493,,1.10. The Eye
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D03.%20E07,%20E09%e2%80%9311.iso#10
-#EXTINF:0,,1.11. The Defiant One
+#EXTINF:2514,,1.11. The Defiant One
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D03.%20E07,%20E09%e2%80%9311.iso#11
-#EXTINF:0,,1.12. Hot Zone
+#EXTINF:2514,,1.12. Hot Zone
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D04.%20E12%e2%80%9315.iso#7
-#EXTINF:0,,1.13. Sanctuary
+#EXTINF:2514,,1.13. Sanctuary
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D04.%20E12%e2%80%9315.iso#12
-#EXTINF:0,,1.14. Before I Sleep
+#EXTINF:2514,,1.14. Before I Sleep
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D04.%20E12%e2%80%9315.iso#13
-#EXTINF:0,,1.15. The Brotherhood
+#EXTINF:2512,,1.15. The Brotherhood
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D04.%20E12%e2%80%9315.iso#14
-#EXTINF:0,,1.16. Letters from Pegasus
+#EXTINF:2514,,1.16. Letters from Pegasus
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D05.%20E16%e2%80%9319.iso#14
-#EXTINF:0,,1.17. The Gift
+#EXTINF:2515,,1.17. The Gift
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D05.%20E16%e2%80%9319.iso#9
-#EXTINF:0,,1.18. The Siege (part 1)
+#EXTINF:2514,,1.18. The Siege (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D05.%20E16%e2%80%9319.iso#10
-#EXTINF:0,,1.19. The Siege (part 2)
+#EXTINF:2514,,1.19. The Siege (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D05.%20E16%e2%80%9319.iso#11
 
-#EXTINF:0,,2.1. The Siege (part 3)
+#EXTINF:2509,,2.1. The Siege (part 3)
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D01.%20E01%e2%80%9304.iso#15
-#EXTINF:0,,2.2. The Intruder
+#EXTINF:2518,,2.2. The Intruder
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D01.%20E01%e2%80%9304.iso#16
-#EXTINF:0,,2.3. Runner
+#EXTINF:2518,,2.3. Runner
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D01.%20E01%e2%80%9304.iso#17
-#EXTINF:0,,2.4. Duet
+#EXTINF:2517,,2.4. Duet
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D01.%20E01%e2%80%9304.iso#18
-#EXTINF:0,,2.5. Condemned
+#EXTINF:2519,,2.5. Condemned
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D02.%20E05%e2%80%9308.iso#16
-#EXTINF:0,,2.6. Trinity
+#EXTINF:2518,,2.6. Trinity
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D02.%20E05%e2%80%9308.iso#17
-#EXTINF:0,,2.7. Instinct
+#EXTINF:2519,,2.7. Instinct
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D02.%20E05%e2%80%9308.iso#18
-#EXTINF:0,,2.8. Conversion
+#EXTINF:2522,,2.8. Conversion
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D02.%20E05%e2%80%9308.iso#19
-#EXTINF:0,,2.9. Aurora
+#EXTINF:2522,,2.9. Aurora
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D03.%20E09%e2%80%9312.iso#16
-#EXTINF:0,,2.10. The Lost Boys
+#EXTINF:2519,,2.10. The Lost Boys
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D03.%20E09%e2%80%9312.iso#17
-#EXTINF:0,,2.11. The Hive
+#EXTINF:2509,,2.11. The Hive
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D03.%20E09%e2%80%9312.iso#18
-#EXTINF:0,,2.12. Epiphany
+#EXTINF:2510,,2.12. Epiphany
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D03.%20E09%e2%80%9312.iso#19
-#EXTINF:0,,2.13. Critical Mass
+#EXTINF:2510,,2.13. Critical Mass
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D04.%20E13%e2%80%9316.iso#16
-#EXTINF:0,,2.14. Grace Under Pressure
+#EXTINF:2510,,2.14. Grace Under Pressure
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D04.%20E13%e2%80%9316.iso#17
-#EXTINF:0,,2.15. The Tower
+#EXTINF:2507,,2.15. The Tower
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D04.%20E13%e2%80%9316.iso#18
-#EXTINF:0,,2.16. The Long Goodbye
+#EXTINF:2511,,2.16. The Long Goodbye
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D04.%20E13%e2%80%9316.iso#19
-#EXTINF:0,,2.17. Coup d'Etat
+#EXTINF:2511,,2.17. Coup d'Etat
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D05.%20E17%e2%80%9320.iso#16
-#EXTINF:0,,2.18. Michael
+#EXTINF:2510,,2.18. Michael
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D05.%20E17%e2%80%9320.iso#17
-#EXTINF:0,,2.19. Inferno
+#EXTINF:2510,,2.19. Inferno
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D05.%20E17%e2%80%9320.iso#18
-#EXTINF:0,,2.20. Allies
+#EXTINF:2510,,2.20. Allies
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D05.%20E17%e2%80%9320.iso#19
 
-#EXTINF:0,,3.1. No Man's Land
+#EXTINF:2502,,3.1. No Man's Land
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,3.2. Misbegotten
+#EXTINF:2509,,3.2. Misbegotten
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,3.3. Irresistible
+#EXTINF:2509,,3.3. Irresistible
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,3.4. Sateda
+#EXTINF:2509,,3.4. Sateda
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,3.5. Progeny
+#EXTINF:2507,,3.5. Progeny
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,3.6. The Real World
+#EXTINF:2508,,3.6. The Real World
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,3.7. Common Ground
+#EXTINF:2509,,3.7. Common Ground
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,3.8. McKay and Mrs. Miller
+#EXTINF:2508,,3.8. McKay and Mrs. Miller
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,3.9. Phantoms
+#EXTINF:2509,,3.9. Phantoms
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,3.10. The Return (part 1)
+#EXTINF:2507,,3.10. The Return (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,3.11. The Return (part 2)
+#EXTINF:2507,,3.11. The Return (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,3.12. Echoes
+#EXTINF:2510,,3.12. Echoes
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,3.13. Irresponsible
+#EXTINF:2509,,3.13. Irresponsible
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,3.14. Tao of Rodney
+#EXTINF:2508,,3.14. Tao of Rodney
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,3.15. The Game
+#EXTINF:2509,,3.15. The Game
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,3.16. The Ark
+#EXTINF:2508,,3.16. The Ark
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,3.17. Sunday
+#EXTINF:2508,,3.17. Sunday
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,3.18. Submersion
+#EXTINF:2509,,3.18. Submersion
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,3.19. Vengeance
+#EXTINF:2508,,3.19. Vengeance
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,3.20. First Strike
+#EXTINF:2510,,3.20. First Strike
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D05.%20E17%e2%80%9320.iso#4
 
-#EXTINF:0,,4.1. Adrift
+#EXTINF:2507,,4.1. Adrift
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,4.2. Lifeline
+#EXTINF:2504,,4.2. Lifeline
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,4.3. Reunion
+#EXTINF:2509,,4.3. Reunion
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,4.4. Doppelgänger
+#EXTINF:2504,,4.4. Doppelgänger
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,4.5. Travelers
+#EXTINF:2504,,4.5. Travelers
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,4.6. Tabula rasa
+#EXTINF:2506,,4.6. Tabula rasa
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,4.7. Missing
+#EXTINF:2507,,4.7. Missing
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,4.8. The Seer
+#EXTINF:2507,,4.8. The Seer
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,4.9. Miller's Crossing
+#EXTINF:2508,,4.9. Miller's Crossing
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,4.10. This Mortal Coil
+#EXTINF:2504,,4.10. This Mortal Coil
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,4.11. Be All My Sins Remember'd
+#EXTINF:2507,,4.11. Be All My Sins Remember'd
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,4.12. Spoils of War
+#EXTINF:2507,,4.12. Spoils of War
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,4.13. Quarantine
+#EXTINF:2507,,4.13. Quarantine
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,4.14. Harmony
+#EXTINF:2506,,4.14. Harmony
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,4.15. Outcast
+#EXTINF:2505,,4.15. Outcast
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,4.16. Trio
+#EXTINF:2508,,4.16. Trio
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,4.17. Midway
+#EXTINF:2508,,4.17. Midway
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,4.18. The Kindred (part 1)
+#EXTINF:2508,,4.18. The Kindred (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,4.19. The Kindred (part 2)
+#EXTINF:2508,,4.19. The Kindred (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,4.20. The Last Man
+#EXTINF:2507,,4.20. The Last Man
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D05.%20E17%e2%80%9320.iso#7
 
-#EXTINF:0,,5.1. Search and Rescue
+#EXTINF:2510,,5.1. Search and Rescue
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,5.2. The Seed
+#EXTINF:2506,,5.2. The Seed
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,5.3. Broken Ties
+#EXTINF:2505,,5.3. Broken Ties
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,5.4. The Daedalus Variations
+#EXTINF:2508,,5.4. The Daedalus Variations
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,5.5. Ghost in the Machine
+#EXTINF:2511,,5.5. Ghost in the Machine
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,5.6. The Shrine
+#EXTINF:2508,,5.6. The Shrine
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,5.7. Whispers
+#EXTINF:2508,,5.7. Whispers
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,5.8. The Queen
+#EXTINF:2507,,5.8. The Queen
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,5.9. Tracker
+#EXTINF:2507,,5.9. Tracker
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,5.10. First Contact
+#EXTINF:2506,,5.10. First Contact
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,5.11. The Lost Tribe
+#EXTINF:2508,,5.11. The Lost Tribe
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,5.12. Outsiders
+#EXTINF:2507,,5.12. Outsiders
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,5.13. Inquisition
+#EXTINF:2505,,5.13. Inquisition
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,5.14. The Prodigal
+#EXTINF:2504,,5.14. The Prodigal
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,5.15. Remnants
+#EXTINF:2509,,5.15. Remnants
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,5.16. Brain Storm
+#EXTINF:2507,,5.16. Brain Storm
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,5.17. Infection
+#EXTINF:2508,,5.17. Infection
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,5.18. Identity
+#EXTINF:2507,,5.18. Identity
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,5.19. Vegas
+#EXTINF:2670,,5.19. Vegas
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,5.20. Enemy at the Gate
+#EXTINF:2635,,5.20. Enemy at the Gate
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D05.%20E17%e2%80%9320.iso#6
index 850fbf5..54f53a3 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Children of the Gods
+#EXTINF:5587,,1.1. Children of the Gods
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D01.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,1.2. The Enemy Within
+#EXTINF:2545,,1.2. The Enemy Within
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D01.%20E01%e2%80%9303.iso#6
-#EXTINF:0,,1.3. Emancipation
+#EXTINF:2545,,1.3. Emancipation
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D01.%20E01%e2%80%9303.iso#7
-#EXTINF:0,,1.4. The Broca Divide
+#EXTINF:2545,,1.4. The Broca Divide
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D02.%20E04%e2%80%9308.iso#7
-#EXTINF:0,,1.5. The First Commandment
+#EXTINF:2545,,1.5. The First Commandment
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D02.%20E04%e2%80%9308.iso#8
-#EXTINF:0,,1.6. Cold Lazarus
+#EXTINF:2545,,1.6. Cold Lazarus
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D02.%20E04%e2%80%9308.iso#9
-#EXTINF:0,,1.7. The Nox
+#EXTINF:2545,,1.7. The Nox
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D02.%20E04%e2%80%9308.iso#10
-#EXTINF:0,,1.8. Brief Candle
+#EXTINF:2545,,1.8. Brief Candle
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D02.%20E04%e2%80%9308.iso#11
-#EXTINF:0,,1.9. Thor's Hammer
+#EXTINF:2545,,1.9. Thor's Hammer
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D03.%20E09%e2%80%9313.iso#7
-#EXTINF:0,,1.10. The Torment of Tantalus
+#EXTINF:2545,,1.10. The Torment of Tantalus
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D03.%20E09%e2%80%9313.iso#8
-#EXTINF:0,,1.11. Bloodlines
+#EXTINF:2545,,1.11. Bloodlines
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D03.%20E09%e2%80%9313.iso#9
-#EXTINF:0,,1.12. Fire and Water
+#EXTINF:2545,,1.12. Fire and Water
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D03.%20E09%e2%80%9313.iso#10
-#EXTINF:0,,1.13. Hathor
+#EXTINF:2545,,1.13. Hathor
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D03.%20E09%e2%80%9313.iso#11
-#EXTINF:0,,1.14. Singularity
+#EXTINF:2545,,1.14. Singularity
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D04.%20E14%e2%80%9317.iso#6
-#EXTINF:0,,1.15. Cor-ai
+#EXTINF:2545,,1.15. Cor-ai
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D04.%20E14%e2%80%9317.iso#7
-#EXTINF:0,,1.16. Enigma
+#EXTINF:2545,,1.16. Enigma
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D04.%20E14%e2%80%9317.iso#8
-#EXTINF:0,,1.17. Solitudes
+#EXTINF:2545,,1.17. Solitudes
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D04.%20E14%e2%80%9317.iso#9
-#EXTINF:0,,1.18. Tin Man
+#EXTINF:2545,,1.18. Tin Man
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D05.%20E18%e2%80%9321.iso#6
-#EXTINF:0,,1.19. There but for the Grace of God
+#EXTINF:2545,,1.19. There but for the Grace of God
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D05.%20E18%e2%80%9321.iso#7
-#EXTINF:0,,1.20. Politics
+#EXTINF:2545,,1.20. Politics
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D05.%20E18%e2%80%9321.iso#8
-#EXTINF:0,,1.21. Within the Serpent's Grasp
+#EXTINF:2544,,1.21. Within the Serpent's Grasp
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D05.%20E18%e2%80%9321.iso#9
 
-#EXTINF:0,,2.1. The Serpent's Lair
+#EXTINF:2546,,2.1. The Serpent's Lair
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,2.2. In the Line of Duty
+#EXTINF:2546,,2.2. In the Line of Duty
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,2.3. Prisoners
+#EXTINF:2546,,2.3. Prisoners
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,2.4. The Gamekeeper
+#EXTINF:2546,,2.4. The Gamekeeper
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.5. Need
+#EXTINF:2546,,2.5. Need
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,2.6. Thor's Chariot
+#EXTINF:2546,,2.6. Thor's Chariot
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,2.7. Message In A Bottle
+#EXTINF:2546,,2.7. Message In A Bottle
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,2.8. Family
+#EXTINF:2546,,2.8. Family
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.9. Secrets
+#EXTINF:2546,,2.9. Secrets
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D03.%20E09%e2%80%9310,%20E13,%20E11.iso#1
-#EXTINF:0,,2.10. Bane
+#EXTINF:2546,,2.10. Bane
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D03.%20E09%e2%80%9310,%20E13,%20E11.iso#2
-#EXTINF:0,,2.11. The Tok'ra (part 1)
+#EXTINF:2546,,2.11. The Tok'ra (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D03.%20E09%e2%80%9310,%20E13,%20E11.iso#4
-#EXTINF:0,,2.12. The Tok'ra (part 2)
+#EXTINF:2546,,2.12. The Tok'ra (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D04.%20E12,%20E14,%20E16,%20E15.iso#1
-#EXTINF:0,,2.13. Spirits
+#EXTINF:2546,,2.13. Spirits
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D03.%20E09%e2%80%9310,%20E13,%20E11.iso#3
-#EXTINF:0,,2.14. Touchstone
+#EXTINF:2546,,2.14. Touchstone
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D04.%20E12,%20E14,%20E16,%20E15.iso#2
-#EXTINF:0,,2.15. The Fifth Race
+#EXTINF:2546,,2.15. The Fifth Race
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D04.%20E12,%20E14,%20E16,%20E15.iso#4
-#EXTINF:0,,2.16. A Matter of Time
+#EXTINF:2546,,2.16. A Matter of Time
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D04.%20E12,%20E14,%20E16,%20E15.iso#3
-#EXTINF:0,,2.17. Holiday
+#EXTINF:2546,,2.17. Holiday
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D05.%20E18,%20E17,%20E19%e2%80%9320.iso#2
-#EXTINF:0,,2.18. Serpent's Song
+#EXTINF:2547,,2.18. Serpent's Song
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D05.%20E18,%20E17,%20E19%e2%80%9320.iso#1
-#EXTINF:0,,2.19. One False Step
+#EXTINF:2547,,2.19. One False Step
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D05.%20E18,%20E17,%20E19%e2%80%9320.iso#3
-#EXTINF:0,,2.20. Show and Tell
+#EXTINF:2547,,2.20. Show and Tell
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D05.%20E18,%20E17,%20E19%e2%80%9320.iso#4
-#EXTINF:0,,2.21. 1969
+#EXTINF:2547,,2.21. 1969
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D06.%20E21%e2%80%9322.iso#1
-#EXTINF:0,,2.22. Out of Mind
+#EXTINF:2547,,2.22. Out of Mind
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D06.%20E21%e2%80%9322.iso#2
 
-#EXTINF:0,,3.1. Into the Fire
+#EXTINF:2545,,3.1. Into the Fire
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,3.2. Seth
+#EXTINF:2545,,3.2. Seth
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,3.3. Fair Game
+#EXTINF:2545,,3.3. Fair Game
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,3.4. Legacy
+#EXTINF:2545,,3.4. Legacy
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,3.5. Learning Curve
+#EXTINF:2545,,3.5. Learning Curve
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,3.6. Point of View
+#EXTINF:2545,,3.6. Point of View
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,3.7. Deadman Switch
+#EXTINF:2545,,3.7. Deadman Switch
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,3.8. Demons
+#EXTINF:2545,,3.8. Demons
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,3.9. Rules of Engagement
+#EXTINF:2546,,3.9. Rules of Engagement
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,3.10. Forever in a Day
+#EXTINF:2546,,3.10. Forever in a Day
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,3.11. Past and Present
+#EXTINF:2546,,3.11. Past and Present
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,3.12. Jolinar's Memories
+#EXTINF:2546,,3.12. Jolinar's Memories
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,3.13. The Devil You Know
+#EXTINF:2545,,3.13. The Devil You Know
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,3.14. Foothold
+#EXTINF:2545,,3.14. Foothold
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,3.15. Pretense
+#EXTINF:2545,,3.15. Pretense
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,3.16. Urgo
+#EXTINF:2545,,3.16. Urgo
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,3.17. A Hundred Days
+#EXTINF:2546,,3.17. A Hundred Days
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,3.18. Shades of Grey
+#EXTINF:2546,,3.18. Shades of Grey
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,3.19. New Ground
+#EXTINF:2546,,3.19. New Ground
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,3.20. Maternal Instinct
+#EXTINF:2546,,3.20. Maternal Instinct
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,3.21. Crystal Skull
+#EXTINF:2545,,3.21. Crystal Skull
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D06.%20E21%e2%80%9322.iso#1
-#EXTINF:0,,3.22. Nemesis
+#EXTINF:2545,,3.22. Nemesis
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D06.%20E21%e2%80%9322.iso#4
 
-#EXTINF:0,,4.1. Small Victories
+#EXTINF:2545,,4.1. Small Victories
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,4.2. The Other Side
+#EXTINF:2547,,4.2. The Other Side
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,4.3. Upgrades
+#EXTINF:2548,,4.3. Upgrades
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,4.4. Crossroads
+#EXTINF:2547,,4.4. Crossroads
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,4.5. Divide and Conquer
+#EXTINF:2548,,4.5. Divide and Conquer
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,4.6. Window of Opportunity
+#EXTINF:2548,,4.6. Window of Opportunity
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,4.7. Watergate
+#EXTINF:2545,,4.7. Watergate
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D02.%20E05%e2%80%9308.iso#7
-#EXTINF:0,,4.8. The First Ones
+#EXTINF:2545,,4.8. The First Ones
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D02.%20E05%e2%80%9308.iso#8
-#EXTINF:0,,4.9. Scorched Earth
+#EXTINF:2545,,4.9. Scorched Earth
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,4.10. Beneath the Surface
+#EXTINF:2548,,4.10. Beneath the Surface
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,4.11. Point of No Return
+#EXTINF:2545,,4.11. Point of No Return
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D03.%20E09%e2%80%9312.iso#7
-#EXTINF:0,,4.12. Tangent
+#EXTINF:2547,,4.12. Tangent
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D03.%20E09%e2%80%9312.iso#8
-#EXTINF:0,,4.13. The Curse
+#EXTINF:2545,,4.13. The Curse
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,4.14. The Serpent's Venom
+#EXTINF:2545,,4.14. The Serpent's Venom
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,4.15. Chain Reaction
+#EXTINF:2545,,4.15. Chain Reaction
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D04.%20E13%e2%80%9316.iso#7
-#EXTINF:0,,4.16. 2010
+#EXTINF:2545,,4.16. 2010
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D04.%20E13%e2%80%9316.iso#8
-#EXTINF:0,,4.17. Absolute Power
+#EXTINF:2545,,4.17. Absolute Power
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,4.18. The Light
+#EXTINF:2544,,4.18. The Light
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,4.19. Prodigy
+#EXTINF:2545,,4.19. Prodigy
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D05.%20E17%e2%80%9320.iso#7
-#EXTINF:0,,4.20. Entity
+#EXTINF:2544,,4.20. Entity
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D05.%20E17%e2%80%9320.iso#8
-#EXTINF:0,,4.21. Double Jeopardy
+#EXTINF:2546,,4.21. Double Jeopardy
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D06.%20E21%e2%80%9322.iso#3
-#EXTINF:0,,4.22. Exodus
+#EXTINF:2546,,4.22. Exodus
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D06.%20E21%e2%80%9322.iso#4
 
-#EXTINF:0,,5.1. Enemies
+#EXTINF:2546,,5.1. Enemies
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,5.2. Threshold
+#EXTINF:2545,,5.2. Threshold
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,5.3. Ascension
+#EXTINF:2545,,5.3. Ascension
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,5.4. The Fifth Man
+#EXTINF:2545,,5.4. The Fifth Man
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D01.%20E01%e2%80%9304.iso#9
-#EXTINF:0,,5.5. Red Sky
+#EXTINF:2545,,5.5. Red Sky
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,5.6. Rite of Passage
+#EXTINF:2545,,5.6. Rite of Passage
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D02.%20E05%e2%80%9308.iso#7
-#EXTINF:0,,5.7. Beast of Burden
+#EXTINF:2545,,5.7. Beast of Burden
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D02.%20E05%e2%80%9308.iso#8
-#EXTINF:0,,5.8. The Tomb
+#EXTINF:2545,,5.8. The Tomb
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D02.%20E05%e2%80%9308.iso#9
-#EXTINF:0,,5.9. Between Two Fires
+#EXTINF:2545,,5.9. Between Two Fires
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,5.10. 2001
+#EXTINF:2545,,5.10. 2001
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D03.%20E09%e2%80%9312.iso#7
-#EXTINF:0,,5.11. Desperate Measures
+#EXTINF:2545,,5.11. Desperate Measures
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D03.%20E09%e2%80%9312.iso#8
-#EXTINF:0,,5.12. Wormhole X-Treme!
+#EXTINF:2545,,5.12. Wormhole X-Treme!
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D03.%20E09%e2%80%9312.iso#9
-#EXTINF:0,,5.13. Proving Ground
+#EXTINF:2545,,5.13. Proving Ground
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,5.14. 48 Hours
+#EXTINF:2545,,5.14. 48 Hours
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D04.%20E13%e2%80%9316.iso#7
-#EXTINF:0,,5.15. Summit
+#EXTINF:2545,,5.15. Summit
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D04.%20E13%e2%80%9316.iso#8
-#EXTINF:0,,5.16. Last Stand
+#EXTINF:2545,,5.16. Last Stand
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D04.%20E13%e2%80%9316.iso#9
-#EXTINF:0,,5.17. Failsafe
+#EXTINF:2545,,5.17. Failsafe
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,5.18. The Warrior
+#EXTINF:2545,,5.18. The Warrior
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D05.%20E17%e2%80%9320.iso#7
-#EXTINF:0,,5.19. Menace
+#EXTINF:2545,,5.19. Menace
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D05.%20E17%e2%80%9320.iso#8
-#EXTINF:0,,5.20. The Sentinel
+#EXTINF:2544,,5.20. The Sentinel
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D05.%20E17%e2%80%9320.iso#9
-#EXTINF:0,,5.21. Meridian
+#EXTINF:2545,,5.21. Meridian
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D06.%20E21%e2%80%9322.iso#4
-#EXTINF:0,,5.22. Revelations
+#EXTINF:2545,,5.22. Revelations
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D06.%20E21%e2%80%9322.iso#5
 
-#EXTINF:0,,6.1. Redemption (part 1)
+#EXTINF:2533,,6.1. Redemption (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,6.2. Redemption (part 2)
+#EXTINF:2535,,6.2. Redemption (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,6.3. Descent
+#EXTINF:2533,,6.3. Descent
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,6.4. Frozen
+#EXTINF:2536,,6.4. Frozen
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D01.%20E01%e2%80%9304.iso#9
-#EXTINF:0,,6.5. Nightwalkers
+#EXTINF:2531,,6.5. Nightwalkers
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,6.6. Abyss
+#EXTINF:2534,,6.6. Abyss
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D02.%20E05%e2%80%9308.iso#7
-#EXTINF:0,,6.7. Shadow Play
+#EXTINF:2527,,6.7. Shadow Play
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D02.%20E05%e2%80%9308.iso#8
-#EXTINF:0,,6.8. The Other Guys
+#EXTINF:2535,,6.8. The Other Guys
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D02.%20E05%e2%80%9308.iso#9
-#EXTINF:0,,6.9. Allegiance
+#EXTINF:2537,,6.9. Allegiance
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,6.10. Cure
+#EXTINF:2534,,6.10. Cure
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D03.%20E09%e2%80%9312.iso#7
-#EXTINF:0,,6.11. Prometheus
+#EXTINF:2533,,6.11. Prometheus
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D03.%20E09%e2%80%9312.iso#8
-#EXTINF:0,,6.12. Unnatural Selection
+#EXTINF:2530,,6.12. Unnatural Selection
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D03.%20E09%e2%80%9312.iso#9
-#EXTINF:0,,6.13. Sight Unseen
+#EXTINF:2534,,6.13. Sight Unseen
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,6.14. Smoke and Mirrors
+#EXTINF:2535,,6.14. Smoke and Mirrors
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D04.%20E13%e2%80%9316.iso#7
-#EXTINF:0,,6.15. Paradise Lost
+#EXTINF:2530,,6.15. Paradise Lost
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D04.%20E13%e2%80%9316.iso#8
-#EXTINF:0,,6.16. Metamorphosis
+#EXTINF:2534,,6.16. Metamorphosis
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D04.%20E13%e2%80%9316.iso#9
-#EXTINF:0,,6.17. Disclosure
+#EXTINF:2516,,6.17. Disclosure
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,6.18. Forsaken
+#EXTINF:2534,,6.18. Forsaken
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D05.%20E17%e2%80%9320.iso#7
-#EXTINF:0,,6.19. The Changeling
+#EXTINF:2533,,6.19. The Changeling
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D05.%20E17%e2%80%9320.iso#8
-#EXTINF:0,,6.20. Memento
+#EXTINF:2530,,6.20. Memento
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D05.%20E17%e2%80%9320.iso#9
-#EXTINF:0,,6.21. Prophecy
+#EXTINF:2534,,6.21. Prophecy
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D06.%20E21%e2%80%9322.iso#4
-#EXTINF:0,,6.22. Full Circle
+#EXTINF:2531,,6.22. Full Circle
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D06.%20E21%e2%80%9322.iso#5
 
-#EXTINF:0,,7.1. Fallen
+#EXTINF:2534,,7.1. Fallen
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,7.2. Homecoming
+#EXTINF:2532,,7.2. Homecoming
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,7.3. Fragile Balance
+#EXTINF:2535,,7.3. Fragile Balance
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,7.4. Orpheus
+#EXTINF:2535,,7.4. Orpheus
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D01.%20E01%e2%80%9304.iso#9
-#EXTINF:0,,7.5. Revisions
+#EXTINF:2535,,7.5. Revisions
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,7.6. Lifeboat
+#EXTINF:2537,,7.6. Lifeboat
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D02.%20E05%e2%80%9308.iso#7
-#EXTINF:0,,7.7. Enemy Mine
+#EXTINF:2541,,7.7. Enemy Mine
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D02.%20E05%e2%80%9308.iso#8
-#EXTINF:0,,7.8. Space Race
+#EXTINF:2535,,7.8. Space Race
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D02.%20E05%e2%80%9308.iso#9
-#EXTINF:0,,7.9. Avenger 2.0
+#EXTINF:2535,,7.9. Avenger 2.0
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,7.10. Birthright
+#EXTINF:2535,,7.10. Birthright
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D03.%20E09%e2%80%9312.iso#7
-#EXTINF:0,,7.11. Evolution (part 1)
+#EXTINF:2536,,7.11. Evolution (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D03.%20E09%e2%80%9312.iso#8
-#EXTINF:0,,7.12. Evolution (part 2)
+#EXTINF:2537,,7.12. Evolution (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D03.%20E09%e2%80%9312.iso#9
-#EXTINF:0,,7.13. Grace
+#EXTINF:2528,,7.13. Grace
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,7.14. Fallout
+#EXTINF:2537,,7.14. Fallout
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D04.%20E13%e2%80%9316.iso#7
-#EXTINF:0,,7.15. Chimera
+#EXTINF:2527,,7.15. Chimera
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D04.%20E13%e2%80%9316.iso#8
-#EXTINF:0,,7.16. Death Knell
+#EXTINF:2526,,7.16. Death Knell
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D04.%20E13%e2%80%9316.iso#9
-#EXTINF:0,,7.17. Heroes (part 1)
+#EXTINF:2533,,7.17. Heroes (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D05.%20E17%e2%80%9320.iso#8
-#EXTINF:0,,7.18. Heroes (part 2)
+#EXTINF:2536,,7.18. Heroes (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D05.%20E17%e2%80%9320.iso#9
-#EXTINF:0,,7.19. Resurrection
+#EXTINF:2534,,7.19. Resurrection
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D05.%20E17%e2%80%9320.iso#10
-#EXTINF:0,,7.20. Inauguration
+#EXTINF:2531,,7.20. Inauguration
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D05.%20E17%e2%80%9320.iso#11
-#EXTINF:0,,7.21, 22. Lost City (parts 1&2)
+#EXTINF:4921,,7.21, 22. Lost City (parts 1&2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D06.%20E21%e2%80%9322.iso#2
 
-#EXTINF:0,,8.1, 2. New Order (parts 1&2)
+#EXTINF:4866,,8.1, 2. New Order (parts 1&2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D01.%20E01%e2%80%9304.iso#10
-#EXTINF:0,,8.3. Lockdown
+#EXTINF:2517,,8.3. Lockdown
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D01.%20E01%e2%80%9304.iso#11
-#EXTINF:0,,8.4. Zero Hour
+#EXTINF:2517,,8.4. Zero Hour
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D01.%20E01%e2%80%9304.iso#12
-#EXTINF:0,,8.5. Icon
+#EXTINF:2514,,8.5. Icon
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D02.%20E05%e2%80%9308.iso#10
-#EXTINF:0,,8.6. Avatar
+#EXTINF:2514,,8.6. Avatar
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D02.%20E05%e2%80%9308.iso#11
-#EXTINF:0,,8.7. Affinity
+#EXTINF:2512,,8.7. Affinity
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D02.%20E05%e2%80%9308.iso#12
-#EXTINF:0,,8.8. Covenant
+#EXTINF:2516,,8.8. Covenant
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D02.%20E05%e2%80%9308.iso#13
-#EXTINF:0,,8.9. Sacrifices
+#EXTINF:2516,,8.9. Sacrifices
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D03.%20E09%e2%80%9310,%20E12.iso#8
-#EXTINF:0,,8.10. Endgame
+#EXTINF:2514,,8.10. Endgame
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D03.%20E09%e2%80%9310,%20E12.iso#9
-#EXTINF:0,,8.11. Gemini
+#EXTINF:2517,,8.11. Gemini
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D04.%20E11,%20E13%e2%80%9314.iso#7
-#EXTINF:0,,8.12. Prometheus Unbound
+#EXTINF:2513,,8.12. Prometheus Unbound
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D03.%20E09%e2%80%9310,%20E12.iso#10
-#EXTINF:0,,8.13. It's Good to Be King
+#EXTINF:2506,,8.13. It's Good to Be King
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D04.%20E11,%20E13%e2%80%9314.iso#11
-#EXTINF:0,,8.14. Full Alert
+#EXTINF:2515,,8.14. Full Alert
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D04.%20E11,%20E13%e2%80%9314.iso#8
-#EXTINF:0,,8.15. Citizen Joe
+#EXTINF:2514,,8.15. Citizen Joe
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D06.%20E15,%20E19%e2%80%9320.iso#10
-#EXTINF:0,,8.16. Reckoning (part 1)
+#EXTINF:2515,,8.16. Reckoning (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D05.%20E16%e2%80%9318.iso#8
-#EXTINF:0,,8.17. Reckoning (part 2)
+#EXTINF:2516,,8.17. Reckoning (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D05.%20E16%e2%80%9318.iso#9
-#EXTINF:0,,8.18. Threads
+#EXTINF:3785,,8.18. Threads
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D05.%20E16%e2%80%9318.iso#12
-#EXTINF:0,,8.19. Moebius (part 1)
+#EXTINF:2515,,8.19. Moebius (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D06.%20E15,%20E19%e2%80%9320.iso#6
-#EXTINF:0,,8.20. Moebius (part 2)
+#EXTINF:2508,,8.20. Moebius (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D06.%20E15,%20E19%e2%80%9320.iso#7
 
-#EXTINF:0,,9.1. Avalon (part 1)
+#EXTINF:2521,,9.1. Avalon (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D01.%20E01%e2%80%9304.iso#16
-#EXTINF:0,,9.2. Avalon (part 2)
+#EXTINF:2482,,9.2. Avalon (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D01.%20E01%e2%80%9304.iso#17
-#EXTINF:0,,9.3. Origin
+#EXTINF:2521,,9.3. Origin
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D01.%20E01%e2%80%9304.iso#18
-#EXTINF:0,,9.4. The Ties that Bind
+#EXTINF:2520,,9.4. The Ties that Bind
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D01.%20E01%e2%80%9304.iso#19
-#EXTINF:0,,9.5. The Powers that Be
+#EXTINF:2518,,9.5. The Powers that Be
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D02.%20E05%e2%80%9308.iso#16
-#EXTINF:0,,9.6. Beachhead
+#EXTINF:2521,,9.6. Beachhead
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D02.%20E05%e2%80%9308.iso#17
-#EXTINF:0,,9.7. Ex deus machina
+#EXTINF:2513,,9.7. Ex deus machina
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D02.%20E05%e2%80%9308.iso#18
-#EXTINF:0,,9.8. Babylon
+#EXTINF:2521,,9.8. Babylon
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D02.%20E05%e2%80%9308.iso#19
-#EXTINF:0,,9.9. Prototype
+#EXTINF:2524,,9.9. Prototype
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D03.%20E09%e2%80%9311.iso#15
-#EXTINF:0,,9.10. The Fourth Horseman (part 1)
+#EXTINF:2518,,9.10. The Fourth Horseman (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D03.%20E09%e2%80%9311.iso#16
-#EXTINF:0,,9.11. The Fourth Horseman (part 2)
+#EXTINF:2461,,9.11. The Fourth Horseman (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D03.%20E09%e2%80%9311.iso#17
-#EXTINF:0,,9.12. Collateral Damage
+#EXTINF:2514,,9.12. Collateral Damage
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D04.%20E12%e2%80%9314.iso#15
-#EXTINF:0,,9.13. Ripple Effect
+#EXTINF:2508,,9.13. Ripple Effect
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D04.%20E12%e2%80%9314.iso#16
-#EXTINF:0,,9.14. Stronghold
+#EXTINF:2511,,9.14. Stronghold
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D04.%20E12%e2%80%9314.iso#17
-#EXTINF:0,,9.15. Ethon
+#EXTINF:2507,,9.15. Ethon
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D05.%20E15%e2%80%9317.iso#15
-#EXTINF:0,,9.16. Off the Grid
+#EXTINF:2506,,9.16. Off the Grid
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D05.%20E15%e2%80%9317.iso#16
-#EXTINF:0,,9.17. The Scourge
+#EXTINF:2508,,9.17. The Scourge
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D05.%20E15%e2%80%9317.iso#17
-#EXTINF:0,,9.18. Arthur's Mantle
+#EXTINF:2512,,9.18. Arthur's Mantle
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D06.%20E18%e2%80%9320.iso#15
-#EXTINF:0,,9.19. Crusade
+#EXTINF:2512,,9.19. Crusade
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D06.%20E18%e2%80%9320.iso#16
-#EXTINF:0,,9.20. Camelot
+#EXTINF:2505,,9.20. Camelot
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D06.%20E18%e2%80%9320.iso#17
 
-#EXTINF:0,,10.1. Flesh and Blood
+#EXTINF:2510,,10.1. Flesh and Blood
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,10.2. Morpheus
+#EXTINF:2509,,10.2. Morpheus
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,10.3. The Pegasus Project
+#EXTINF:2510,,10.3. The Pegasus Project
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,10.4. Insiders
+#EXTINF:2510,,10.4. Insiders
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,10.5. Uninvited
+#EXTINF:2509,,10.5. Uninvited
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,10.6. 200
+#EXTINF:2510,,10.6. 200
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,10.7. Counterstrike
+#EXTINF:2507,,10.7. Counterstrike
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,10.8. Memento mori
+#EXTINF:2509,,10.8. Memento mori
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,10.9. Company of Thieves
+#EXTINF:2510,,10.9. Company of Thieves
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,10.10. The Quest (part 1)
+#EXTINF:2514,,10.10. The Quest (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,10.11. The Quest (part 2)
+#EXTINF:2505,,10.11. The Quest (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,10.12. Line in the Sand
+#EXTINF:2509,,10.12. Line in the Sand
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,10.13. The Road Not Taken
+#EXTINF:2509,,10.13. The Road Not Taken
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,10.14. The Shroud
+#EXTINF:2512,,10.14. The Shroud
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,10.15. Bounty
+#EXTINF:2496,,10.15. Bounty
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,10.16. Bad Guys
+#EXTINF:2504,,10.16. Bad Guys
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,10.17. Talion
+#EXTINF:2510,,10.17. Talion
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,10.18. Family Ties
+#EXTINF:2510,,10.18. Family Ties
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,10.19. Dominion
+#EXTINF:2510,,10.19. Dominion
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,10.20. Unending
+#EXTINF:2510,,10.20. Unending
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D05.%20E17%e2%80%9320.iso#4
 
-#EXTINF:0,,Stargate—The Ark of Truth
+#EXTINF:5863,,Stargate—The Ark of Truth
 dvd:///mnt/dvd/archive/S/Stargate%e2%80%94The%20Ark%20of%20Truth.iso#2
-#EXTINF:0,,Stargate—Continuum
+#EXTINF:5674,,Stargate—Continuum
 dvd:///mnt/dvd/archive/S/Stargate%e2%80%94Continuum.iso#3
index 6294156..168e72d 100644 (file)
@@ -1,79 +1,79 @@
 #EXTM3U
 
-#EXTINF:0,,1.1–3. Air
+#EXTINF:7949,,1.1–3. Air
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,1.4. Darkness
+#EXTINF:2515,,1.4. Darkness
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D02.%20E04%e2%80%9307.iso#3
-#EXTINF:0,,1.5. Light
+#EXTINF:2510,,1.5. Light
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D02.%20E04%e2%80%9307.iso#4
-#EXTINF:0,,1.6. Water
+#EXTINF:2507,,1.6. Water
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D02.%20E04%e2%80%9307.iso#5
-#EXTINF:0,,1.7. Earth
+#EXTINF:2515,,1.7. Earth
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D02.%20E04%e2%80%9307.iso#6
-#EXTINF:0,,1.8. Time
+#EXTINF:2511,,1.8. Time
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D03.%20E08%e2%80%9311.iso#3
-#EXTINF:0,,1.9. Life
+#EXTINF:2516,,1.9. Life
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D03.%20E08%e2%80%9311.iso#4
-#EXTINF:0,,1.10. Justice
+#EXTINF:2510,,1.10. Justice
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D03.%20E08%e2%80%9311.iso#5
-#EXTINF:0,,1.11. Space
+#EXTINF:2514,,1.11. Space
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D03.%20E08%e2%80%9311.iso#6
-#EXTINF:0,,1.12. Divided
+#EXTINF:2507,,1.12. Divided
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D04.%20E12%e2%80%9315.iso#10
-#EXTINF:0,,1.13. Faith
+#EXTINF:2511,,1.13. Faith
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D04.%20E12%e2%80%9315.iso#11
-#EXTINF:0,,1.14. Human
+#EXTINF:2507,,1.14. Human
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D04.%20E12%e2%80%9315.iso#12
-#EXTINF:0,,1.15. Lost
+#EXTINF:2511,,1.15. Lost
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D04.%20E12%e2%80%9315.iso#13
-#EXTINF:0,,1.16. Sabotage
+#EXTINF:2511,,1.16. Sabotage
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D05.%20E16%e2%80%9320.iso#3
-#EXTINF:0,,1.17. Pain
+#EXTINF:2511,,1.17. Pain
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D05.%20E16%e2%80%9320.iso#4
-#EXTINF:0,,1.18. Subversion
+#EXTINF:2510,,1.18. Subversion
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D05.%20E16%e2%80%9320.iso#5
-#EXTINF:0,,1.19. Incursion (part 1)
+#EXTINF:2511,,1.19. Incursion (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D05.%20E16%e2%80%9320.iso#6
-#EXTINF:0,,1.20. Incursion (part 2)
+#EXTINF:2511,,1.20. Incursion (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D05.%20E16%e2%80%9320.iso#7
 
-#EXTINF:0,,2.1. Intervention
+#EXTINF:2503,,2.1. Intervention
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,2.2. Aftermath
+#EXTINF:2506,,2.2. Aftermath
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.3. Awakening
+#EXTINF:2505,,2.3. Awakening
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,2.4. Pathogen
+#EXTINF:2509,,2.4. Pathogen
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,2.5. Cloverdale
+#EXTINF:2506,,2.5. Cloverdale
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,2.6. Trial and Error
+#EXTINF:2506,,2.6. Trial and Error
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.7. The Greater Good
+#EXTINF:2505,,2.7. The Greater Good
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,2.8. Malice
+#EXTINF:2506,,2.8. Malice
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,2.9. Visitation
+#EXTINF:2505,,2.9. Visitation
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,2.10. Resurgence
+#EXTINF:2500,,2.10. Resurgence
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,2.11. Deliverance
+#EXTINF:2505,,2.11. Deliverance
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,2.12. Twin Destinies
+#EXTINF:2502,,2.12. Twin Destinies
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,2.13. Alliances
+#EXTINF:2505,,2.13. Alliances
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,2.14. Hope
+#EXTINF:2514,,2.14. Hope
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,2.15. Seizure
+#EXTINF:2505,,2.15. Seizure
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,2.16. The Hunt
+#EXTINF:2506,,2.16. The Hunt
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,2.17. Common Descent
+#EXTINF:2504,,2.17. Common Descent
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,2.18. Epilogue
+#EXTINF:2505,,2.18. Epilogue
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,2.19. Blockade
+#EXTINF:2505,,2.19. Blockade
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,2.20. Gauntlet
+#EXTINF:2503,,2.20. Gauntlet
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D05.%20E17%e2%80%9320.iso#6
index 33b42e9..1713d0f 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,Stargate Stargate
+#EXTINF:7495,,Stargate Stargate
 dvd:///mnt/dvd/archive/S/Stargate.iso#14
 
-#EXTINF:0,,Stargate SG-1 1.1. Children of the Gods
+#EXTINF:5587,,Stargate SG-1 1.1. Children of the Gods
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D01.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,Stargate SG-1 1.2. The Enemy Within
+#EXTINF:2545,,Stargate SG-1 1.2. The Enemy Within
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D01.%20E01%e2%80%9303.iso#6
-#EXTINF:0,,Stargate SG-1 1.3. Emancipation
+#EXTINF:2545,,Stargate SG-1 1.3. Emancipation
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D01.%20E01%e2%80%9303.iso#7
-#EXTINF:0,,Stargate SG-1 1.4. The Broca Divide
+#EXTINF:2545,,Stargate SG-1 1.4. The Broca Divide
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D02.%20E04%e2%80%9308.iso#7
-#EXTINF:0,,Stargate SG-1 1.5. The First Commandment
+#EXTINF:2545,,Stargate SG-1 1.5. The First Commandment
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D02.%20E04%e2%80%9308.iso#8
-#EXTINF:0,,Stargate SG-1 1.6. Cold Lazarus
+#EXTINF:2545,,Stargate SG-1 1.6. Cold Lazarus
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D02.%20E04%e2%80%9308.iso#9
-#EXTINF:0,,Stargate SG-1 1.7. The Nox
+#EXTINF:2545,,Stargate SG-1 1.7. The Nox
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D02.%20E04%e2%80%9308.iso#10
-#EXTINF:0,,Stargate SG-1 1.8. Brief Candle
+#EXTINF:2545,,Stargate SG-1 1.8. Brief Candle
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D02.%20E04%e2%80%9308.iso#11
-#EXTINF:0,,Stargate SG-1 1.9. Thor's Hammer
+#EXTINF:2545,,Stargate SG-1 1.9. Thor's Hammer
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D03.%20E09%e2%80%9313.iso#7
-#EXTINF:0,,Stargate SG-1 1.10. The Torment of Tantalus
+#EXTINF:2545,,Stargate SG-1 1.10. The Torment of Tantalus
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D03.%20E09%e2%80%9313.iso#8
-#EXTINF:0,,Stargate SG-1 1.11. Bloodlines
+#EXTINF:2545,,Stargate SG-1 1.11. Bloodlines
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D03.%20E09%e2%80%9313.iso#9
-#EXTINF:0,,Stargate SG-1 1.12. Fire and Water
+#EXTINF:2545,,Stargate SG-1 1.12. Fire and Water
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D03.%20E09%e2%80%9313.iso#10
-#EXTINF:0,,Stargate SG-1 1.13. Hathor
+#EXTINF:2545,,Stargate SG-1 1.13. Hathor
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D03.%20E09%e2%80%9313.iso#11
-#EXTINF:0,,Stargate SG-1 1.14. Singularity
+#EXTINF:2545,,Stargate SG-1 1.14. Singularity
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D04.%20E14%e2%80%9317.iso#6
-#EXTINF:0,,Stargate SG-1 1.15. Cor-ai
+#EXTINF:2545,,Stargate SG-1 1.15. Cor-ai
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D04.%20E14%e2%80%9317.iso#7
-#EXTINF:0,,Stargate SG-1 1.16. Enigma
+#EXTINF:2545,,Stargate SG-1 1.16. Enigma
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D04.%20E14%e2%80%9317.iso#8
-#EXTINF:0,,Stargate SG-1 1.17. Solitudes
+#EXTINF:2545,,Stargate SG-1 1.17. Solitudes
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D04.%20E14%e2%80%9317.iso#9
-#EXTINF:0,,Stargate SG-1 1.18. Tin Man
+#EXTINF:2545,,Stargate SG-1 1.18. Tin Man
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D05.%20E18%e2%80%9321.iso#6
-#EXTINF:0,,Stargate SG-1 1.19. There but for the Grace of God
+#EXTINF:2545,,Stargate SG-1 1.19. There but for the Grace of God
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D05.%20E18%e2%80%9321.iso#7
-#EXTINF:0,,Stargate SG-1 1.20. Politics
+#EXTINF:2545,,Stargate SG-1 1.20. Politics
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D05.%20E18%e2%80%9321.iso#8
-#EXTINF:0,,Stargate SG-1 1.21. Within the Serpent's Grasp
+#EXTINF:2544,,Stargate SG-1 1.21. Within the Serpent's Grasp
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S01D05.%20E18%e2%80%9321.iso#9
 
-#EXTINF:0,,Stargate SG-1 2.1. The Serpent's Lair
+#EXTINF:2546,,Stargate SG-1 2.1. The Serpent's Lair
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,Stargate SG-1 2.2. In the Line of Duty
+#EXTINF:2546,,Stargate SG-1 2.2. In the Line of Duty
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Stargate SG-1 2.3. Prisoners
+#EXTINF:2546,,Stargate SG-1 2.3. Prisoners
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Stargate SG-1 2.4. The Gamekeeper
+#EXTINF:2546,,Stargate SG-1 2.4. The Gamekeeper
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Stargate SG-1 2.5. Need
+#EXTINF:2546,,Stargate SG-1 2.5. Need
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,Stargate SG-1 2.6. Thor's Chariot
+#EXTINF:2546,,Stargate SG-1 2.6. Thor's Chariot
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Stargate SG-1 2.7. Message In A Bottle
+#EXTINF:2546,,Stargate SG-1 2.7. Message In A Bottle
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Stargate SG-1 2.8. Family
+#EXTINF:2546,,Stargate SG-1 2.8. Family
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Stargate SG-1 2.9. Secrets
+#EXTINF:2546,,Stargate SG-1 2.9. Secrets
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D03.%20E09%e2%80%9310,%20E13,%20E11.iso#1
-#EXTINF:0,,Stargate SG-1 2.10. Bane
+#EXTINF:2546,,Stargate SG-1 2.10. Bane
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D03.%20E09%e2%80%9310,%20E13,%20E11.iso#2
-#EXTINF:0,,Stargate SG-1 2.11. The Tok'ra (part 1)
+#EXTINF:2546,,Stargate SG-1 2.11. The Tok'ra (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D03.%20E09%e2%80%9310,%20E13,%20E11.iso#4
-#EXTINF:0,,Stargate SG-1 2.12. The Tok'ra (part 2)
+#EXTINF:2546,,Stargate SG-1 2.12. The Tok'ra (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D04.%20E12,%20E14,%20E16,%20E15.iso#1
-#EXTINF:0,,Stargate SG-1 2.13. Spirits
+#EXTINF:2546,,Stargate SG-1 2.13. Spirits
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D03.%20E09%e2%80%9310,%20E13,%20E11.iso#3
-#EXTINF:0,,Stargate SG-1 2.14. Touchstone
+#EXTINF:2546,,Stargate SG-1 2.14. Touchstone
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D04.%20E12,%20E14,%20E16,%20E15.iso#2
-#EXTINF:0,,Stargate SG-1 2.15. The Fifth Race
+#EXTINF:2546,,Stargate SG-1 2.15. The Fifth Race
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D04.%20E12,%20E14,%20E16,%20E15.iso#4
-#EXTINF:0,,Stargate SG-1 2.16. A Matter of Time
+#EXTINF:2546,,Stargate SG-1 2.16. A Matter of Time
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D04.%20E12,%20E14,%20E16,%20E15.iso#3
-#EXTINF:0,,Stargate SG-1 2.17. Holiday
+#EXTINF:2546,,Stargate SG-1 2.17. Holiday
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D05.%20E18,%20E17,%20E19%e2%80%9320.iso#2
-#EXTINF:0,,Stargate SG-1 2.18. Serpent's Song
+#EXTINF:2547,,Stargate SG-1 2.18. Serpent's Song
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D05.%20E18,%20E17,%20E19%e2%80%9320.iso#1
-#EXTINF:0,,Stargate SG-1 2.19. One False Step
+#EXTINF:2547,,Stargate SG-1 2.19. One False Step
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D05.%20E18,%20E17,%20E19%e2%80%9320.iso#3
-#EXTINF:0,,Stargate SG-1 2.20. Show and Tell
+#EXTINF:2547,,Stargate SG-1 2.20. Show and Tell
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D05.%20E18,%20E17,%20E19%e2%80%9320.iso#4
-#EXTINF:0,,Stargate SG-1 2.21. 1969
+#EXTINF:2547,,Stargate SG-1 2.21. 1969
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D06.%20E21%e2%80%9322.iso#1
-#EXTINF:0,,Stargate SG-1 2.22. Out of Mind
+#EXTINF:2547,,Stargate SG-1 2.22. Out of Mind
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S02D06.%20E21%e2%80%9322.iso#2
 
-#EXTINF:0,,Stargate SG-1 3.1. Into the Fire
+#EXTINF:2545,,Stargate SG-1 3.1. Into the Fire
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,Stargate SG-1 3.2. Seth
+#EXTINF:2545,,Stargate SG-1 3.2. Seth
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Stargate SG-1 3.3. Fair Game
+#EXTINF:2545,,Stargate SG-1 3.3. Fair Game
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Stargate SG-1 3.4. Legacy
+#EXTINF:2545,,Stargate SG-1 3.4. Legacy
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Stargate SG-1 3.5. Learning Curve
+#EXTINF:2545,,Stargate SG-1 3.5. Learning Curve
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,Stargate SG-1 3.6. Point of View
+#EXTINF:2545,,Stargate SG-1 3.6. Point of View
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Stargate SG-1 3.7. Deadman Switch
+#EXTINF:2545,,Stargate SG-1 3.7. Deadman Switch
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Stargate SG-1 3.8. Demons
+#EXTINF:2545,,Stargate SG-1 3.8. Demons
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Stargate SG-1 3.9. Rules of Engagement
+#EXTINF:2546,,Stargate SG-1 3.9. Rules of Engagement
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,Stargate SG-1 3.10. Forever in a Day
+#EXTINF:2546,,Stargate SG-1 3.10. Forever in a Day
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,Stargate SG-1 3.11. Past and Present
+#EXTINF:2546,,Stargate SG-1 3.11. Past and Present
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,Stargate SG-1 3.12. Jolinar's Memories
+#EXTINF:2546,,Stargate SG-1 3.12. Jolinar's Memories
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,Stargate SG-1 3.13. The Devil You Know
+#EXTINF:2545,,Stargate SG-1 3.13. The Devil You Know
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,Stargate SG-1 3.14. Foothold
+#EXTINF:2545,,Stargate SG-1 3.14. Foothold
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,Stargate SG-1 3.15. Pretense
+#EXTINF:2545,,Stargate SG-1 3.15. Pretense
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,Stargate SG-1 3.16. Urgo
+#EXTINF:2545,,Stargate SG-1 3.16. Urgo
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,Stargate SG-1 3.17. A Hundred Days
+#EXTINF:2546,,Stargate SG-1 3.17. A Hundred Days
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,Stargate SG-1 3.18. Shades of Grey
+#EXTINF:2546,,Stargate SG-1 3.18. Shades of Grey
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,Stargate SG-1 3.19. New Ground
+#EXTINF:2546,,Stargate SG-1 3.19. New Ground
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,Stargate SG-1 3.20. Maternal Instinct
+#EXTINF:2546,,Stargate SG-1 3.20. Maternal Instinct
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,Stargate SG-1 3.21. Crystal Skull
+#EXTINF:2545,,Stargate SG-1 3.21. Crystal Skull
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D06.%20E21%e2%80%9322.iso#1
-#EXTINF:0,,Stargate SG-1 3.22. Nemesis
+#EXTINF:2545,,Stargate SG-1 3.22. Nemesis
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S03D06.%20E21%e2%80%9322.iso#4
 
-#EXTINF:0,,Stargate SG-1 4.1. Small Victories
+#EXTINF:2545,,Stargate SG-1 4.1. Small Victories
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,Stargate SG-1 4.2. The Other Side
+#EXTINF:2547,,Stargate SG-1 4.2. The Other Side
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Stargate SG-1 4.3. Upgrades
+#EXTINF:2548,,Stargate SG-1 4.3. Upgrades
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,Stargate SG-1 4.4. Crossroads
+#EXTINF:2547,,Stargate SG-1 4.4. Crossroads
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,Stargate SG-1 4.5. Divide and Conquer
+#EXTINF:2548,,Stargate SG-1 4.5. Divide and Conquer
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,Stargate SG-1 4.6. Window of Opportunity
+#EXTINF:2548,,Stargate SG-1 4.6. Window of Opportunity
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,Stargate SG-1 4.7. Watergate
+#EXTINF:2545,,Stargate SG-1 4.7. Watergate
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D02.%20E05%e2%80%9308.iso#7
-#EXTINF:0,,Stargate SG-1 4.8. The First Ones
+#EXTINF:2545,,Stargate SG-1 4.8. The First Ones
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D02.%20E05%e2%80%9308.iso#8
-#EXTINF:0,,Stargate SG-1 4.9. Scorched Earth
+#EXTINF:2545,,Stargate SG-1 4.9. Scorched Earth
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,Stargate SG-1 4.10. Beneath the Surface
+#EXTINF:2548,,Stargate SG-1 4.10. Beneath the Surface
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,Stargate SG-1 4.11. Point of No Return
+#EXTINF:2545,,Stargate SG-1 4.11. Point of No Return
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D03.%20E09%e2%80%9312.iso#7
-#EXTINF:0,,Stargate SG-1 4.12. Tangent
+#EXTINF:2547,,Stargate SG-1 4.12. Tangent
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D03.%20E09%e2%80%9312.iso#8
-#EXTINF:0,,Stargate SG-1 4.13. The Curse
+#EXTINF:2545,,Stargate SG-1 4.13. The Curse
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,Stargate SG-1 4.14. The Serpent's Venom
+#EXTINF:2545,,Stargate SG-1 4.14. The Serpent's Venom
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,Stargate SG-1 4.15. Chain Reaction
+#EXTINF:2545,,Stargate SG-1 4.15. Chain Reaction
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D04.%20E13%e2%80%9316.iso#7
-#EXTINF:0,,Stargate SG-1 4.16. 2010
+#EXTINF:2545,,Stargate SG-1 4.16. 2010
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D04.%20E13%e2%80%9316.iso#8
-#EXTINF:0,,Stargate SG-1 4.17. Absolute Power
+#EXTINF:2545,,Stargate SG-1 4.17. Absolute Power
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,Stargate SG-1 4.18. The Light
+#EXTINF:2544,,Stargate SG-1 4.18. The Light
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,Stargate SG-1 4.19. Prodigy
+#EXTINF:2545,,Stargate SG-1 4.19. Prodigy
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D05.%20E17%e2%80%9320.iso#7
-#EXTINF:0,,Stargate SG-1 4.20. Entity
+#EXTINF:2544,,Stargate SG-1 4.20. Entity
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D05.%20E17%e2%80%9320.iso#8
-#EXTINF:0,,Stargate SG-1 4.21. Double Jeopardy
+#EXTINF:2546,,Stargate SG-1 4.21. Double Jeopardy
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D06.%20E21%e2%80%9322.iso#3
-#EXTINF:0,,Stargate SG-1 4.22. Exodus
+#EXTINF:2546,,Stargate SG-1 4.22. Exodus
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S04D06.%20E21%e2%80%9322.iso#4
 
-#EXTINF:0,,Stargate SG-1 5.1. Enemies
+#EXTINF:2546,,Stargate SG-1 5.1. Enemies
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Stargate SG-1 5.2. Threshold
+#EXTINF:2545,,Stargate SG-1 5.2. Threshold
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,Stargate SG-1 5.3. Ascension
+#EXTINF:2545,,Stargate SG-1 5.3. Ascension
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,Stargate SG-1 5.4. The Fifth Man
+#EXTINF:2545,,Stargate SG-1 5.4. The Fifth Man
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D01.%20E01%e2%80%9304.iso#9
-#EXTINF:0,,Stargate SG-1 5.5. Red Sky
+#EXTINF:2545,,Stargate SG-1 5.5. Red Sky
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,Stargate SG-1 5.6. Rite of Passage
+#EXTINF:2545,,Stargate SG-1 5.6. Rite of Passage
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D02.%20E05%e2%80%9308.iso#7
-#EXTINF:0,,Stargate SG-1 5.7. Beast of Burden
+#EXTINF:2545,,Stargate SG-1 5.7. Beast of Burden
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D02.%20E05%e2%80%9308.iso#8
-#EXTINF:0,,Stargate SG-1 5.8. The Tomb
+#EXTINF:2545,,Stargate SG-1 5.8. The Tomb
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D02.%20E05%e2%80%9308.iso#9
-#EXTINF:0,,Stargate SG-1 5.9. Between Two Fires
+#EXTINF:2545,,Stargate SG-1 5.9. Between Two Fires
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,Stargate SG-1 5.10. 2001
+#EXTINF:2545,,Stargate SG-1 5.10. 2001
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D03.%20E09%e2%80%9312.iso#7
-#EXTINF:0,,Stargate SG-1 5.11. Desperate Measures
+#EXTINF:2545,,Stargate SG-1 5.11. Desperate Measures
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D03.%20E09%e2%80%9312.iso#8
-#EXTINF:0,,Stargate SG-1 5.12. Wormhole X-Treme!
+#EXTINF:2545,,Stargate SG-1 5.12. Wormhole X-Treme!
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D03.%20E09%e2%80%9312.iso#9
-#EXTINF:0,,Stargate SG-1 5.13. Proving Ground
+#EXTINF:2545,,Stargate SG-1 5.13. Proving Ground
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,Stargate SG-1 5.14. 48 Hours
+#EXTINF:2545,,Stargate SG-1 5.14. 48 Hours
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D04.%20E13%e2%80%9316.iso#7
-#EXTINF:0,,Stargate SG-1 5.15. Summit
+#EXTINF:2545,,Stargate SG-1 5.15. Summit
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D04.%20E13%e2%80%9316.iso#8
-#EXTINF:0,,Stargate SG-1 5.16. Last Stand
+#EXTINF:2545,,Stargate SG-1 5.16. Last Stand
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D04.%20E13%e2%80%9316.iso#9
-#EXTINF:0,,Stargate SG-1 5.17. Failsafe
+#EXTINF:2545,,Stargate SG-1 5.17. Failsafe
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,Stargate SG-1 5.18. The Warrior
+#EXTINF:2545,,Stargate SG-1 5.18. The Warrior
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D05.%20E17%e2%80%9320.iso#7
-#EXTINF:0,,Stargate SG-1 5.19. Menace
+#EXTINF:2545,,Stargate SG-1 5.19. Menace
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D05.%20E17%e2%80%9320.iso#8
-#EXTINF:0,,Stargate SG-1 5.20. The Sentinel
+#EXTINF:2544,,Stargate SG-1 5.20. The Sentinel
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D05.%20E17%e2%80%9320.iso#9
-#EXTINF:0,,Stargate SG-1 5.21. Meridian
+#EXTINF:2545,,Stargate SG-1 5.21. Meridian
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D06.%20E21%e2%80%9322.iso#4
-#EXTINF:0,,Stargate SG-1 5.22. Revelations
+#EXTINF:2545,,Stargate SG-1 5.22. Revelations
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S05D06.%20E21%e2%80%9322.iso#5
 
-#EXTINF:0,,Stargate SG-1 6.1. Redemption (part 1)
+#EXTINF:2533,,Stargate SG-1 6.1. Redemption (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Stargate SG-1 6.2. Redemption (part 2)
+#EXTINF:2535,,Stargate SG-1 6.2. Redemption (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,Stargate SG-1 6.3. Descent
+#EXTINF:2533,,Stargate SG-1 6.3. Descent
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,Stargate SG-1 6.4. Frozen
+#EXTINF:2536,,Stargate SG-1 6.4. Frozen
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D01.%20E01%e2%80%9304.iso#9
-#EXTINF:0,,Stargate SG-1 6.5. Nightwalkers
+#EXTINF:2531,,Stargate SG-1 6.5. Nightwalkers
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,Stargate SG-1 6.6. Abyss
+#EXTINF:2534,,Stargate SG-1 6.6. Abyss
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D02.%20E05%e2%80%9308.iso#7
-#EXTINF:0,,Stargate SG-1 6.7. Shadow Play
+#EXTINF:2527,,Stargate SG-1 6.7. Shadow Play
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D02.%20E05%e2%80%9308.iso#8
-#EXTINF:0,,Stargate SG-1 6.8. The Other Guys
+#EXTINF:2535,,Stargate SG-1 6.8. The Other Guys
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D02.%20E05%e2%80%9308.iso#9
-#EXTINF:0,,Stargate SG-1 6.9. Allegiance
+#EXTINF:2537,,Stargate SG-1 6.9. Allegiance
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,Stargate SG-1 6.10. Cure
+#EXTINF:2534,,Stargate SG-1 6.10. Cure
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D03.%20E09%e2%80%9312.iso#7
-#EXTINF:0,,Stargate SG-1 6.11. Prometheus
+#EXTINF:2533,,Stargate SG-1 6.11. Prometheus
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D03.%20E09%e2%80%9312.iso#8
-#EXTINF:0,,Stargate SG-1 6.12. Unnatural Selection
+#EXTINF:2530,,Stargate SG-1 6.12. Unnatural Selection
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D03.%20E09%e2%80%9312.iso#9
-#EXTINF:0,,Stargate SG-1 6.13. Sight Unseen
+#EXTINF:2534,,Stargate SG-1 6.13. Sight Unseen
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,Stargate SG-1 6.14. Smoke and Mirrors
+#EXTINF:2535,,Stargate SG-1 6.14. Smoke and Mirrors
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D04.%20E13%e2%80%9316.iso#7
-#EXTINF:0,,Stargate SG-1 6.15. Paradise Lost
+#EXTINF:2530,,Stargate SG-1 6.15. Paradise Lost
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D04.%20E13%e2%80%9316.iso#8
-#EXTINF:0,,Stargate SG-1 6.16. Metamorphosis
+#EXTINF:2534,,Stargate SG-1 6.16. Metamorphosis
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D04.%20E13%e2%80%9316.iso#9
-#EXTINF:0,,Stargate SG-1 6.17. Disclosure
+#EXTINF:2516,,Stargate SG-1 6.17. Disclosure
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,Stargate SG-1 6.18. Forsaken
+#EXTINF:2534,,Stargate SG-1 6.18. Forsaken
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D05.%20E17%e2%80%9320.iso#7
-#EXTINF:0,,Stargate SG-1 6.19. The Changeling
+#EXTINF:2533,,Stargate SG-1 6.19. The Changeling
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D05.%20E17%e2%80%9320.iso#8
-#EXTINF:0,,Stargate SG-1 6.20. Memento
+#EXTINF:2530,,Stargate SG-1 6.20. Memento
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D05.%20E17%e2%80%9320.iso#9
-#EXTINF:0,,Stargate SG-1 6.21. Prophecy
+#EXTINF:2534,,Stargate SG-1 6.21. Prophecy
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D06.%20E21%e2%80%9322.iso#4
-#EXTINF:0,,Stargate SG-1 6.22. Full Circle
+#EXTINF:2531,,Stargate SG-1 6.22. Full Circle
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S06D06.%20E21%e2%80%9322.iso#5
 
-#EXTINF:0,,Stargate SG-1 7.1. Fallen
+#EXTINF:2534,,Stargate SG-1 7.1. Fallen
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Stargate SG-1 7.2. Homecoming
+#EXTINF:2532,,Stargate SG-1 7.2. Homecoming
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,Stargate SG-1 7.3. Fragile Balance
+#EXTINF:2535,,Stargate SG-1 7.3. Fragile Balance
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,Stargate SG-1 7.4. Orpheus
+#EXTINF:2535,,Stargate SG-1 7.4. Orpheus
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D01.%20E01%e2%80%9304.iso#9
-#EXTINF:0,,Stargate SG-1 7.5. Revisions
+#EXTINF:2535,,Stargate SG-1 7.5. Revisions
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,Stargate SG-1 7.6. Lifeboat
+#EXTINF:2537,,Stargate SG-1 7.6. Lifeboat
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D02.%20E05%e2%80%9308.iso#7
-#EXTINF:0,,Stargate SG-1 7.7. Enemy Mine
+#EXTINF:2541,,Stargate SG-1 7.7. Enemy Mine
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D02.%20E05%e2%80%9308.iso#8
-#EXTINF:0,,Stargate SG-1 7.8. Space Race
+#EXTINF:2535,,Stargate SG-1 7.8. Space Race
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D02.%20E05%e2%80%9308.iso#9
-#EXTINF:0,,Stargate SG-1 7.9. Avenger 2.0
+#EXTINF:2535,,Stargate SG-1 7.9. Avenger 2.0
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,Stargate SG-1 7.10. Birthright
+#EXTINF:2535,,Stargate SG-1 7.10. Birthright
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D03.%20E09%e2%80%9312.iso#7
-#EXTINF:0,,Stargate SG-1 7.11. Evolution (part 1)
+#EXTINF:2536,,Stargate SG-1 7.11. Evolution (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D03.%20E09%e2%80%9312.iso#8
-#EXTINF:0,,Stargate SG-1 7.12. Evolution (part 2)
+#EXTINF:2537,,Stargate SG-1 7.12. Evolution (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D03.%20E09%e2%80%9312.iso#9
-#EXTINF:0,,Stargate SG-1 7.13. Grace
+#EXTINF:2528,,Stargate SG-1 7.13. Grace
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,Stargate SG-1 7.14. Fallout
+#EXTINF:2537,,Stargate SG-1 7.14. Fallout
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D04.%20E13%e2%80%9316.iso#7
-#EXTINF:0,,Stargate SG-1 7.15. Chimera
+#EXTINF:2527,,Stargate SG-1 7.15. Chimera
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D04.%20E13%e2%80%9316.iso#8
-#EXTINF:0,,Stargate SG-1 7.16. Death Knell
+#EXTINF:2526,,Stargate SG-1 7.16. Death Knell
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D04.%20E13%e2%80%9316.iso#9
-#EXTINF:0,,Stargate SG-1 7.17. Heroes (part 1)
+#EXTINF:2533,,Stargate SG-1 7.17. Heroes (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D05.%20E17%e2%80%9320.iso#8
-#EXTINF:0,,Stargate SG-1 7.18. Heroes (part 2)
+#EXTINF:2536,,Stargate SG-1 7.18. Heroes (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D05.%20E17%e2%80%9320.iso#9
-#EXTINF:0,,Stargate SG-1 7.19. Resurrection
+#EXTINF:2534,,Stargate SG-1 7.19. Resurrection
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D05.%20E17%e2%80%9320.iso#10
-#EXTINF:0,,Stargate SG-1 7.20. Inauguration
+#EXTINF:2531,,Stargate SG-1 7.20. Inauguration
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D05.%20E17%e2%80%9320.iso#11
-#EXTINF:0,,Stargate SG-1 7.21, 22. Lost City (parts 1&2)
+#EXTINF:4921,,Stargate SG-1 7.21, 22. Lost City (parts 1&2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S07D06.%20E21%e2%80%9322.iso#2
 
-#EXTINF:0,,Stargate SG-1 8.1, 2. New Order (parts 1&2)
+#EXTINF:4866,,Stargate SG-1 8.1, 2. New Order (parts 1&2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D01.%20E01%e2%80%9304.iso#10
-#EXTINF:0,,Stargate Atlantis 1.1. Rising
+#EXTINF:5070,,Stargate Atlantis 1.1. Rising
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D01.%20E01%e2%80%9303.iso#8
-#EXTINF:0,,Stargate SG-1 8.3. Lockdown
+#EXTINF:2517,,Stargate SG-1 8.3. Lockdown
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D01.%20E01%e2%80%9304.iso#11
-#EXTINF:0,,Stargate Atlantis 1.2. Hide and Seek
+#EXTINF:2518,,Stargate Atlantis 1.2. Hide and Seek
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D01.%20E01%e2%80%9303.iso#12
-#EXTINF:0,,Stargate SG-1 8.4. Zero Hour
+#EXTINF:2517,,Stargate SG-1 8.4. Zero Hour
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D01.%20E01%e2%80%9304.iso#12
-#EXTINF:0,,Stargate Atlantis 1.3. Thirty-Eight Minutes
+#EXTINF:2515,,Stargate Atlantis 1.3. Thirty-Eight Minutes
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D01.%20E01%e2%80%9303.iso#13
-#EXTINF:0,,Stargate SG-1 8.5. Icon
+#EXTINF:2514,,Stargate SG-1 8.5. Icon
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D02.%20E05%e2%80%9308.iso#10
-#EXTINF:0,,Stargate Atlantis 1.4. Suspicion
+#EXTINF:2515,,Stargate Atlantis 1.4. Suspicion
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D02.%20E04%e2%80%9306,%20E08.iso#11
-#EXTINF:0,,Stargate SG-1 8.6. Avatar
+#EXTINF:2514,,Stargate SG-1 8.6. Avatar
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D02.%20E05%e2%80%9308.iso#11
-#EXTINF:0,,Stargate Atlantis 1.5. Childhood's End
+#EXTINF:2515,,Stargate Atlantis 1.5. Childhood's End
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D02.%20E04%e2%80%9306,%20E08.iso#6
-#EXTINF:0,,Stargate SG-1 8.7. Affinity
+#EXTINF:2512,,Stargate SG-1 8.7. Affinity
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D02.%20E05%e2%80%9308.iso#12
-#EXTINF:0,,Stargate Atlantis 1.6. Poisoning the Well
+#EXTINF:2515,,Stargate Atlantis 1.6. Poisoning the Well
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D02.%20E04%e2%80%9306,%20E08.iso#12
-#EXTINF:0,,Stargate SG-1 8.8. Covenant
+#EXTINF:2516,,Stargate SG-1 8.8. Covenant
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D02.%20E05%e2%80%9308.iso#13
-#EXTINF:0,,Stargate Atlantis 1.7. Underground
+#EXTINF:2509,,Stargate Atlantis 1.7. Underground
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D03.%20E07,%20E09%e2%80%9311.iso#14
-#EXTINF:0,,Stargate SG-1 8.9. Sacrifices
+#EXTINF:2516,,Stargate SG-1 8.9. Sacrifices
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D03.%20E09%e2%80%9310,%20E12.iso#8
-#EXTINF:0,,Stargate Atlantis 1.8. Home
+#EXTINF:2515,,Stargate Atlantis 1.8. Home
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D02.%20E04%e2%80%9306,%20E08.iso#13
-#EXTINF:0,,Stargate SG-1 8.10. Endgame
+#EXTINF:2514,,Stargate SG-1 8.10. Endgame
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D03.%20E09%e2%80%9310,%20E12.iso#9
-#EXTINF:0,,Stargate SG-1 8.11. Gemini
+#EXTINF:2517,,Stargate SG-1 8.11. Gemini
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D04.%20E11,%20E13%e2%80%9314.iso#7
-#EXTINF:0,,Stargate Atlantis 1.9. The Storm
+#EXTINF:2515,,Stargate Atlantis 1.9. The Storm
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D03.%20E07,%20E09%e2%80%9311.iso#9
-#EXTINF:0,,Stargate Atlantis 1.10. The Eye
+#EXTINF:2493,,Stargate Atlantis 1.10. The Eye
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D03.%20E07,%20E09%e2%80%9311.iso#10
-#EXTINF:0,,Stargate SG-1 8.12. Prometheus Unbound
+#EXTINF:2513,,Stargate SG-1 8.12. Prometheus Unbound
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D03.%20E09%e2%80%9310,%20E12.iso#10
-#EXTINF:0,,Stargate Atlantis 1.11. The Defiant One
+#EXTINF:2514,,Stargate Atlantis 1.11. The Defiant One
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D03.%20E07,%20E09%e2%80%9311.iso#11
-#EXTINF:0,,Stargate SG-1 8.13. It's Good to Be King
+#EXTINF:2506,,Stargate SG-1 8.13. It's Good to Be King
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D04.%20E11,%20E13%e2%80%9314.iso#11
-#EXTINF:0,,Stargate Atlantis 1.12. Hot Zone
+#EXTINF:2514,,Stargate Atlantis 1.12. Hot Zone
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D04.%20E12%e2%80%9315.iso#7
-#EXTINF:0,,Stargate SG-1 8.14. Full Alert
+#EXTINF:2515,,Stargate SG-1 8.14. Full Alert
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D04.%20E11,%20E13%e2%80%9314.iso#8
-#EXTINF:0,,Stargate Atlantis 1.13. Sanctuary
+#EXTINF:2514,,Stargate Atlantis 1.13. Sanctuary
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D04.%20E12%e2%80%9315.iso#12
-#EXTINF:0,,Stargate SG-1 8.15. Citizen Joe
+#EXTINF:2514,,Stargate SG-1 8.15. Citizen Joe
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D06.%20E15,%20E19%e2%80%9320.iso#10
-#EXTINF:0,,Stargate Atlantis 1.14. Before I Sleep
+#EXTINF:2514,,Stargate Atlantis 1.14. Before I Sleep
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D04.%20E12%e2%80%9315.iso#13
-#EXTINF:0,,Stargate SG-1 8.16. Reckoning (part 1)
+#EXTINF:2515,,Stargate SG-1 8.16. Reckoning (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D05.%20E16%e2%80%9318.iso#8
-#EXTINF:0,,Stargate SG-1 8.17. Reckoning (part 2)
+#EXTINF:2516,,Stargate SG-1 8.17. Reckoning (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D05.%20E16%e2%80%9318.iso#9
-#EXTINF:0,,Stargate Atlantis 1.15. The Brotherhood
+#EXTINF:2512,,Stargate Atlantis 1.15. The Brotherhood
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D04.%20E12%e2%80%9315.iso#14
-#EXTINF:0,,Stargate Atlantis 1.16. Letters from Pegasus
+#EXTINF:2514,,Stargate Atlantis 1.16. Letters from Pegasus
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D05.%20E16%e2%80%9319.iso#14
-#EXTINF:0,,Stargate SG-1 8.18. Threads
+#EXTINF:3785,,Stargate SG-1 8.18. Threads
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D05.%20E16%e2%80%9318.iso#12
-#EXTINF:0,,Stargate Atlantis 1.17. The Gift
+#EXTINF:2515,,Stargate Atlantis 1.17. The Gift
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D05.%20E16%e2%80%9319.iso#9
-#EXTINF:0,,Stargate SG-1 8.19. Moebius (part 1)
+#EXTINF:2515,,Stargate SG-1 8.19. Moebius (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D06.%20E15,%20E19%e2%80%9320.iso#6
-#EXTINF:0,,Stargate SG-1 8.20. Moebius (part 2)
+#EXTINF:2508,,Stargate SG-1 8.20. Moebius (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S08D06.%20E15,%20E19%e2%80%9320.iso#7
-#EXTINF:0,,Stargate Atlantis 1.18. The Siege (part 1)
+#EXTINF:2514,,Stargate Atlantis 1.18. The Siege (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D05.%20E16%e2%80%9319.iso#10
-#EXTINF:0,,Stargate Atlantis 1.19. The Siege (part 2)
+#EXTINF:2514,,Stargate Atlantis 1.19. The Siege (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S01D05.%20E16%e2%80%9319.iso#11
 
-#EXTINF:0,,Stargate Atlantis 2.1. The Siege (part 3)
+#EXTINF:2509,,Stargate Atlantis 2.1. The Siege (part 3)
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D01.%20E01%e2%80%9304.iso#15
-#EXTINF:0,,Stargate SG-1 9.1. Avalon (part 1)
+#EXTINF:2521,,Stargate SG-1 9.1. Avalon (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D01.%20E01%e2%80%9304.iso#16
-#EXTINF:0,,Stargate SG-1 9.2. Avalon (part 2)
+#EXTINF:2482,,Stargate SG-1 9.2. Avalon (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D01.%20E01%e2%80%9304.iso#17
-#EXTINF:0,,Stargate SG-1 9.3. Origin
+#EXTINF:2521,,Stargate SG-1 9.3. Origin
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D01.%20E01%e2%80%9304.iso#18
-#EXTINF:0,,Stargate Atlantis 2.2. The Intruder
+#EXTINF:2518,,Stargate Atlantis 2.2. The Intruder
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D01.%20E01%e2%80%9304.iso#16
-#EXTINF:0,,Stargate SG-1 9.4. The Ties that Bind
+#EXTINF:2520,,Stargate SG-1 9.4. The Ties that Bind
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D01.%20E01%e2%80%9304.iso#19
-#EXTINF:0,,Stargate Atlantis 2.3. Runner
+#EXTINF:2518,,Stargate Atlantis 2.3. Runner
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D01.%20E01%e2%80%9304.iso#17
-#EXTINF:0,,Stargate SG-1 9.5. The Powers that Be
+#EXTINF:2518,,Stargate SG-1 9.5. The Powers that Be
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D02.%20E05%e2%80%9308.iso#16
-#EXTINF:0,,Stargate Atlantis 2.4. Duet
+#EXTINF:2517,,Stargate Atlantis 2.4. Duet
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D01.%20E01%e2%80%9304.iso#18
-#EXTINF:0,,Stargate SG-1 9.6. Beachhead
+#EXTINF:2521,,Stargate SG-1 9.6. Beachhead
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D02.%20E05%e2%80%9308.iso#17
-#EXTINF:0,,Stargate Atlantis 2.5. Condemned
+#EXTINF:2519,,Stargate Atlantis 2.5. Condemned
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D02.%20E05%e2%80%9308.iso#16
-#EXTINF:0,,Stargate SG-1 9.7. Ex deus machina
+#EXTINF:2513,,Stargate SG-1 9.7. Ex deus machina
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D02.%20E05%e2%80%9308.iso#18
-#EXTINF:0,,Stargate Atlantis 2.6. Trinity
+#EXTINF:2518,,Stargate Atlantis 2.6. Trinity
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D02.%20E05%e2%80%9308.iso#17
-#EXTINF:0,,Stargate SG-1 9.8. Babylon
+#EXTINF:2521,,Stargate SG-1 9.8. Babylon
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D02.%20E05%e2%80%9308.iso#19
-#EXTINF:0,,Stargate Atlantis 2.7. Instinct
+#EXTINF:2519,,Stargate Atlantis 2.7. Instinct
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D02.%20E05%e2%80%9308.iso#18
-#EXTINF:0,,Stargate Atlantis 2.8. Conversion
+#EXTINF:2522,,Stargate Atlantis 2.8. Conversion
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D02.%20E05%e2%80%9308.iso#19
-#EXTINF:0,,Stargate SG-1 9.9. Prototype
+#EXTINF:2524,,Stargate SG-1 9.9. Prototype
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D03.%20E09%e2%80%9311.iso#15
-#EXTINF:0,,Stargate Atlantis 2.9. Aurora
+#EXTINF:2522,,Stargate Atlantis 2.9. Aurora
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D03.%20E09%e2%80%9312.iso#16
-#EXTINF:0,,Stargate SG-1 9.10. The Fourth Horseman (part 1)
+#EXTINF:2518,,Stargate SG-1 9.10. The Fourth Horseman (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D03.%20E09%e2%80%9311.iso#16
-#EXTINF:0,,Stargate SG-1 9.11. The Fourth Horseman (part 2)
+#EXTINF:2461,,Stargate SG-1 9.11. The Fourth Horseman (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D03.%20E09%e2%80%9311.iso#17
-#EXTINF:0,,Stargate Atlantis 2.10. The Lost Boys
+#EXTINF:2519,,Stargate Atlantis 2.10. The Lost Boys
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D03.%20E09%e2%80%9312.iso#17
-#EXTINF:0,,Stargate Atlantis 2.11. The Hive
+#EXTINF:2509,,Stargate Atlantis 2.11. The Hive
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D03.%20E09%e2%80%9312.iso#18
-#EXTINF:0,,Stargate SG-1 9.12. Collateral Damage
+#EXTINF:2514,,Stargate SG-1 9.12. Collateral Damage
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D04.%20E12%e2%80%9314.iso#15
-#EXTINF:0,,Stargate Atlantis 2.12. Epiphany
+#EXTINF:2510,,Stargate Atlantis 2.12. Epiphany
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D03.%20E09%e2%80%9312.iso#19
-#EXTINF:0,,Stargate SG-1 9.13. Ripple Effect
+#EXTINF:2508,,Stargate SG-1 9.13. Ripple Effect
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D04.%20E12%e2%80%9314.iso#16
-#EXTINF:0,,Stargate Atlantis 2.13. Critical Mass
+#EXTINF:2510,,Stargate Atlantis 2.13. Critical Mass
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D04.%20E13%e2%80%9316.iso#16
-#EXTINF:0,,Stargate SG-1 9.14. Stronghold
+#EXTINF:2511,,Stargate SG-1 9.14. Stronghold
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D04.%20E12%e2%80%9314.iso#17
-#EXTINF:0,,Stargate Atlantis 2.14. Grace Under Pressure
+#EXTINF:2510,,Stargate Atlantis 2.14. Grace Under Pressure
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D04.%20E13%e2%80%9316.iso#17
-#EXTINF:0,,Stargate SG-1 9.15. Ethon
+#EXTINF:2507,,Stargate SG-1 9.15. Ethon
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D05.%20E15%e2%80%9317.iso#15
-#EXTINF:0,,Stargate Atlantis 2.15. The Tower
+#EXTINF:2507,,Stargate Atlantis 2.15. The Tower
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D04.%20E13%e2%80%9316.iso#18
-#EXTINF:0,,Stargate SG-1 9.16. Off the Grid
+#EXTINF:2506,,Stargate SG-1 9.16. Off the Grid
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D05.%20E15%e2%80%9317.iso#16
-#EXTINF:0,,Stargate Atlantis 2.16. The Long Goodbye
+#EXTINF:2511,,Stargate Atlantis 2.16. The Long Goodbye
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D04.%20E13%e2%80%9316.iso#19
-#EXTINF:0,,Stargate SG-1 9.17. The Scourge
+#EXTINF:2508,,Stargate SG-1 9.17. The Scourge
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D05.%20E15%e2%80%9317.iso#17
-#EXTINF:0,,Stargate Atlantis 2.17. Coup d'Etat
+#EXTINF:2511,,Stargate Atlantis 2.17. Coup d'Etat
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D05.%20E17%e2%80%9320.iso#16
-#EXTINF:0,,Stargate SG-1 9.18. Arthur's Mantle
+#EXTINF:2512,,Stargate SG-1 9.18. Arthur's Mantle
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D06.%20E18%e2%80%9320.iso#15
-#EXTINF:0,,Stargate Atlantis 2.18. Michael
+#EXTINF:2510,,Stargate Atlantis 2.18. Michael
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D05.%20E17%e2%80%9320.iso#17
-#EXTINF:0,,Stargate SG-1 9.19. Crusade
+#EXTINF:2512,,Stargate SG-1 9.19. Crusade
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D06.%20E18%e2%80%9320.iso#16
-#EXTINF:0,,Stargate Atlantis 2.19. Inferno
+#EXTINF:2510,,Stargate Atlantis 2.19. Inferno
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D05.%20E17%e2%80%9320.iso#18
-#EXTINF:0,,Stargate SG-1 9.20. Camelot
+#EXTINF:2505,,Stargate SG-1 9.20. Camelot
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S09D06.%20E18%e2%80%9320.iso#17
-#EXTINF:0,,Stargate Atlantis 2.20. Allies
+#EXTINF:2510,,Stargate Atlantis 2.20. Allies
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S02D05.%20E17%e2%80%9320.iso#19
 
-#EXTINF:0,,Stargate SG-1 10.1. Flesh and Blood
+#EXTINF:2510,,Stargate SG-1 10.1. Flesh and Blood
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,Stargate Atlantis 3.1. No Man's Land
+#EXTINF:2502,,Stargate Atlantis 3.1. No Man's Land
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,Stargate SG-1 10.2. Morpheus
+#EXTINF:2509,,Stargate SG-1 10.2. Morpheus
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Stargate Atlantis 3.2. Misbegotten
+#EXTINF:2509,,Stargate Atlantis 3.2. Misbegotten
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Stargate SG-1 10.3. The Pegasus Project
+#EXTINF:2510,,Stargate SG-1 10.3. The Pegasus Project
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Stargate Atlantis 3.3. Irresistible
+#EXTINF:2509,,Stargate Atlantis 3.3. Irresistible
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Stargate SG-1 10.4. Insiders
+#EXTINF:2510,,Stargate SG-1 10.4. Insiders
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Stargate Atlantis 3.4. Sateda
+#EXTINF:2509,,Stargate Atlantis 3.4. Sateda
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Stargate SG-1 10.5. Uninvited
+#EXTINF:2509,,Stargate SG-1 10.5. Uninvited
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,Stargate SG-1 10.6. 200
+#EXTINF:2510,,Stargate SG-1 10.6. 200
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Stargate Atlantis 3.5. Progeny
+#EXTINF:2507,,Stargate Atlantis 3.5. Progeny
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,Stargate Atlantis 3.6. The Real World
+#EXTINF:2508,,Stargate Atlantis 3.6. The Real World
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Stargate SG-1 10.7. Counterstrike
+#EXTINF:2507,,Stargate SG-1 10.7. Counterstrike
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Stargate Atlantis 3.7. Common Ground
+#EXTINF:2509,,Stargate Atlantis 3.7. Common Ground
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Stargate SG-1 10.8. Memento mori
+#EXTINF:2509,,Stargate SG-1 10.8. Memento mori
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Stargate Atlantis 3.8. McKay and Mrs. Miller
+#EXTINF:2508,,Stargate Atlantis 3.8. McKay and Mrs. Miller
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Stargate SG-1 10.9. Company of Thieves
+#EXTINF:2510,,Stargate SG-1 10.9. Company of Thieves
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,Stargate Atlantis 3.9. Phantoms
+#EXTINF:2509,,Stargate Atlantis 3.9. Phantoms
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,Stargate SG-1 10.10. The Quest (part 1)
+#EXTINF:2514,,Stargate SG-1 10.10. The Quest (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,Stargate SG-1 10.11. The Quest (part 2)
+#EXTINF:2505,,Stargate SG-1 10.11. The Quest (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,Stargate Atlantis 3.10. The Return (part 1)
+#EXTINF:2507,,Stargate Atlantis 3.10. The Return (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,Stargate Atlantis 3.11. The Return (part 2)
+#EXTINF:2507,,Stargate Atlantis 3.11. The Return (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,Stargate SG-1 10.12. Line in the Sand
+#EXTINF:2509,,Stargate SG-1 10.12. Line in the Sand
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,Stargate Atlantis 3.12. Echoes
+#EXTINF:2510,,Stargate Atlantis 3.12. Echoes
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,Stargate SG-1 10.13. The Road Not Taken
+#EXTINF:2509,,Stargate SG-1 10.13. The Road Not Taken
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,Stargate Atlantis 3.13. Irresponsible
+#EXTINF:2509,,Stargate Atlantis 3.13. Irresponsible
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D04.%20E13%e2%80%9316.iso#1
-#EXTINF:0,,Stargate SG-1 10.14. The Shroud
+#EXTINF:2512,,Stargate SG-1 10.14. The Shroud
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,Stargate Atlantis 3.14. Tao of Rodney
+#EXTINF:2508,,Stargate Atlantis 3.14. Tao of Rodney
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D04.%20E13%e2%80%9316.iso#2
-#EXTINF:0,,Stargate SG-1 10.15. Bounty
+#EXTINF:2496,,Stargate SG-1 10.15. Bounty
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,Stargate Atlantis 3.15. The Game
+#EXTINF:2509,,Stargate Atlantis 3.15. The Game
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,Stargate SG-1 10.16. Bad Guys
+#EXTINF:2504,,Stargate SG-1 10.16. Bad Guys
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,Stargate Atlantis 3.16. The Ark
+#EXTINF:2508,,Stargate Atlantis 3.16. The Ark
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,Stargate SG-1 10.17. Talion
+#EXTINF:2510,,Stargate SG-1 10.17. Talion
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,Stargate Atlantis 3.17. Sunday
+#EXTINF:2508,,Stargate Atlantis 3.17. Sunday
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,Stargate SG-1 10.18. Family Ties
+#EXTINF:2510,,Stargate SG-1 10.18. Family Ties
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,Stargate Atlantis 3.18. Submersion
+#EXTINF:2509,,Stargate Atlantis 3.18. Submersion
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,Stargate SG-1 10.19. Dominion
+#EXTINF:2510,,Stargate SG-1 10.19. Dominion
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,Stargate Atlantis 3.19. Vengeance
+#EXTINF:2508,,Stargate Atlantis 3.19. Vengeance
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,Stargate SG-1 10.20. Unending
+#EXTINF:2510,,Stargate SG-1 10.20. Unending
 dvd:///mnt/dvd/archive/S/Stargate%20SG-1/S10D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,Stargate Atlantis 3.20. First Strike
+#EXTINF:2510,,Stargate Atlantis 3.20. First Strike
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S03D05.%20E17%e2%80%9320.iso#4
 
-#EXTINF:0,,Stargate SG-1 Stargate—The Ark of Truth
+#EXTINF:5863,,Stargate SG-1 Stargate—The Ark of Truth
 dvd:///mnt/dvd/archive/S/Stargate%e2%80%94The%20Ark%20of%20Truth.iso#2
 
-#EXTINF:0,,Stargate Atlantis 4.1. Adrift
+#EXTINF:2507,,Stargate Atlantis 4.1. Adrift
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,Stargate Atlantis 4.2. Lifeline
+#EXTINF:2504,,Stargate Atlantis 4.2. Lifeline
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Stargate Atlantis 4.3. Reunion
+#EXTINF:2509,,Stargate Atlantis 4.3. Reunion
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Stargate Atlantis 4.4. Doppelgänger
+#EXTINF:2504,,Stargate Atlantis 4.4. Doppelgänger
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,Stargate Atlantis 4.5. Travelers
+#EXTINF:2504,,Stargate Atlantis 4.5. Travelers
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Stargate Atlantis 4.6. Tabula rasa
+#EXTINF:2506,,Stargate Atlantis 4.6. Tabula rasa
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Stargate Atlantis 4.7. Missing
+#EXTINF:2507,,Stargate Atlantis 4.7. Missing
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Stargate Atlantis 4.8. The Seer
+#EXTINF:2507,,Stargate Atlantis 4.8. The Seer
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,Stargate Atlantis 4.9. Miller's Crossing
+#EXTINF:2508,,Stargate Atlantis 4.9. Miller's Crossing
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,Stargate Atlantis 4.10. This Mortal Coil
+#EXTINF:2504,,Stargate Atlantis 4.10. This Mortal Coil
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,Stargate Atlantis 4.11. Be All My Sins Remember'd
+#EXTINF:2507,,Stargate Atlantis 4.11. Be All My Sins Remember'd
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,Stargate Atlantis 4.12. Spoils of War
+#EXTINF:2507,,Stargate Atlantis 4.12. Spoils of War
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,Stargate Atlantis 4.13. Quarantine
+#EXTINF:2507,,Stargate Atlantis 4.13. Quarantine
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,Stargate Atlantis 4.14. Harmony
+#EXTINF:2506,,Stargate Atlantis 4.14. Harmony
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,Stargate Atlantis 4.15. Outcast
+#EXTINF:2505,,Stargate Atlantis 4.15. Outcast
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,Stargate Atlantis 4.16. Trio
+#EXTINF:2508,,Stargate Atlantis 4.16. Trio
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,Stargate Atlantis 4.17. Midway
+#EXTINF:2508,,Stargate Atlantis 4.17. Midway
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D05.%20E17%e2%80%9320.iso#1
-#EXTINF:0,,Stargate Atlantis 4.18. The Kindred (part 1)
+#EXTINF:2508,,Stargate Atlantis 4.18. The Kindred (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D05.%20E17%e2%80%9320.iso#2
-#EXTINF:0,,Stargate Atlantis 4.19. The Kindred (part 2)
+#EXTINF:2508,,Stargate Atlantis 4.19. The Kindred (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,Stargate Atlantis 4.20. The Last Man
+#EXTINF:2507,,Stargate Atlantis 4.20. The Last Man
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S04D05.%20E17%e2%80%9320.iso#7
 
-#EXTINF:0,,Stargate Atlantis 5.1. Search and Rescue
+#EXTINF:2510,,Stargate Atlantis 5.1. Search and Rescue
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Stargate SG-1 Stargate—Continuum
+#EXTINF:5674,,Stargate SG-1 Stargate—Continuum
 dvd:///mnt/dvd/archive/S/Stargate%e2%80%94Continuum.iso#3
-#EXTINF:0,,Stargate Atlantis 5.2. The Seed
+#EXTINF:2506,,Stargate Atlantis 5.2. The Seed
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Stargate Atlantis 5.3. Broken Ties
+#EXTINF:2505,,Stargate Atlantis 5.3. Broken Ties
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,Stargate Atlantis 5.4. The Daedalus Variations
+#EXTINF:2508,,Stargate Atlantis 5.4. The Daedalus Variations
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Stargate Atlantis 5.5. Ghost in the Machine
+#EXTINF:2511,,Stargate Atlantis 5.5. Ghost in the Machine
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Stargate Atlantis 5.6. The Shrine
+#EXTINF:2508,,Stargate Atlantis 5.6. The Shrine
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Stargate Atlantis 5.7. Whispers
+#EXTINF:2508,,Stargate Atlantis 5.7. Whispers
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,Stargate Atlantis 5.8. The Queen
+#EXTINF:2507,,Stargate Atlantis 5.8. The Queen
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,Stargate Atlantis 5.9. Tracker
+#EXTINF:2507,,Stargate Atlantis 5.9. Tracker
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,Stargate Atlantis 5.10. First Contact
+#EXTINF:2506,,Stargate Atlantis 5.10. First Contact
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,Stargate Atlantis 5.11. The Lost Tribe
+#EXTINF:2508,,Stargate Atlantis 5.11. The Lost Tribe
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,Stargate Atlantis 5.12. Outsiders
+#EXTINF:2507,,Stargate Atlantis 5.12. Outsiders
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,Stargate Atlantis 5.13. Inquisition
+#EXTINF:2505,,Stargate Atlantis 5.13. Inquisition
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,Stargate Atlantis 5.14. The Prodigal
+#EXTINF:2504,,Stargate Atlantis 5.14. The Prodigal
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,Stargate Atlantis 5.15. Remnants
+#EXTINF:2509,,Stargate Atlantis 5.15. Remnants
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,Stargate Atlantis 5.16. Brain Storm
+#EXTINF:2507,,Stargate Atlantis 5.16. Brain Storm
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,Stargate Atlantis 5.17. Infection
+#EXTINF:2508,,Stargate Atlantis 5.17. Infection
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,Stargate Atlantis 5.18. Identity
+#EXTINF:2507,,Stargate Atlantis 5.18. Identity
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,Stargate Atlantis 5.19. Vegas
+#EXTINF:2670,,Stargate Atlantis 5.19. Vegas
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,Stargate Atlantis 5.20. Enemy at the Gate
+#EXTINF:2635,,Stargate Atlantis 5.20. Enemy at the Gate
 dvd:///mnt/dvd/archive/S/Stargate%20Atlantis/S05D05.%20E17%e2%80%9320.iso#6
 
-#EXTINF:0,,Stargate Universe 1.1–3. Air
+#EXTINF:7949,,Stargate Universe 1.1–3. Air
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,Stargate Universe 1.4. Darkness
+#EXTINF:2515,,Stargate Universe 1.4. Darkness
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D02.%20E04%e2%80%9307.iso#3
-#EXTINF:0,,Stargate Universe 1.5. Light
+#EXTINF:2510,,Stargate Universe 1.5. Light
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D02.%20E04%e2%80%9307.iso#4
-#EXTINF:0,,Stargate Universe 1.6. Water
+#EXTINF:2507,,Stargate Universe 1.6. Water
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D02.%20E04%e2%80%9307.iso#5
-#EXTINF:0,,Stargate Universe 1.7. Earth
+#EXTINF:2515,,Stargate Universe 1.7. Earth
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D02.%20E04%e2%80%9307.iso#6
-#EXTINF:0,,Stargate Universe 1.8. Time
+#EXTINF:2511,,Stargate Universe 1.8. Time
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D03.%20E08%e2%80%9311.iso#3
-#EXTINF:0,,Stargate Universe 1.9. Life
+#EXTINF:2516,,Stargate Universe 1.9. Life
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D03.%20E08%e2%80%9311.iso#4
-#EXTINF:0,,Stargate Universe 1.10. Justice
+#EXTINF:2510,,Stargate Universe 1.10. Justice
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D03.%20E08%e2%80%9311.iso#5
-#EXTINF:0,,Stargate Universe 1.11. Space
+#EXTINF:2514,,Stargate Universe 1.11. Space
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D03.%20E08%e2%80%9311.iso#6
-#EXTINF:0,,Stargate Universe 1.12. Divided
+#EXTINF:2507,,Stargate Universe 1.12. Divided
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D04.%20E12%e2%80%9315.iso#10
-#EXTINF:0,,Stargate Universe 1.13. Faith
+#EXTINF:2511,,Stargate Universe 1.13. Faith
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D04.%20E12%e2%80%9315.iso#11
-#EXTINF:0,,Stargate Universe 1.14. Human
+#EXTINF:2507,,Stargate Universe 1.14. Human
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D04.%20E12%e2%80%9315.iso#12
-#EXTINF:0,,Stargate Universe 1.15. Lost
+#EXTINF:2511,,Stargate Universe 1.15. Lost
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D04.%20E12%e2%80%9315.iso#13
-#EXTINF:0,,Stargate Universe 1.16. Sabotage
+#EXTINF:2511,,Stargate Universe 1.16. Sabotage
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D05.%20E16%e2%80%9320.iso#3
-#EXTINF:0,,Stargate Universe 1.17. Pain
+#EXTINF:2511,,Stargate Universe 1.17. Pain
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D05.%20E16%e2%80%9320.iso#4
-#EXTINF:0,,Stargate Universe 1.18. Subversion
+#EXTINF:2510,,Stargate Universe 1.18. Subversion
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D05.%20E16%e2%80%9320.iso#5
-#EXTINF:0,,Stargate Universe 1.19. Incursion (part 1)
+#EXTINF:2511,,Stargate Universe 1.19. Incursion (part 1)
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D05.%20E16%e2%80%9320.iso#6
-#EXTINF:0,,Stargate Universe 1.20. Incursion (part 2)
+#EXTINF:2511,,Stargate Universe 1.20. Incursion (part 2)
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S01D05.%20E16%e2%80%9320.iso#7
 
-#EXTINF:0,,Stargate Universe 2.1. Intervention
+#EXTINF:2503,,Stargate Universe 2.1. Intervention
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Stargate Universe 2.2. Aftermath
+#EXTINF:2506,,Stargate Universe 2.2. Aftermath
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Stargate Universe 2.3. Awakening
+#EXTINF:2505,,Stargate Universe 2.3. Awakening
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,Stargate Universe 2.4. Pathogen
+#EXTINF:2509,,Stargate Universe 2.4. Pathogen
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Stargate Universe 2.5. Cloverdale
+#EXTINF:2506,,Stargate Universe 2.5. Cloverdale
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Stargate Universe 2.6. Trial and Error
+#EXTINF:2506,,Stargate Universe 2.6. Trial and Error
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Stargate Universe 2.7. The Greater Good
+#EXTINF:2505,,Stargate Universe 2.7. The Greater Good
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,Stargate Universe 2.8. Malice
+#EXTINF:2506,,Stargate Universe 2.8. Malice
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,Stargate Universe 2.9. Visitation
+#EXTINF:2505,,Stargate Universe 2.9. Visitation
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,Stargate Universe 2.10. Resurgence
+#EXTINF:2500,,Stargate Universe 2.10. Resurgence
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,Stargate Universe 2.11. Deliverance
+#EXTINF:2505,,Stargate Universe 2.11. Deliverance
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,Stargate Universe 2.12. Twin Destinies
+#EXTINF:2502,,Stargate Universe 2.12. Twin Destinies
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,Stargate Universe 2.13. Alliances
+#EXTINF:2505,,Stargate Universe 2.13. Alliances
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,Stargate Universe 2.14. Hope
+#EXTINF:2514,,Stargate Universe 2.14. Hope
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,Stargate Universe 2.15. Seizure
+#EXTINF:2505,,Stargate Universe 2.15. Seizure
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,Stargate Universe 2.16. The Hunt
+#EXTINF:2506,,Stargate Universe 2.16. The Hunt
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,Stargate Universe 2.17. Common Descent
+#EXTINF:2504,,Stargate Universe 2.17. Common Descent
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,Stargate Universe 2.18. Epilogue
+#EXTINF:2505,,Stargate Universe 2.18. Epilogue
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,Stargate Universe 2.19. Blockade
+#EXTINF:2505,,Stargate Universe 2.19. Blockade
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,Stargate Universe 2.20. Gauntlet
+#EXTINF:2503,,Stargate Universe 2.20. Gauntlet
 dvd:///mnt/dvd/archive/S/Stargate%20Universe/S02D05.%20E17%e2%80%9320.iso#6
index 08d028b..28d64e6 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Pilot
+#EXTINF:2606,,1.1. Pilot
 dvd:///mnt/dvd/archive/S/Supergirl/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,1.2. Stronger Together
+#EXTINF:2523,,1.2. Stronger Together
 dvd:///mnt/dvd/archive/S/Supergirl/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,1.3. Fight or Flight
+#EXTINF:2521,,1.3. Fight or Flight
 dvd:///mnt/dvd/archive/S/Supergirl/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,1.4. Livewire
+#EXTINF:2526,,1.4. Livewire
 dvd:///mnt/dvd/archive/S/Supergirl/S01D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,1.5. How Does She Do It?
+#EXTINF:2518,,1.5. How Does She Do It?
 dvd:///mnt/dvd/archive/S/Supergirl/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,1.6. Red Faced
+#EXTINF:2524,,1.6. Red Faced
 dvd:///mnt/dvd/archive/S/Supergirl/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,1.7. Human For a Day
+#EXTINF:2515,,1.7. Human For a Day
 dvd:///mnt/dvd/archive/S/Supergirl/S01D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,1.8. Hostile Takeover
+#EXTINF:2521,,1.8. Hostile Takeover
 dvd:///mnt/dvd/archive/S/Supergirl/S01D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,1.9. Blood Bonds
+#EXTINF:2523,,1.9. Blood Bonds
 dvd:///mnt/dvd/archive/S/Supergirl/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,1.10. Childish Things
+#EXTINF:2526,,1.10. Childish Things
 dvd:///mnt/dvd/archive/S/Supergirl/S01D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,1.11. Strange Visitor from Another Planet
+#EXTINF:2525,,1.11. Strange Visitor from Another Planet
 dvd:///mnt/dvd/archive/S/Supergirl/S01D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,1.12. Bizarro
+#EXTINF:2522,,1.12. Bizarro
 dvd:///mnt/dvd/archive/S/Supergirl/S01D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,1.13. For the Girl Who Has Everything
+#EXTINF:2525,,1.13. For the Girl Who Has Everything
 dvd:///mnt/dvd/archive/S/Supergirl/S01D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,1.14. Truth, Justice and the American Way
+#EXTINF:2522,,1.14. Truth, Justice and the American Way
 dvd:///mnt/dvd/archive/S/Supergirl/S01D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,1.15. Solitude
+#EXTINF:2524,,1.15. Solitude
 dvd:///mnt/dvd/archive/S/Supergirl/S01D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,1.16. Falling
+#EXTINF:2515,,1.16. Falling
 dvd:///mnt/dvd/archive/S/Supergirl/S01D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,1.17. Manhunter
+#EXTINF:2524,,1.17. Manhunter
 dvd:///mnt/dvd/archive/S/Supergirl/S01D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,1.18. Worlds Finest
+#EXTINF:2517,,1.18. Worlds Finest
 dvd:///mnt/dvd/archive/S/Supergirl/S01D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,1.19. Myriad
+#EXTINF:2440,,1.19. Myriad
 dvd:///mnt/dvd/archive/S/Supergirl/S01D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,1.20. Better Angels
+#EXTINF:2412,,1.20. Better Angels
 dvd:///mnt/dvd/archive/S/Supergirl/S01D05.%20E17%e2%80%9320.iso#6
 
-#EXTINF:0,,2.1. The Adventures of Supergirl
+#EXTINF:2444,,2.1. The Adventures of Supergirl
 dvd:///mnt/dvd/archive/S/Supergirl/S02D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,2.2. The Last Children of Krypton
+#EXTINF:2447,,2.2. The Last Children of Krypton
 dvd:///mnt/dvd/archive/S/Supergirl/S02D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,2.3. Welcome to Earth
+#EXTINF:2432,,2.3. Welcome to Earth
 dvd:///mnt/dvd/archive/S/Supergirl/S02D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,2.4. Survivors
+#EXTINF:2447,,2.4. Survivors
 dvd:///mnt/dvd/archive/S/Supergirl/S02D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,2.5. Crossfire
+#EXTINF:2439,,2.5. Crossfire
 dvd:///mnt/dvd/archive/S/Supergirl/S02D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,2.6. Changing
+#EXTINF:2451,,2.6. Changing
 dvd:///mnt/dvd/archive/S/Supergirl/S02D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,2.7. The Darkest Place
+#EXTINF:2447,,2.7. The Darkest Place
 dvd:///mnt/dvd/archive/S/Supergirl/S02D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,2.8. Medusa
+#EXTINF:2443,,2.8. Medusa
 dvd:///mnt/dvd/archive/S/Supergirl/S02D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,2.9. Supergirl Lives
+#EXTINF:2447,,2.9. Supergirl Lives
 dvd:///mnt/dvd/archive/S/Supergirl/S02D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,2.10. We Can Be Heroes
+#EXTINF:2446,,2.10. We Can Be Heroes
 dvd:///mnt/dvd/archive/S/Supergirl/S02D02.%20E06%e2%80%9310.iso#7
-#EXTINF:0,,2.11. The Martian Chronicles
+#EXTINF:2422,,2.11. The Martian Chronicles
 dvd:///mnt/dvd/archive/S/Supergirl/S02D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,2.12. Luthors
+#EXTINF:2447,,2.12. Luthors
 dvd:///mnt/dvd/archive/S/Supergirl/S02D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,2.13. Mr. & Mrs. Mxyzptlk
+#EXTINF:2447,,2.13. Mr. & Mrs. Mxyzptlk
 dvd:///mnt/dvd/archive/S/Supergirl/S02D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,2.14. Homecoming
+#EXTINF:2447,,2.14. Homecoming
 dvd:///mnt/dvd/archive/S/Supergirl/S02D03.%20E11%e2%80%9315.iso#6
-#EXTINF:0,,2.15. Exodus
+#EXTINF:2435,,2.15. Exodus
 dvd:///mnt/dvd/archive/S/Supergirl/S02D03.%20E11%e2%80%9315.iso#7
-#EXTINF:0,,2.16. Star-Crossed
+#EXTINF:2448,,2.16. Star-Crossed
 dvd:///mnt/dvd/archive/S/Supergirl/S02D04.%20E16%e2%80%9320.iso#3
-#EXTINF:0,,2.17. Distant Sun
+#EXTINF:2425,,2.17. Distant Sun
 dvd:///mnt/dvd/archive/S/Supergirl/S02D04.%20E16%e2%80%9320.iso#4
-#EXTINF:0,,2.18. Ace Reporter
+#EXTINF:2409,,2.18. Ace Reporter
 dvd:///mnt/dvd/archive/S/Supergirl/S02D04.%20E16%e2%80%9320.iso#5
-#EXTINF:0,,2.19. Alex
+#EXTINF:2447,,2.19. Alex
 dvd:///mnt/dvd/archive/S/Supergirl/S02D04.%20E16%e2%80%9320.iso#6
-#EXTINF:0,,2.20. City of Lost Children
+#EXTINF:2449,,2.20. City of Lost Children
 dvd:///mnt/dvd/archive/S/Supergirl/S02D04.%20E16%e2%80%9320.iso#7
-#EXTINF:0,,2.21. Resist
+#EXTINF:2447,,2.21. Resist
 dvd:///mnt/dvd/archive/S/Supergirl/S02D05.%20E21%e2%80%9322.iso#3
-#EXTINF:0,,2.22. Nevertheless, She Persisted
+#EXTINF:2443,,2.22. Nevertheless, She Persisted
 dvd:///mnt/dvd/archive/S/Supergirl/S02D05.%20E21%e2%80%9322.iso#4
 
-#EXTINF:0,,3.1. Girl of Steel
+#EXTINF:2445,,3.1. Girl of Steel
 dvd:///mnt/dvd/archive/S/Supergirl/S03D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,3.2. Triggers
+#EXTINF:2446,,3.2. Triggers
 dvd:///mnt/dvd/archive/S/Supergirl/S03D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,3.3. Far from the Tree
+#EXTINF:2448,,3.3. Far from the Tree
 dvd:///mnt/dvd/archive/S/Supergirl/S03D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,3.4. The Faithful
+#EXTINF:2437,,3.4. The Faithful
 dvd:///mnt/dvd/archive/S/Supergirl/S03D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,3.5. Damage
+#EXTINF:2447,,3.5. Damage
 dvd:///mnt/dvd/archive/S/Supergirl/S03D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,3.6. Midvale
+#EXTINF:2448,,3.6. Midvale
 dvd:///mnt/dvd/archive/S/Supergirl/S03D02.%20E06%e2%80%9309.iso#3
-#EXTINF:0,,3.7. Wake Up
+#EXTINF:2440,,3.7. Wake Up
 dvd:///mnt/dvd/archive/S/Supergirl/S03D02.%20E06%e2%80%9309.iso#4
-#EXTINF:0,,3.8. Crisis on Earth-X (part 1)
+#EXTINF:2441,,3.8. Crisis on Earth-X (part 1)
 dvd:///mnt/dvd/archive/S/Supergirl/S03D02.%20E06%e2%80%9309.iso#5
-#EXTINF:0,,3.9. Reign
+#EXTINF:2432,,3.9. Reign
 dvd:///mnt/dvd/archive/S/Supergirl/S03D02.%20E06%e2%80%9309.iso#6
-#EXTINF:0,,3.10. Legion of Super-Heroes
+#EXTINF:2445,,3.10. Legion of Super-Heroes
 dvd:///mnt/dvd/archive/S/Supergirl/S03D03.%20E10%e2%80%9314.iso#3
-#EXTINF:0,,3.11. Fort Rozz
+#EXTINF:2447,,3.11. Fort Rozz
 dvd:///mnt/dvd/archive/S/Supergirl/S03D03.%20E10%e2%80%9314.iso#4
-#EXTINF:0,,3.12. For Good
+#EXTINF:2443,,3.12. For Good
 dvd:///mnt/dvd/archive/S/Supergirl/S03D03.%20E10%e2%80%9314.iso#5
-#EXTINF:0,,3.13. Both Sides Now
+#EXTINF:2447,,3.13. Both Sides Now
 dvd:///mnt/dvd/archive/S/Supergirl/S03D03.%20E10%e2%80%9314.iso#6
-#EXTINF:0,,3.14. Schott Through the Heart
+#EXTINF:2433,,3.14. Schott Through the Heart
 dvd:///mnt/dvd/archive/S/Supergirl/S03D03.%20E10%e2%80%9314.iso#7
-#EXTINF:0,,3.15. In Search of Lost Time
+#EXTINF:2431,,3.15. In Search of Lost Time
 dvd:///mnt/dvd/archive/S/Supergirl/S03D04.%20E15%e2%80%9319.iso#3
-#EXTINF:0,,3.16. Of Two Minds
+#EXTINF:2447,,3.16. Of Two Minds
 dvd:///mnt/dvd/archive/S/Supergirl/S03D04.%20E15%e2%80%9319.iso#4
-#EXTINF:0,,3.17. Trinity
+#EXTINF:2446,,3.17. Trinity
 dvd:///mnt/dvd/archive/S/Supergirl/S03D04.%20E15%e2%80%9319.iso#5
-#EXTINF:0,,3.18. Shelter from the Storm
+#EXTINF:2446,,3.18. Shelter from the Storm
 dvd:///mnt/dvd/archive/S/Supergirl/S03D04.%20E15%e2%80%9319.iso#6
-#EXTINF:0,,3.19. The Fanatical
+#EXTINF:2441,,3.19. The Fanatical
 dvd:///mnt/dvd/archive/S/Supergirl/S03D04.%20E15%e2%80%9319.iso#7
-#EXTINF:0,,3.20. Dark Side of the Moon
+#EXTINF:2422,,3.20. Dark Side of the Moon
 dvd:///mnt/dvd/archive/S/Supergirl/S03D05.%20E20%e2%80%9323.iso#3
-#EXTINF:0,,3.21. Not Kansas
+#EXTINF:2447,,3.21. Not Kansas
 dvd:///mnt/dvd/archive/S/Supergirl/S03D05.%20E20%e2%80%9323.iso#4
-#EXTINF:0,,3.22. Make it Reign
+#EXTINF:2442,,3.22. Make it Reign
 dvd:///mnt/dvd/archive/S/Supergirl/S03D05.%20E20%e2%80%9323.iso#5
-#EXTINF:0,,3.23. Battles Lost and Won
+#EXTINF:2447,,3.23. Battles Lost and Won
 dvd:///mnt/dvd/archive/S/Supergirl/S03D05.%20E20%e2%80%9323.iso#6
 
-#EXTINF:0,,4.1. American Alien
+#EXTINF:2447,,4.1. American Alien
 dvd:///mnt/dvd/archive/S/Supergirl/S04D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,4.2. Fallout
+#EXTINF:2443,,4.2. Fallout
 dvd:///mnt/dvd/archive/S/Supergirl/S04D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,4.3. Man of Steel
+#EXTINF:2360,,4.3. Man of Steel
 dvd:///mnt/dvd/archive/S/Supergirl/S04D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,4.4. Ahimsa
+#EXTINF:2440,,4.4. Ahimsa
 dvd:///mnt/dvd/archive/S/Supergirl/S04D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,4.5. Parasite Lost
+#EXTINF:2449,,4.5. Parasite Lost
 dvd:///mnt/dvd/archive/S/Supergirl/S04D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,4.6. Call to Action
+#EXTINF:2446,,4.6. Call to Action
 dvd:///mnt/dvd/archive/S/Supergirl/S04D02.%20E06%e2%80%9309.iso#3
-#EXTINF:0,,4.7. Rather the Fallen Angel
+#EXTINF:2448,,4.7. Rather the Fallen Angel
 dvd:///mnt/dvd/archive/S/Supergirl/S04D02.%20E06%e2%80%9309.iso#4
-#EXTINF:0,,4.8. Bunker Hill
+#EXTINF:2447,,4.8. Bunker Hill
 dvd:///mnt/dvd/archive/S/Supergirl/S04D02.%20E06%e2%80%9309.iso#5
-#EXTINF:0,,4.9. Elseworlds (part 3)
+#EXTINF:2446,,4.9. Elseworlds (part 3)
 dvd:///mnt/dvd/archive/S/Supergirl/S04D02.%20E06%e2%80%9309.iso#6
-#EXTINF:0,,4.10. Suspicious Minds
+#EXTINF:2446,,4.10. Suspicious Minds
 dvd:///mnt/dvd/archive/S/Supergirl/S04D03.%20E10%e2%80%9314.iso#3
-#EXTINF:0,,4.11. Blood Memory
+#EXTINF:2439,,4.11. Blood Memory
 dvd:///mnt/dvd/archive/S/Supergirl/S04D03.%20E10%e2%80%9314.iso#4
-#EXTINF:0,,4.12. Menagerie
+#EXTINF:2449,,4.12. Menagerie
 dvd:///mnt/dvd/archive/S/Supergirl/S04D03.%20E10%e2%80%9314.iso#5
-#EXTINF:0,,4.13. What's So Funny About Truth, Justice, and the American Way?
+#EXTINF:2438,,4.13. What's So Funny About Truth, Justice, and the American Way?
 dvd:///mnt/dvd/archive/S/Supergirl/S04D03.%20E10%e2%80%9314.iso#6
-#EXTINF:0,,4.14. Stand and Deliver
+#EXTINF:2446,,4.14. Stand and Deliver
 dvd:///mnt/dvd/archive/S/Supergirl/S04D03.%20E10%e2%80%9314.iso#7
-#EXTINF:0,,4.15. O Brother, Where Art Thou?
+#EXTINF:2446,,4.15. O Brother, Where Art Thou?
 dvd:///mnt/dvd/archive/S/Supergirl/S04D04.%20E15%e2%80%9319.iso#3
-#EXTINF:0,,4.16. The House of L
+#EXTINF:2445,,4.16. The House of L
 dvd:///mnt/dvd/archive/S/Supergirl/S04D04.%20E15%e2%80%9319.iso#4
-#EXTINF:0,,4.17. All About Eve
+#EXTINF:2446,,4.17. All About Eve
 dvd:///mnt/dvd/archive/S/Supergirl/S04D04.%20E15%e2%80%9319.iso#5
-#EXTINF:0,,4.18. Crime and Punishment
+#EXTINF:2448,,4.18. Crime and Punishment
 dvd:///mnt/dvd/archive/S/Supergirl/S04D04.%20E15%e2%80%9319.iso#6
-#EXTINF:0,,4.19. American Dreamer
+#EXTINF:2444,,4.19. American Dreamer
 dvd:///mnt/dvd/archive/S/Supergirl/S04D04.%20E15%e2%80%9319.iso#7
-#EXTINF:0,,4.20. Will the Real Miss Tessmacher Please Stand Up?
+#EXTINF:2444,,4.20. Will the Real Miss Tessmacher Please Stand Up?
 dvd:///mnt/dvd/archive/S/Supergirl/S04D05.%20E20%e2%80%9322.iso#3
-#EXTINF:0,,4.21. Red Dawn
+#EXTINF:2447,,4.21. Red Dawn
 dvd:///mnt/dvd/archive/S/Supergirl/S04D05.%20E20%e2%80%9322.iso#4
-#EXTINF:0,,4.22. The Quest for Peace
+#EXTINF:2442,,4.22. The Quest for Peace
 dvd:///mnt/dvd/archive/S/Supergirl/S04D05.%20E20%e2%80%9322.iso#5
 
-#EXTINF:0,,5.1. Event Horizon
+#EXTINF:2445,,5.1. Event Horizon
 dvd:///mnt/dvd/archive/S/Supergirl/S05D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,5.2. Stranger Beside Me
+#EXTINF:2444,,5.2. Stranger Beside Me
 dvd:///mnt/dvd/archive/S/Supergirl/S05D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,5.3. Blurred Lines
+#EXTINF:2447,,5.3. Blurred Lines
 dvd:///mnt/dvd/archive/S/Supergirl/S05D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,5.4. In Plain Sight
+#EXTINF:2447,,5.4. In Plain Sight
 dvd:///mnt/dvd/archive/S/Supergirl/S05D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,5.5. Dangerous Liaisons
+#EXTINF:2446,,5.5. Dangerous Liaisons
 dvd:///mnt/dvd/archive/S/Supergirl/S05D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,5.6. Confidence Women
+#EXTINF:2447,,5.6. Confidence Women
 dvd:///mnt/dvd/archive/S/Supergirl/S05D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,5.7. Tremors
+#EXTINF:2444,,5.7. Tremors
 dvd:///mnt/dvd/archive/S/Supergirl/S05D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,5.8. The Wrath of Rama Khan
+#EXTINF:2425,,5.8. The Wrath of Rama Khan
 dvd:///mnt/dvd/archive/S/Supergirl/S05D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,5.9. Crisis on Infinite Earths (part 1)
+#EXTINF:2420,,5.9. Crisis on Infinite Earths (part 1)
 dvd:///mnt/dvd/archive/S/Supergirl/S05D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,5.10. The Bottle Episode
+#EXTINF:2431,,5.10. The Bottle Episode
 dvd:///mnt/dvd/archive/S/Supergirl/S05D02.%20E06%e2%80%9310.iso#7
-#EXTINF:0,,5.11. Back from the Future (part 1)
+#EXTINF:2445,,5.11. Back from the Future (part 1)
 dvd:///mnt/dvd/archive/S/Supergirl/S05D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,5.12. Back from the Future (part 2)
+#EXTINF:2443,,5.12. Back from the Future (part 2)
 dvd:///mnt/dvd/archive/S/Supergirl/S05D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,5.13. It's a Super Life
+#EXTINF:2447,,5.13. It's a Super Life
 dvd:///mnt/dvd/archive/S/Supergirl/S05D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,5.14. The Bodyguard
+#EXTINF:2442,,5.14. The Bodyguard
 dvd:///mnt/dvd/archive/S/Supergirl/S05D03.%20E11%e2%80%9315.iso#6
-#EXTINF:0,,5.15. Reality Bytes
+#EXTINF:2439,,5.15. Reality Bytes
 dvd:///mnt/dvd/archive/S/Supergirl/S05D03.%20E11%e2%80%9315.iso#7
-#EXTINF:0,,5.16. Alex in Wonderland
+#EXTINF:2446,,5.16. Alex in Wonderland
 dvd:///mnt/dvd/archive/S/Supergirl/S05D04.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,5.17. Deus Lex machina
+#EXTINF:2441,,5.17. Deus Lex machina
 dvd:///mnt/dvd/archive/S/Supergirl/S05D04.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,5.18. The Missing Link
+#EXTINF:2445,,5.18. The Missing Link
 dvd:///mnt/dvd/archive/S/Supergirl/S05D04.%20E16%e2%80%9319.iso#5
-#EXTINF:0,,5.19. Immortal Kombat
+#EXTINF:2443,,5.19. Immortal Kombat
 dvd:///mnt/dvd/archive/S/Supergirl/S05D04.%20E16%e2%80%9319.iso#6
 
-#EXTINF:0,,6.1. Rebirth
+#EXTINF:2440,,6.1. Rebirth
 dvd:///mnt/dvd/archive/S/Supergirl/S06D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,6.2. A Few Good Women
+#EXTINF:2446,,6.2. A Few Good Women
 dvd:///mnt/dvd/archive/S/Supergirl/S06D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,6.3. Phantom Menaces
+#EXTINF:2443,,6.3. Phantom Menaces
 dvd:///mnt/dvd/archive/S/Supergirl/S06D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,6.4. Lost Souls
+#EXTINF:2218,,6.4. Lost Souls
 dvd:///mnt/dvd/archive/S/Supergirl/S06D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,6.5. Prom Night!
+#EXTINF:2418,,6.5. Prom Night!
 dvd:///mnt/dvd/archive/S/Supergirl/S06D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,6.6. Prom Again!
+#EXTINF:2363,,6.6. Prom Again!
 dvd:///mnt/dvd/archive/S/Supergirl/S06D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,6.7. Fear Knot
+#EXTINF:2434,,6.7. Fear Knot
 dvd:///mnt/dvd/archive/S/Supergirl/S06D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,6.8. Welcome Back, Kara!
+#EXTINF:2448,,6.8. Welcome Back, Kara!
 dvd:///mnt/dvd/archive/S/Supergirl/S06D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,6.9. Dream Weaver
+#EXTINF:2442,,6.9. Dream Weaver
 dvd:///mnt/dvd/archive/S/Supergirl/S06D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,6.10. Still I Rise
+#EXTINF:2443,,6.10. Still I Rise
 dvd:///mnt/dvd/archive/S/Supergirl/S06D02.%20E06%e2%80%9310.iso#7
-#EXTINF:0,,6.11. Mxy in the Middle
+#EXTINF:2426,,6.11. Mxy in the Middle
 dvd:///mnt/dvd/archive/S/Supergirl/S06D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,6.12. Blind Spots
+#EXTINF:2444,,6.12. Blind Spots
 dvd:///mnt/dvd/archive/S/Supergirl/S06D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,6.13. The Gauntlet
+#EXTINF:2447,,6.13. The Gauntlet
 dvd:///mnt/dvd/archive/S/Supergirl/S06D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,6.14. Magical Thinking
+#EXTINF:2445,,6.14. Magical Thinking
 dvd:///mnt/dvd/archive/S/Supergirl/S06D03.%20E11%e2%80%9315.iso#6
-#EXTINF:0,,6.15. Hope for Tomorrow
+#EXTINF:2442,,6.15. Hope for Tomorrow
 dvd:///mnt/dvd/archive/S/Supergirl/S06D03.%20E11%e2%80%9315.iso#7
-#EXTINF:0,,6.16. Nightmare in National City
+#EXTINF:2439,,6.16. Nightmare in National City
 dvd:///mnt/dvd/archive/S/Supergirl/S06D04.%20E16%e2%80%9320.iso#3
-#EXTINF:0,,6.17. I Believe in a thing Called Love
+#EXTINF:2446,,6.17. I Believe in a thing Called Love
 dvd:///mnt/dvd/archive/S/Supergirl/S06D04.%20E16%e2%80%9320.iso#4
-#EXTINF:0,,6.18. Truth or Consequences
+#EXTINF:2446,,6.18. Truth or Consequences
 dvd:///mnt/dvd/archive/S/Supergirl/S06D04.%20E16%e2%80%9320.iso#5
-#EXTINF:0,,6.19. The Last Gauntlet
+#EXTINF:2444,,6.19. The Last Gauntlet
 dvd:///mnt/dvd/archive/S/Supergirl/S06D04.%20E16%e2%80%9320.iso#6
-#EXTINF:0,,6.20. Kara
+#EXTINF:2724,,6.20. Kara
 dvd:///mnt/dvd/archive/S/Supergirl/S06D04.%20E16%e2%80%9320.iso#7
index 0537ec7..69872c6 100644 (file)
@@ -1,65 +1,65 @@
 #EXTM3U
 
-#EXTINF:0,,1.1. Pilot
+#EXTINF:2683,,1.1. Pilot
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S01D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,1.2. Gnothi seauton
+#EXTINF:2471,,1.2. Gnothi seauton
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S01D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,1.3. The Turk
+#EXTINF:2460,,1.3. The Turk
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S01D01.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,1.4. Heavy Metal
+#EXTINF:2475,,1.4. Heavy Metal
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S01D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,1.5. Queen's Gambit
+#EXTINF:2312,,1.5. Queen's Gambit
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S01D02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,1.6. Dungeons and Dragons
+#EXTINF:2470,,1.6. Dungeons and Dragons
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S01D02.%20E04%e2%80%9306.iso#5
-#EXTINF:0,,1.7. The Demon Hand
+#EXTINF:2379,,1.7. The Demon Hand
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S01D03.%20E07%e2%80%9309.iso#3
-#EXTINF:0,,1.8. Vick's Chip
+#EXTINF:2448,,1.8. Vick's Chip
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S01D03.%20E07%e2%80%9309.iso#4
-#EXTINF:0,,1.9. What He Beheld
+#EXTINF:2417,,1.9. What He Beheld
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S01D03.%20E07%e2%80%9309.iso#5
 
-#EXTINF:0,,2.1. Samson and Delilah
+#EXTINF:2569,,2.1. Samson and Delilah
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,2.2. Automatic for the People
+#EXTINF:2570,,2.2. Automatic for the People
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.3. The Mousetrap
+#EXTINF:2547,,2.3. The Mousetrap
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,2.4. Allison from Palmdale
+#EXTINF:2571,,2.4. Allison from Palmdale
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,2.5. Goodbye to All That
+#EXTINF:3028,,2.5. Goodbye to All That
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,2.6. The Tower
+#EXTINF:2534,,2.6. The Tower
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.7. Brothers of Nablus
+#EXTINF:2533,,2.7. Brothers of Nablus
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,2.8. Mr. Ferguson is Ill Today
+#EXTINF:2505,,2.8. Mr. Ferguson is Ill Today
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,2.9. Complications
+#EXTINF:2532,,2.9. Complications
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,2.10. Strange Things Happen at the One–Two Point
+#EXTINF:2523,,2.10. Strange Things Happen at the One–Two Point
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,2.11. Self Made Man
+#EXTINF:2514,,2.11. Self Made Man
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,2.12. Alpine Fields
+#EXTINF:2513,,2.12. Alpine Fields
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,2.13. Earthlings Welcome Here
+#EXTINF:2488,,2.13. Earthlings Welcome Here
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,2.14. The Good Wound
+#EXTINF:2531,,2.14. The Good Wound
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,2.15. Desert Cantos
+#EXTINF:2534,,2.15. Desert Cantos
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,2.16. Some Must Watch
+#EXTINF:2531,,2.16. Some Must Watch
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,2.17. Ourselves Alone
+#EXTINF:2525,,2.17. Ourselves Alone
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,2.18. Today is the Day (part 1)
+#EXTINF:2534,,2.18. Today is the Day (part 1)
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,2.19. Today is the Day (part 2)
+#EXTINF:2532,,2.19. Today is the Day (part 2)
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,2.20. To the Lighthouse
+#EXTINF:2530,,2.20. To the Lighthouse
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,2.21. Adam Raised a Cain
+#EXTINF:2528,,2.21. Adam Raised a Cain
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D06.%20E21%e2%80%9322.iso#3
-#EXTINF:0,,2.22. Born to Run
+#EXTINF:2533,,2.22. Born to Run
 dvd:///mnt/dvd/archive/T/Terminator%e2%80%94The%20Sarah%20Connor%20Chronicles/S02D06.%20E21%e2%80%9322.iso#4
index 71f0cb2..3c7b60a 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Pilot
+#EXTINF:3985,,1.1. Pilot
 dvd:///mnt/dvd/archive/A/The%20Americans/S01D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,1.2. The Clock
+#EXTINF:2749,,1.2. The Clock
 dvd:///mnt/dvd/archive/A/The%20Americans/S01D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,1.3. Gregory
+#EXTINF:2628,,1.3. Gregory
 dvd:///mnt/dvd/archive/A/The%20Americans/S01D01.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,1.4. In Control
+#EXTINF:2430,,1.4. In Control
 dvd:///mnt/dvd/archive/A/The%20Americans/S01D02.%20E04%e2%80%9307.iso#3
-#EXTINF:0,,1.5. COMINT
+#EXTINF:2282,,1.5. COMINT
 dvd:///mnt/dvd/archive/A/The%20Americans/S01D02.%20E04%e2%80%9307.iso#4
-#EXTINF:0,,1.6. Trust Me
+#EXTINF:2839,,1.6. Trust Me
 dvd:///mnt/dvd/archive/A/The%20Americans/S01D02.%20E04%e2%80%9307.iso#5
-#EXTINF:0,,1.7. Duty and Honor
+#EXTINF:2339,,1.7. Duty and Honor
 dvd:///mnt/dvd/archive/A/The%20Americans/S01D02.%20E04%e2%80%9307.iso#6
-#EXTINF:0,,1.8. Mutually Assured Destruction
+#EXTINF:2712,,1.8. Mutually Assured Destruction
 dvd:///mnt/dvd/archive/A/The%20Americans/S01D03.%20E08%e2%80%9311.iso#3
-#EXTINF:0,,1.9. Safe House
+#EXTINF:2799,,1.9. Safe House
 dvd:///mnt/dvd/archive/A/The%20Americans/S01D03.%20E08%e2%80%9311.iso#4
-#EXTINF:0,,1.10. Only You
+#EXTINF:2614,,1.10. Only You
 dvd:///mnt/dvd/archive/A/The%20Americans/S01D03.%20E08%e2%80%9311.iso#5
-#EXTINF:0,,1.11. Covert War
+#EXTINF:2407,,1.11. Covert War
 dvd:///mnt/dvd/archive/A/The%20Americans/S01D03.%20E08%e2%80%9311.iso#6
-#EXTINF:0,,1.12. The Oath
+#EXTINF:2434,,1.12. The Oath
 dvd:///mnt/dvd/archive/A/The%20Americans/S01D04.%20E12%e2%80%9313.iso#3
-#EXTINF:0,,1.13. The Colonel
+#EXTINF:2707,,1.13. The Colonel
 dvd:///mnt/dvd/archive/A/The%20Americans/S01D04.%20E12%e2%80%9313.iso#4
 
-#EXTINF:0,,2.1. Comrades
+#EXTINF:2697,,2.1. Comrades
 dvd:///mnt/dvd/archive/A/The%20Americans/S02D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,2.2. Cardinal
+#EXTINF:2605,,2.2. Cardinal
 dvd:///mnt/dvd/archive/A/The%20Americans/S02D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,2.3. The Walk In
+#EXTINF:2548,,2.3. The Walk In
 dvd:///mnt/dvd/archive/A/The%20Americans/S02D01.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,2.4. A Little Night Music
+#EXTINF:2688,,2.4. A Little Night Music
 dvd:///mnt/dvd/archive/A/The%20Americans/S02D02.%20E04%e2%80%9307.iso#3
-#EXTINF:0,,2.5. The Deal
+#EXTINF:3039,,2.5. The Deal
 dvd:///mnt/dvd/archive/A/The%20Americans/S02D02.%20E04%e2%80%9307.iso#4
-#EXTINF:0,,2.6. Behind the Red Door
+#EXTINF:2795,,2.6. Behind the Red Door
 dvd:///mnt/dvd/archive/A/The%20Americans/S02D02.%20E04%e2%80%9307.iso#5
-#EXTINF:0,,2.7. Arpanet
+#EXTINF:2404,,2.7. Arpanet
 dvd:///mnt/dvd/archive/A/The%20Americans/S02D02.%20E04%e2%80%9307.iso#6
-#EXTINF:0,,2.8. New Car
+#EXTINF:2785,,2.8. New Car
 dvd:///mnt/dvd/archive/A/The%20Americans/S02D03.%20E08%e2%80%9311.iso#3
-#EXTINF:0,,2.9. Martial Eagle
+#EXTINF:2783,,2.9. Martial Eagle
 dvd:///mnt/dvd/archive/A/The%20Americans/S02D03.%20E08%e2%80%9311.iso#4
-#EXTINF:0,,2.10. Yousaf
+#EXTINF:2789,,2.10. Yousaf
 dvd:///mnt/dvd/archive/A/The%20Americans/S02D03.%20E08%e2%80%9311.iso#5
-#EXTINF:0,,2.11. Stealth
+#EXTINF:2625,,2.11. Stealth
 dvd:///mnt/dvd/archive/A/The%20Americans/S02D03.%20E08%e2%80%9311.iso#6
-#EXTINF:0,,2.12. Operation Chronicle
+#EXTINF:2502,,2.12. Operation Chronicle
 dvd:///mnt/dvd/archive/A/The%20Americans/S02D04.%20E12%e2%80%9313.iso#3
-#EXTINF:0,,2.13. Echo
+#EXTINF:2710,,2.13. Echo
 dvd:///mnt/dvd/archive/A/The%20Americans/S02D04.%20E12%e2%80%9313.iso#4
 
-#EXTINF:0,,3.1. EST Men
+#EXTINF:2797,,3.1. EST Men
 dvd:///mnt/dvd/archive/A/The%20Americans/S03D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,3.2. Baggage
+#EXTINF:2766,,3.2. Baggage
 dvd:///mnt/dvd/archive/A/The%20Americans/S03D01.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,3.3. Open House
+#EXTINF:2579,,3.3. Open House
 dvd:///mnt/dvd/archive/A/The%20Americans/S03D01.%20E01%e2%80%9303.iso#6
-#EXTINF:0,,3.4. Dimebag
+#EXTINF:2711,,3.4. Dimebag
 dvd:///mnt/dvd/archive/A/The%20Americans/S03D02.%20E04%e2%80%9307.iso#4
-#EXTINF:0,,3.5. Salang Pass
+#EXTINF:2634,,3.5. Salang Pass
 dvd:///mnt/dvd/archive/A/The%20Americans/S03D02.%20E04%e2%80%9307.iso#5
-#EXTINF:0,,3.6. Born Again
+#EXTINF:2819,,3.6. Born Again
 dvd:///mnt/dvd/archive/A/The%20Americans/S03D02.%20E04%e2%80%9307.iso#6
-#EXTINF:0,,3.7. Walter Taffet
+#EXTINF:2739,,3.7. Walter Taffet
 dvd:///mnt/dvd/archive/A/The%20Americans/S03D02.%20E04%e2%80%9307.iso#7
-#EXTINF:0,,3.8. Divestment
+#EXTINF:2586,,3.8. Divestment
 dvd:///mnt/dvd/archive/A/The%20Americans/S03D03.%20E08%e2%80%9311.iso#4
-#EXTINF:0,,3.9. Do Mail Robots Dream of Electric Sheep?
+#EXTINF:2620,,3.9. Do Mail Robots Dream of Electric Sheep?
 dvd:///mnt/dvd/archive/A/The%20Americans/S03D03.%20E08%e2%80%9311.iso#5
-#EXTINF:0,,3.10. Stingers
+#EXTINF:2694,,3.10. Stingers
 dvd:///mnt/dvd/archive/A/The%20Americans/S03D03.%20E08%e2%80%9311.iso#6
-#EXTINF:0,,3.11. One Day in the Life of Anton Baklanov
+#EXTINF:2576,,3.11. One Day in the Life of Anton Baklanov
 dvd:///mnt/dvd/archive/A/The%20Americans/S03D03.%20E08%e2%80%9311.iso#7
-#EXTINF:0,,3.12. I Am Abassin Zadran
+#EXTINF:2586,,3.12. I Am Abassin Zadran
 dvd:///mnt/dvd/archive/A/The%20Americans/S03D04.%20E12%e2%80%9313.iso#4
-#EXTINF:0,,3.13. March 8, 1983
+#EXTINF:2895,,3.13. March 8, 1983
 dvd:///mnt/dvd/archive/A/The%20Americans/S03D04.%20E12%e2%80%9313.iso#5
 
-#EXTINF:0,,4.1. Glanders
+#EXTINF:2954,,4.1. Glanders
 dvd:///mnt/dvd/archive/A/The%20Americans/S04D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,4.2. Pastor Tim
+#EXTINF:2804,,4.2. Pastor Tim
 dvd:///mnt/dvd/archive/A/The%20Americans/S04D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,4.3. Experimental Prototype City of Tomorrow
+#EXTINF:2576,,4.3. Experimental Prototype City of Tomorrow
 dvd:///mnt/dvd/archive/A/The%20Americans/S04D01.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,4.4. Chloramphenicol
+#EXTINF:2567,,4.4. Chloramphenicol
 dvd:///mnt/dvd/archive/A/The%20Americans/S04D02.%20E04%e2%80%9307.iso#2
-#EXTINF:0,,4.5. Clark's Place
+#EXTINF:2883,,4.5. Clark's Place
 dvd:///mnt/dvd/archive/A/The%20Americans/S04D02.%20E04%e2%80%9307.iso#4
-#EXTINF:0,,4.6. The Rat
+#EXTINF:2645,,4.6. The Rat
 dvd:///mnt/dvd/archive/A/The%20Americans/S04D02.%20E04%e2%80%9307.iso#5
-#EXTINF:0,,4.7. Travel Agents
+#EXTINF:2470,,4.7. Travel Agents
 dvd:///mnt/dvd/archive/A/The%20Americans/S04D02.%20E04%e2%80%9307.iso#6
-#EXTINF:0,,4.8. The Magic of David Copperfield V: The Statue of Liberty Disappears
+#EXTINF:2999,,4.8. The Magic of David Copperfield V: The Statue of Liberty Disappears
 dvd:///mnt/dvd/archive/A/The%20Americans/S04D03.%20E08%e2%80%9310.iso#2
-#EXTINF:0,,4.9. The Day After
+#EXTINF:2698,,4.9. The Day After
 dvd:///mnt/dvd/archive/A/The%20Americans/S04D03.%20E08%e2%80%9310.iso#4
-#EXTINF:0,,4.10. Munchkins
+#EXTINF:2839,,4.10. Munchkins
 dvd:///mnt/dvd/archive/A/The%20Americans/S04D03.%20E08%e2%80%9310.iso#5
-#EXTINF:0,,4.11. Dinner for Seven
+#EXTINF:2519,,4.11. Dinner for Seven
 dvd:///mnt/dvd/archive/A/The%20Americans/S04D04.%20E11%e2%80%9313.iso#2
-#EXTINF:0,,4.12. A Roy Rogers in Franconia
+#EXTINF:2658,,4.12. A Roy Rogers in Franconia
 dvd:///mnt/dvd/archive/A/The%20Americans/S04D04.%20E11%e2%80%9313.iso#4
-#EXTINF:0,,4.13. Persona non grata
+#EXTINF:3119,,4.13. Persona non grata
 dvd:///mnt/dvd/archive/A/The%20Americans/S04D04.%20E11%e2%80%9313.iso#5
 
-#EXTINF:0,,5.1. Amber Waves
+#EXTINF:2931,,5.1. Amber Waves
 dvd:///mnt/dvd/archive/A/The%20Americans/S05D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,5.2. Pests
+#EXTINF:2842,,5.2. Pests
 dvd:///mnt/dvd/archive/A/The%20Americans/S05D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,5.3. The Midges
+#EXTINF:2647,,5.3. The Midges
 dvd:///mnt/dvd/archive/A/The%20Americans/S05D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,5.4. What's the Matter with Kansas?
+#EXTINF:2670,,5.4. What's the Matter with Kansas?
 dvd:///mnt/dvd/archive/A/The%20Americans/S05D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,5.5. Lotus 1-2-3
+#EXTINF:2844,,5.5. Lotus 1-2-3
 dvd:///mnt/dvd/archive/A/The%20Americans/S05D02.%20E05%e2%80%9307.iso#4
-#EXTINF:0,,5.6. Crossbreed
+#EXTINF:2636,,5.6. Crossbreed
 dvd:///mnt/dvd/archive/A/The%20Americans/S05D02.%20E05%e2%80%9307.iso#5
-#EXTINF:0,,5.7. The Committee on Human Rights
+#EXTINF:2660,,5.7. The Committee on Human Rights
 dvd:///mnt/dvd/archive/A/The%20Americans/S05D02.%20E05%e2%80%9307.iso#6
-#EXTINF:0,,5.8. Immersion
+#EXTINF:2904,,5.8. Immersion
 dvd:///mnt/dvd/archive/A/The%20Americans/S05D03.%20E08%e2%80%9310.iso#4
-#EXTINF:0,,5.9. IHOP
+#EXTINF:2957,,5.9. IHOP
 dvd:///mnt/dvd/archive/A/The%20Americans/S05D03.%20E08%e2%80%9310.iso#5
-#EXTINF:0,,5.10. Darkroom
+#EXTINF:2877,,5.10. Darkroom
 dvd:///mnt/dvd/archive/A/The%20Americans/S05D03.%20E08%e2%80%9310.iso#6
-#EXTINF:0,,5.11. Dyatkovo
+#EXTINF:2560,,5.11. Dyatkovo
 dvd:///mnt/dvd/archive/A/The%20Americans/S05D04.%20E11%e2%80%9313.iso#4
-#EXTINF:0,,5.12. The World Council of Churches
+#EXTINF:2978,,5.12. The World Council of Churches
 dvd:///mnt/dvd/archive/A/The%20Americans/S05D04.%20E11%e2%80%9313.iso#5
-#EXTINF:0,,5.13. The Soviet Division
+#EXTINF:3351,,5.13. The Soviet Division
 dvd:///mnt/dvd/archive/A/The%20Americans/S05D04.%20E11%e2%80%9313.iso#6
 
-#EXTINF:0,,6.1. Dead Hand
+#EXTINF:3244,,6.1. Dead Hand
 dvd:///mnt/dvd/archive/A/The%20Americans/S06D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,6.2. Tchaikovsky
+#EXTINF:2755,,6.2. Tchaikovsky
 dvd:///mnt/dvd/archive/A/The%20Americans/S06D01.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,6.3. Urban Transport Planning
+#EXTINF:2881,,6.3. Urban Transport Planning
 dvd:///mnt/dvd/archive/A/The%20Americans/S06D01.%20E01%e2%80%9303.iso#6
-#EXTINF:0,,6.4. Mr. and Mrs. Teacup
+#EXTINF:2928,,6.4. Mr. and Mrs. Teacup
 dvd:///mnt/dvd/archive/A/The%20Americans/S06D02.%20E04%e2%80%9307.iso#4
-#EXTINF:0,,6.5. The Great Patriotic War
+#EXTINF:3481,,6.5. The Great Patriotic War
 dvd:///mnt/dvd/archive/A/The%20Americans/S06D02.%20E04%e2%80%9307.iso#5
-#EXTINF:0,,6.6. Rififi
+#EXTINF:2730,,6.6. Rififi
 dvd:///mnt/dvd/archive/A/The%20Americans/S06D02.%20E04%e2%80%9307.iso#6
-#EXTINF:0,,6.7. Harvest
+#EXTINF:3049,,6.7. Harvest
 dvd:///mnt/dvd/archive/A/The%20Americans/S06D02.%20E04%e2%80%9307.iso#7
-#EXTINF:0,,6.8. The Summit
+#EXTINF:3372,,6.8. The Summit
 dvd:///mnt/dvd/archive/A/The%20Americans/S06D03.%20E08%e2%80%9310.iso#4
-#EXTINF:0,,6.9. Jennings, Elizabeth
+#EXTINF:2989,,6.9. Jennings, Elizabeth
 dvd:///mnt/dvd/archive/A/The%20Americans/S06D03.%20E08%e2%80%9310.iso#5
-#EXTINF:0,,6.10. START
+#EXTINF:4144,,6.10. START
 dvd:///mnt/dvd/archive/A/The%20Americans/S06D03.%20E08%e2%80%9310.iso#6
index 7ef0031..ba77c05 100644 (file)
@@ -1,64 +1,64 @@
 #EXTM3U
 
-#EXTINF:0,,Episode 1.1
+#EXTINF:3452,,Episode 1.1
 dvd:///mnt/dvd/archive/B/The%20Bridge/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Episode 1.2
+#EXTINF:3490,,Episode 1.2
 dvd:///mnt/dvd/archive/B/The%20Bridge/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Episode 1.3
+#EXTINF:3465,,Episode 1.3
 dvd:///mnt/dvd/archive/B/The%20Bridge/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,Episode 1.4
+#EXTINF:3452,,Episode 1.4
 dvd:///mnt/dvd/archive/B/The%20Bridge/S01D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Episode 1.5
+#EXTINF:3451,,Episode 1.5
 dvd:///mnt/dvd/archive/B/The%20Bridge/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Episode 1.6
+#EXTINF:3453,,Episode 1.6
 dvd:///mnt/dvd/archive/B/The%20Bridge/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Episode 1.7
+#EXTINF:3454,,Episode 1.7
 dvd:///mnt/dvd/archive/B/The%20Bridge/S01D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,Episode 1.8
+#EXTINF:3463,,Episode 1.8
 dvd:///mnt/dvd/archive/B/The%20Bridge/S01D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,Episode 1.9
+#EXTINF:3458,,Episode 1.9
 dvd:///mnt/dvd/archive/B/The%20Bridge/S01D03.%20E09%e2%80%9310.iso#3
-#EXTINF:0,,Episode 1.10
+#EXTINF:3460,,Episode 1.10
 dvd:///mnt/dvd/archive/B/The%20Bridge/S01D03.%20E09%e2%80%9310.iso#4
 
-#EXTINF:0,,Episode 2.1
+#EXTINF:3450,,Episode 2.1
 dvd:///mnt/dvd/archive/B/The%20Bridge/S02D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,Episode 2.2
+#EXTINF:3452,,Episode 2.2
 dvd:///mnt/dvd/archive/B/The%20Bridge/S02D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Episode 2.3
+#EXTINF:3457,,Episode 2.3
 dvd:///mnt/dvd/archive/B/The%20Bridge/S02D01.%20E01%e2%80%9304.iso#7
-#EXTINF:0,,Episode 2.4
+#EXTINF:3496,,Episode 2.4
 dvd:///mnt/dvd/archive/B/The%20Bridge/S02D01.%20E01%e2%80%9304.iso#8
-#EXTINF:0,,Episode 2.5
+#EXTINF:3467,,Episode 2.5
 dvd:///mnt/dvd/archive/B/The%20Bridge/S02D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,Episode 2.6
+#EXTINF:3476,,Episode 2.6
 dvd:///mnt/dvd/archive/B/The%20Bridge/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Episode 2.7
+#EXTINF:3469,,Episode 2.7
 dvd:///mnt/dvd/archive/B/The%20Bridge/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Episode 2.8
+#EXTINF:3451,,Episode 2.8
 dvd:///mnt/dvd/archive/B/The%20Bridge/S02D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,Episode 2.9
+#EXTINF:3458,,Episode 2.9
 dvd:///mnt/dvd/archive/B/The%20Bridge/S02D03.%20E09%e2%80%9310.iso#2
-#EXTINF:0,,Episode 2.10
+#EXTINF:3473,,Episode 2.10
 dvd:///mnt/dvd/archive/B/The%20Bridge/S02D03.%20E09%e2%80%9310.iso#3
 
-#EXTINF:0,,Episode 3.1
+#EXTINF:3497,,Episode 3.1
 dvd:///mnt/dvd/archive/B/The%20Bridge/S03D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,Episode 3.2
+#EXTINF:3501,,Episode 3.2
 dvd:///mnt/dvd/archive/B/The%20Bridge/S03D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,Episode 3.3
+#EXTINF:3496,,Episode 3.3
 dvd:///mnt/dvd/archive/B/The%20Bridge/S03D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,Episode 3.4
+#EXTINF:3511,,Episode 3.4
 dvd:///mnt/dvd/archive/B/The%20Bridge/S03D02.%20E04%e2%80%9306.iso#2
-#EXTINF:0,,Episode 3.5
+#EXTINF:3511,,Episode 3.5
 dvd:///mnt/dvd/archive/B/The%20Bridge/S03D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,Episode 3.6
+#EXTINF:3500,,Episode 3.6
 dvd:///mnt/dvd/archive/B/The%20Bridge/S03D02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,Episode 3.7
+#EXTINF:3498,,Episode 3.7
 dvd:///mnt/dvd/archive/B/The%20Bridge/S03D03.%20E07%e2%80%9309.iso#2
-#EXTINF:0,,Episode 3.8
+#EXTINF:3504,,Episode 3.8
 dvd:///mnt/dvd/archive/B/The%20Bridge/S03D03.%20E07%e2%80%9309.iso#3
-#EXTINF:0,,Episode 3.9
+#EXTINF:3498,,Episode 3.9
 dvd:///mnt/dvd/archive/B/The%20Bridge/S03D03.%20E07%e2%80%9309.iso#4
-#EXTINF:0,,Episode 3.10
+#EXTINF:3508,,Episode 3.10
 dvd:///mnt/dvd/archive/B/The%20Bridge/S03D04.%20E10.iso#1
index 2e4e140..49e90d0 100644 (file)
@@ -1,14 +1,14 @@
 #EXTM3U
 
-#EXTINF:0,,Episode 1
+#EXTINF:1734,,Episode 1
 dvd:///mnt/dvd/archive/D/The%20Day%20Today/Episodes.iso#1
-#EXTINF:0,,Episode 2
+#EXTINF:1731,,Episode 2
 dvd:///mnt/dvd/archive/D/The%20Day%20Today/Episodes.iso#2
-#EXTINF:0,,Episode 3
+#EXTINF:1746,,Episode 3
 dvd:///mnt/dvd/archive/D/The%20Day%20Today/Episodes.iso#3
-#EXTINF:0,,Episode 4
+#EXTINF:1730,,Episode 4
 dvd:///mnt/dvd/archive/D/The%20Day%20Today/Episodes.iso#4
-#EXTINF:0,,Episode 5
+#EXTINF:1731,,Episode 5
 dvd:///mnt/dvd/archive/D/The%20Day%20Today/Episodes.iso#5
-#EXTINF:0,,Episode 6
+#EXTINF:1728,,Episode 6
 dvd:///mnt/dvd/archive/D/The%20Day%20Today/Episodes.iso#6
index 5da8a97..b42c541 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Pilot
+#EXTINF:2556,,1.1. Pilot
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,1.2. Fastest Man Alive
+#EXTINF:2441,,1.2. Fastest Man Alive
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,1.3. Things You Can't Outrun
+#EXTINF:2439,,1.3. Things You Can't Outrun
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,1.4. Going Rogue
+#EXTINF:2440,,1.4. Going Rogue
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,1.5. Plastique
+#EXTINF:2441,,1.5. Plastique
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D01.%20E01%e2%80%9305.iso#8
-#EXTINF:0,,1.6. The Flash Is Born
+#EXTINF:2442,,1.6. The Flash Is Born
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,1.7. Power Outage
+#EXTINF:2442,,1.7. Power Outage
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,1.8. Flash vs. Arrow
+#EXTINF:2443,,1.8. Flash vs. Arrow
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,1.9. The Man in the Yellow Suit
+#EXTINF:2527,,1.9. The Man in the Yellow Suit
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,1.10. Revenge of the Rogues
+#EXTINF:2442,,1.10. Revenge of the Rogues
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D02.%20E06%e2%80%9310.iso#8
-#EXTINF:0,,1.11. The Sound and the Fury
+#EXTINF:2443,,1.11. The Sound and the Fury
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,1.12. Crazy for You
+#EXTINF:2433,,1.12. Crazy for You
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,1.13. The Nuclear Man
+#EXTINF:2443,,1.13. The Nuclear Man
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,1.14. Fallout
+#EXTINF:2440,,1.14. Fallout
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D03.%20E11%e2%80%9315.iso#6
-#EXTINF:0,,1.15. Out of Time
+#EXTINF:2422,,1.15. Out of Time
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D03.%20E11%e2%80%9315.iso#8
-#EXTINF:0,,1.16. Rogue Time
+#EXTINF:2437,,1.16. Rogue Time
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D04.%20E16%e2%80%9320.iso#3
-#EXTINF:0,,1.17. Tricksters
+#EXTINF:2448,,1.17. Tricksters
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D04.%20E16%e2%80%9320.iso#4
-#EXTINF:0,,1.18. All Star Team Up
+#EXTINF:2441,,1.18. All Star Team Up
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D04.%20E16%e2%80%9320.iso#5
-#EXTINF:0,,1.19. Who Is Harrison Wells?
+#EXTINF:2447,,1.19. Who Is Harrison Wells?
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D04.%20E16%e2%80%9320.iso#6
-#EXTINF:0,,1.20. The Trap
+#EXTINF:2448,,1.20. The Trap
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D04.%20E16%e2%80%9320.iso#8
-#EXTINF:0,,1.21. Grodd Lives
+#EXTINF:2446,,1.21. Grodd Lives
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D05.%20E21%e2%80%9323.iso#3
-#EXTINF:0,,1.22. Rogue Air
+#EXTINF:2445,,1.22. Rogue Air
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D05.%20E21%e2%80%9323.iso#4
-#EXTINF:0,,1.23. Fast Enough
+#EXTINF:2563,,1.23. Fast Enough
 dvd:///mnt/dvd/archive/F/The%20Flash/S01D05.%20E21%e2%80%9323.iso#6
 
-#EXTINF:0,,2.1. The Man Who Saved Central City
+#EXTINF:2447,,2.1. The Man Who Saved Central City
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,2.2. Flash of Two Worlds
+#EXTINF:2447,,2.2. Flash of Two Worlds
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.3. Family of Rogues
+#EXTINF:2450,,2.3. Family of Rogues
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,2.4. The Fury of Firestorm
+#EXTINF:2450,,2.4. The Fury of Firestorm
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,2.5. The Darkness and the Light
+#EXTINF:2449,,2.5. The Darkness and the Light
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,2.6. Enter Zoom
+#EXTINF:2432,,2.6. Enter Zoom
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.7. Gorilla Warfare
+#EXTINF:2449,,2.7. Gorilla Warfare
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,2.8. Legends of Today
+#EXTINF:2505,,2.8. Legends of Today
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,2.9. Running to Stand Still
+#EXTINF:2446,,2.9. Running to Stand Still
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D03.%20E09%e2%80%9311.iso#4
-#EXTINF:0,,2.10. Potential Energy
+#EXTINF:2448,,2.10. Potential Energy
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D03.%20E09%e2%80%9311.iso#5
-#EXTINF:0,,2.11. The Reverse-Flash Returns
+#EXTINF:2449,,2.11. The Reverse-Flash Returns
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D03.%20E09%e2%80%9311.iso#6
-#EXTINF:0,,2.12. Fast Lane
+#EXTINF:2449,,2.12. Fast Lane
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D04.%20E12%e2%80%9315.iso#3
-#EXTINF:0,,2.13. Welcome to Earth-2
+#EXTINF:2448,,2.13. Welcome to Earth-2
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D04.%20E12%e2%80%9315.iso#4
-#EXTINF:0,,2.14. Escape from Earth-2
+#EXTINF:2385,,2.14. Escape from Earth-2
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D04.%20E12%e2%80%9315.iso#5
-#EXTINF:0,,2.15. King Shark
+#EXTINF:2446,,2.15. King Shark
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D04.%20E12%e2%80%9315.iso#6
-#EXTINF:0,,2.16. Trajectory
+#EXTINF:2403,,2.16. Trajectory
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D05.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,2.17. Flash Back
+#EXTINF:2433,,2.17. Flash Back
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D05.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,2.18. Versus Zoom
+#EXTINF:2444,,2.18. Versus Zoom
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D05.%20E16%e2%80%9319.iso#5
-#EXTINF:0,,2.19. Back to Normal
+#EXTINF:2449,,2.19. Back to Normal
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D05.%20E16%e2%80%9319.iso#6
-#EXTINF:0,,2.20. Rupture
+#EXTINF:2449,,2.20. Rupture
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D06.%20E20%e2%80%9323.iso#3
-#EXTINF:0,,2.21. The Runaway Dinosaur
+#EXTINF:2448,,2.21. The Runaway Dinosaur
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D06.%20E20%e2%80%9323.iso#4
-#EXTINF:0,,2.22. Invincible
+#EXTINF:2448,,2.22. Invincible
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D06.%20E20%e2%80%9323.iso#5
-#EXTINF:0,,2.23. The Race of His Life
+#EXTINF:2488,,2.23. The Race of His Life
 dvd:///mnt/dvd/archive/F/The%20Flash/S02D06.%20E20%e2%80%9323.iso#6
 
-#EXTINF:0,,3.1. Flashpoint
+#EXTINF:2449,,3.1. Flashpoint
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,3.2. Paradox
+#EXTINF:2446,,3.2. Paradox
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,3.3. Magenta
+#EXTINF:2438,,3.3. Magenta
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,3.4. The New Rogues
+#EXTINF:2447,,3.4. The New Rogues
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,3.5. Monster
+#EXTINF:2448,,3.5. Monster
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,3.6. Shade
+#EXTINF:2442,,3.6. Shade
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,3.7. Killer Frost
+#EXTINF:2447,,3.7. Killer Frost
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,3.8. Invasion! (part 1)
+#EXTINF:2428,,3.8. Invasion! (part 1)
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,3.9. The Present
+#EXTINF:2422,,3.9. The Present
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,3.10. Borrowing Problems from the Future
+#EXTINF:2443,,3.10. Borrowing Problems from the Future
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,3.11. Dead or Alive
+#EXTINF:2447,,3.11. Dead or Alive
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,3.12. Untouchable
+#EXTINF:2433,,3.12. Untouchable
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,3.13. Attack on Gorilla City
+#EXTINF:2447,,3.13. Attack on Gorilla City
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,3.14. Attack on Central City
+#EXTINF:2446,,3.14. Attack on Central City
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,3.15. The Wrath of Savitar
+#EXTINF:2440,,3.15. The Wrath of Savitar
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,3.16. Into the Speed Force
+#EXTINF:2429,,3.16. Into the Speed Force
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,3.17. Duet
+#EXTINF:2499,,3.17. Duet
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,3.18. Abra Kadabra
+#EXTINF:2445,,3.18. Abra Kadabra
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,3.19. The Once and Future Flash
+#EXTINF:2448,,3.19. The Once and Future Flash
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,3.20. I Know Who You Are
+#EXTINF:2439,,3.20. I Know Who You Are
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D05.%20E17%e2%80%9320.iso#6
-#EXTINF:0,,3.21. Cause and Effect
+#EXTINF:2440,,3.21. Cause and Effect
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D06.%20E21%e2%80%9323.iso#3
-#EXTINF:0,,3.22. Infantino Street
+#EXTINF:2446,,3.22. Infantino Street
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D06.%20E21%e2%80%9323.iso#4
-#EXTINF:0,,3.23. Finish Line
+#EXTINF:2420,,3.23. Finish Line
 dvd:///mnt/dvd/archive/F/The%20Flash/S03D06.%20E21%e2%80%9323.iso#5
 
-#EXTINF:0,,4.1. The Flash Reborn
+#EXTINF:2445,,4.1. The Flash Reborn
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,4.2. Mixed Signals
+#EXTINF:2446,,4.2. Mixed Signals
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,4.3. Luck Be a Lady
+#EXTINF:2446,,4.3. Luck Be a Lady
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,4.4. Elongated Journey Into Night
+#EXTINF:2414,,4.4. Elongated Journey Into Night
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,4.5. Girls Night Out
+#EXTINF:2412,,4.5. Girls Night Out
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,4.6. When Harry Met Harry…
+#EXTINF:2444,,4.6. When Harry Met Harry…
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D02.%20E06%e2%80%9309.iso#3
-#EXTINF:0,,4.7. Therefore I Am
+#EXTINF:2428,,4.7. Therefore I Am
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D02.%20E06%e2%80%9309.iso#4
-#EXTINF:0,,4.8. Crisis on Earth-X (part 3)
+#EXTINF:2446,,4.8. Crisis on Earth-X (part 3)
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D02.%20E06%e2%80%9309.iso#5
-#EXTINF:0,,4.9. Don't Run
+#EXTINF:2445,,4.9. Don't Run
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D02.%20E06%e2%80%9309.iso#6
-#EXTINF:0,,4.10. The Trial of the Flash
+#EXTINF:2447,,4.10. The Trial of the Flash
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D03.%20E10%e2%80%9314.iso#3
-#EXTINF:0,,4.11. The Elongated Knight Rises
+#EXTINF:2447,,4.11. The Elongated Knight Rises
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D03.%20E10%e2%80%9314.iso#4
-#EXTINF:0,,4.12. Honey, I Shrunk Team Flash
+#EXTINF:2447,,4.12. Honey, I Shrunk Team Flash
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D03.%20E10%e2%80%9314.iso#5
-#EXTINF:0,,4.13. True Colors
+#EXTINF:2441,,4.13. True Colors
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D03.%20E10%e2%80%9314.iso#6
-#EXTINF:0,,4.14. Subject 9
+#EXTINF:2442,,4.14. Subject 9
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D03.%20E10%e2%80%9314.iso#7
-#EXTINF:0,,4.15. Enter Flashtime
+#EXTINF:2396,,4.15. Enter Flashtime
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D04.%20E15%e2%80%9319.iso#3
-#EXTINF:0,,4.16. Run, Iris, Run
+#EXTINF:2404,,4.16. Run, Iris, Run
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D04.%20E15%e2%80%9319.iso#4
-#EXTINF:0,,4.17. Null and Annoyed
+#EXTINF:2440,,4.17. Null and Annoyed
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D04.%20E15%e2%80%9319.iso#5
-#EXTINF:0,,4.18. Lose Yourself
+#EXTINF:2447,,4.18. Lose Yourself
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D04.%20E15%e2%80%9319.iso#6
-#EXTINF:0,,4.19. Fury Rogue
+#EXTINF:2443,,4.19. Fury Rogue
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D04.%20E15%e2%80%9319.iso#7
-#EXTINF:0,,4.20. Therefore She Is
+#EXTINF:2447,,4.20. Therefore She Is
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D05.%20E20%e2%80%9323.iso#3
-#EXTINF:0,,4.21. Harry and the Harrisons
+#EXTINF:2447,,4.21. Harry and the Harrisons
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D05.%20E20%e2%80%9323.iso#4
-#EXTINF:0,,4.22. Think Fast
+#EXTINF:2424,,4.22. Think Fast
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D05.%20E20%e2%80%9323.iso#5
-#EXTINF:0,,4.23. We Are the Flash
+#EXTINF:2445,,4.23. We Are the Flash
 dvd:///mnt/dvd/archive/F/The%20Flash/S04D05.%20E20%e2%80%9323.iso#6
 
-#EXTINF:0,,5.1. Nora
+#EXTINF:2445,,5.1. Nora
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D01.%20E01%e2%80%9305.iso#2
-#EXTINF:0,,5.2. Blocked
+#EXTINF:2434,,5.2. Blocked
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,5.3. The Death of Vibe
+#EXTINF:2447,,5.3. The Death of Vibe
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,5.4. News Flash
+#EXTINF:2377,,5.4. News Flash
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,5.5. All Doll'd Up
+#EXTINF:2447,,5.5. All Doll'd Up
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,5.6. The Icicle Cometh
+#EXTINF:2427,,5.6. The Icicle Cometh
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D02.%20E06%e2%80%9309.iso#2
-#EXTINF:0,,5.7. O Come, All Ye Thankful
+#EXTINF:2444,,5.7. O Come, All Ye Thankful
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D02.%20E06%e2%80%9309.iso#3
-#EXTINF:0,,5.8. What's Past Is Prologue
+#EXTINF:2447,,5.8. What's Past Is Prologue
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D02.%20E06%e2%80%9309.iso#4
-#EXTINF:0,,5.9. Elseworlds (part 1)
+#EXTINF:2447,,5.9. Elseworlds (part 1)
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D02.%20E06%e2%80%9309.iso#5
-#EXTINF:0,,5.10. The Flash & the Furious
+#EXTINF:2446,,5.10. The Flash & the Furious
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D03.%20E10%e2%80%9314.iso#2
-#EXTINF:0,,5.11. Seeing Red
+#EXTINF:2447,,5.11. Seeing Red
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D03.%20E10%e2%80%9314.iso#3
-#EXTINF:0,,5.12. Memorabilia
+#EXTINF:2436,,5.12. Memorabilia
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D03.%20E10%e2%80%9314.iso#4
-#EXTINF:0,,5.13. Goldfaced
+#EXTINF:2444,,5.13. Goldfaced
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D03.%20E10%e2%80%9314.iso#5
-#EXTINF:0,,5.14. Cause and XS
+#EXTINF:2447,,5.14. Cause and XS
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D03.%20E10%e2%80%9314.iso#6
-#EXTINF:0,,5.15. King Shark vs. Gorilla Grodd
+#EXTINF:2410,,5.15. King Shark vs. Gorilla Grodd
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D04.%20E15%e2%80%9319.iso#2
-#EXTINF:0,,5.16. Failure Is an Orphan
+#EXTINF:2436,,5.16. Failure Is an Orphan
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D04.%20E15%e2%80%9319.iso#3
-#EXTINF:0,,5.17. Time Bomb
+#EXTINF:2446,,5.17. Time Bomb
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D04.%20E15%e2%80%9319.iso#4
-#EXTINF:0,,5.18. Godspeed
+#EXTINF:2443,,5.18. Godspeed
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D04.%20E15%e2%80%9319.iso#5
-#EXTINF:0,,5.19. Snow Pack
+#EXTINF:2427,,5.19. Snow Pack
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D04.%20E15%e2%80%9319.iso#6
-#EXTINF:0,,5.20. Gone Rogue
+#EXTINF:2446,,5.20. Gone Rogue
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D05.%20E20%e2%80%9322.iso#2
-#EXTINF:0,,5.21. The Girl with the Red Lightning
+#EXTINF:2437,,5.21. The Girl with the Red Lightning
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D05.%20E20%e2%80%9322.iso#3
-#EXTINF:0,,5.22. Legacy
+#EXTINF:2446,,5.22. Legacy
 dvd:///mnt/dvd/archive/F/The%20Flash/S05D05.%20E20%e2%80%9322.iso#4
 
-#EXTINF:0,,6.1. Into the Void
+#EXTINF:2444,,6.1. Into the Void
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,6.2. A Flash of the Lightning
+#EXTINF:2436,,6.2. A Flash of the Lightning
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,6.3. Dead Man Running
+#EXTINF:2440,,6.3. Dead Man Running
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,6.4. There Will Be Blood
+#EXTINF:2445,,6.4. There Will Be Blood
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,6.5. Kiss Kiss Breach Breach
+#EXTINF:2448,,6.5. Kiss Kiss Breach Breach
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,6.6. License to Elongate
+#EXTINF:2442,,6.6. License to Elongate
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,6.7. The Last Temptation of Barry Allen (part 1)
+#EXTINF:2447,,6.7. The Last Temptation of Barry Allen (part 1)
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,6.8. The Last Temptation of Barry Allen (part 2)
+#EXTINF:2443,,6.8. The Last Temptation of Barry Allen (part 2)
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,6.9. Crisis on Infinite Earths (part 3)
+#EXTINF:2446,,6.9. Crisis on Infinite Earths (part 3)
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,6.10. Marathon
+#EXTINF:2446,,6.10. Marathon
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D02.%20E06%e2%80%9310.iso#7
-#EXTINF:0,,6.11. Love Is a Battlefield
+#EXTINF:2435,,6.11. Love Is a Battlefield
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D03.%20E11%e2%80%9315.iso#3
-#EXTINF:0,,6.12. A Girl Named Sue
+#EXTINF:2446,,6.12. A Girl Named Sue
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D03.%20E11%e2%80%9315.iso#4
-#EXTINF:0,,6.13. Grodd Friended Me
+#EXTINF:2437,,6.13. Grodd Friended Me
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D03.%20E11%e2%80%9315.iso#5
-#EXTINF:0,,6.14. Death of the Speed Force
+#EXTINF:2444,,6.14. Death of the Speed Force
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D03.%20E11%e2%80%9315.iso#6
-#EXTINF:0,,6.15. The Exorcism of Nash Wells
+#EXTINF:2444,,6.15. The Exorcism of Nash Wells
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D03.%20E11%e2%80%9315.iso#7
-#EXTINF:0,,6.16. So Long and Goodnight
+#EXTINF:2446,,6.16. So Long and Goodnight
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D04.%20E16%e2%80%9319.iso#3
-#EXTINF:0,,6.17. Liberation
+#EXTINF:2443,,6.17. Liberation
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D04.%20E16%e2%80%9319.iso#4
-#EXTINF:0,,6.18. Pay the Piper
+#EXTINF:2389,,6.18. Pay the Piper
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D04.%20E16%e2%80%9319.iso#5
-#EXTINF:0,,6.19. Success Is Assured
+#EXTINF:2446,,6.19. Success Is Assured
 dvd:///mnt/dvd/archive/F/The%20Flash/S06D04.%20E16%e2%80%9319.iso#6
 
-#EXTINF:0,,7.1. All's Wells that Ends Wells
+#EXTINF:2442,,7.1. All's Wells that Ends Wells
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D01.%20E01%e2%80%9305.iso#2
-#EXTINF:0,,7.2. The Speed of Thought
+#EXTINF:2447,,7.2. The Speed of Thought
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,7.3. Mother
+#EXTINF:2446,,7.3. Mother
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,7.4. Central City Strong
+#EXTINF:2446,,7.4. Central City Strong
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,7.5. Fear Me
+#EXTINF:2447,,7.5. Fear Me
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,7.6. The One with the Nineties
+#EXTINF:2446,,7.6. The One with the Nineties
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D02.%20E06%e2%80%9310.iso#2
-#EXTINF:0,,7.7. Growing Pains
+#EXTINF:2431,,7.7. Growing Pains
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,7.8. The People v. Killer Frost
+#EXTINF:2447,,7.8. The People v. Killer Frost
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,7.9. Timeless
+#EXTINF:2438,,7.9. Timeless
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,7.10. Family Matters (part 1)
+#EXTINF:2436,,7.10. Family Matters (part 1)
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,7.11. Family Matters (part 2)
+#EXTINF:2444,,7.11. Family Matters (part 2)
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D03.%20E11%e2%80%9314.iso#2
-#EXTINF:0,,7.12. Good-Bye Vibrations
+#EXTINF:2445,,7.12. Good-Bye Vibrations
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D03.%20E11%e2%80%9314.iso#3
-#EXTINF:0,,7.13. Masquerade
+#EXTINF:2436,,7.13. Masquerade
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D03.%20E11%e2%80%9314.iso#4
-#EXTINF:0,,7.14. Rayo de luz
+#EXTINF:2400,,7.14. Rayo de luz
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D03.%20E11%e2%80%9314.iso#5
-#EXTINF:0,,7.15. Enemy at the Gates
+#EXTINF:2404,,7.15. Enemy at the Gates
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D04.%20E15%e2%80%9318.iso#2
-#EXTINF:0,,7.16. P.O.W.
+#EXTINF:2443,,7.16. P.O.W.
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D04.%20E15%e2%80%9318.iso#3
-#EXTINF:0,,7.17. Heart of the Matter (part 1)
+#EXTINF:2443,,7.17. Heart of the Matter (part 1)
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D04.%20E15%e2%80%9318.iso#4
-#EXTINF:0,,7.18. Heart of the Matter (part 2)
+#EXTINF:2440,,7.18. Heart of the Matter (part 2)
 dvd:///mnt/dvd/archive/F/The%20Flash/S07D04.%20E15%e2%80%9318.iso#5
index 66eadb3..134981d 100644 (file)
@@ -1,84 +1,84 @@
 #EXTM3U
 
-#EXTINF:0,,Episode 1.1
+#EXTINF:3259,,Episode 1.1
 dvd:///mnt/dvd/archive/K/The%20Killing/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Episode 1.2
+#EXTINF:3311,,Episode 1.2
 dvd:///mnt/dvd/archive/K/The%20Killing/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Episode 1.3
+#EXTINF:3495,,Episode 1.3
 dvd:///mnt/dvd/archive/K/The%20Killing/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,Episode 1.4
+#EXTINF:3468,,Episode 1.4
 dvd:///mnt/dvd/archive/K/The%20Killing/S01D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Episode 1.5
+#EXTINF:3293,,Episode 1.5
 dvd:///mnt/dvd/archive/K/The%20Killing/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Episode 1.6
+#EXTINF:3509,,Episode 1.6
 dvd:///mnt/dvd/archive/K/The%20Killing/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Episode 1.7
+#EXTINF:3452,,Episode 1.7
 dvd:///mnt/dvd/archive/K/The%20Killing/S01D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,Episode 1.8
+#EXTINF:3378,,Episode 1.8
 dvd:///mnt/dvd/archive/K/The%20Killing/S01D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,Episode 1.9
+#EXTINF:3391,,Episode 1.9
 dvd:///mnt/dvd/archive/K/The%20Killing/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,Episode 1.10
+#EXTINF:3463,,Episode 1.10
 dvd:///mnt/dvd/archive/K/The%20Killing/S01D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,Episode 1.11
+#EXTINF:3393,,Episode 1.11
 dvd:///mnt/dvd/archive/K/The%20Killing/S01D03.%20E09%e2%80%9312.iso#5
-#EXTINF:0,,Episode 1.12
+#EXTINF:3418,,Episode 1.12
 dvd:///mnt/dvd/archive/K/The%20Killing/S01D03.%20E09%e2%80%9312.iso#6
-#EXTINF:0,,Episode 1.13
+#EXTINF:3353,,Episode 1.13
 dvd:///mnt/dvd/archive/K/The%20Killing/S01D04.%20E13%e2%80%9316.iso#3
-#EXTINF:0,,Episode 1.14
+#EXTINF:3513,,Episode 1.14
 dvd:///mnt/dvd/archive/K/The%20Killing/S01D04.%20E13%e2%80%9316.iso#4
-#EXTINF:0,,Episode 1.15
+#EXTINF:3480,,Episode 1.15
 dvd:///mnt/dvd/archive/K/The%20Killing/S01D04.%20E13%e2%80%9316.iso#5
-#EXTINF:0,,Episode 1.16
+#EXTINF:3526,,Episode 1.16
 dvd:///mnt/dvd/archive/K/The%20Killing/S01D04.%20E13%e2%80%9316.iso#6
-#EXTINF:0,,Episode 1.17
+#EXTINF:3442,,Episode 1.17
 dvd:///mnt/dvd/archive/K/The%20Killing/S01D05.%20E17%e2%80%9320.iso#3
-#EXTINF:0,,Episode 1.18
+#EXTINF:3478,,Episode 1.18
 dvd:///mnt/dvd/archive/K/The%20Killing/S01D05.%20E17%e2%80%9320.iso#4
-#EXTINF:0,,Episode 1.19
+#EXTINF:3520,,Episode 1.19
 dvd:///mnt/dvd/archive/K/The%20Killing/S01D05.%20E17%e2%80%9320.iso#5
-#EXTINF:0,,Episode 1.20
+#EXTINF:3533,,Episode 1.20
 dvd:///mnt/dvd/archive/K/The%20Killing/S01D05.%20E17%e2%80%9320.iso#6
 
-#EXTINF:0,,Episode 2.1
+#EXTINF:3452,,Episode 2.1
 dvd:///mnt/dvd/archive/K/The%20Killing/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Episode 2.2
+#EXTINF:3444,,Episode 2.2
 dvd:///mnt/dvd/archive/K/The%20Killing/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Episode 2.3
+#EXTINF:3441,,Episode 2.3
 dvd:///mnt/dvd/archive/K/The%20Killing/S02D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,Episode 2.4
+#EXTINF:3452,,Episode 2.4
 dvd:///mnt/dvd/archive/K/The%20Killing/S02D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Episode 2.5
+#EXTINF:3409,,Episode 2.5
 dvd:///mnt/dvd/archive/K/The%20Killing/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Episode 2.6
+#EXTINF:3525,,Episode 2.6
 dvd:///mnt/dvd/archive/K/The%20Killing/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Episode 2.7
+#EXTINF:3537,,Episode 2.7
 dvd:///mnt/dvd/archive/K/The%20Killing/S02D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,Episode 2.8
+#EXTINF:3540,,Episode 2.8
 dvd:///mnt/dvd/archive/K/The%20Killing/S02D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,Episode 2.9
+#EXTINF:3542,,Episode 2.9
 dvd:///mnt/dvd/archive/K/The%20Killing/S02D03.%20E09%e2%80%9310.iso#4
-#EXTINF:0,,Episode 2.10
+#EXTINF:3572,,Episode 2.10
 dvd:///mnt/dvd/archive/K/The%20Killing/S02D03.%20E09%e2%80%9310.iso#5
 
-#EXTINF:0,,Episode 3.1
+#EXTINF:3472,,Episode 3.1
 dvd:///mnt/dvd/archive/K/The%20Killing/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,Episode 3.2
+#EXTINF:3542,,Episode 3.2
 dvd:///mnt/dvd/archive/K/The%20Killing/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,Episode 3.3
+#EXTINF:3510,,Episode 3.3
 dvd:///mnt/dvd/archive/K/The%20Killing/S03D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,Episode 3.4
+#EXTINF:3526,,Episode 3.4
 dvd:///mnt/dvd/archive/K/The%20Killing/S03D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,Episode 3.5
+#EXTINF:3507,,Episode 3.5
 dvd:///mnt/dvd/archive/K/The%20Killing/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,Episode 3.6
+#EXTINF:3513,,Episode 3.6
 dvd:///mnt/dvd/archive/K/The%20Killing/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,Episode 3.7
+#EXTINF:3427,,Episode 3.7
 dvd:///mnt/dvd/archive/K/The%20Killing/S03D02.%20E05%e2%80%9308.iso#5
-#EXTINF:0,,Episode 3.8
+#EXTINF:3527,,Episode 3.8
 dvd:///mnt/dvd/archive/K/The%20Killing/S03D02.%20E05%e2%80%9308.iso#6
-#EXTINF:0,,Episode 3.9
+#EXTINF:3525,,Episode 3.9
 dvd:///mnt/dvd/archive/K/The%20Killing/S03D03.%20E09%e2%80%9310.iso#3
-#EXTINF:0,,Episode 3.10
+#EXTINF:3569,,Episode 3.10
 dvd:///mnt/dvd/archive/K/The%20Killing/S03D03.%20E09%e2%80%9310.iso#4
index 48fb3c1..9897252 100644 (file)
@@ -1,14 +1,14 @@
 #EXTM3U
 
-#EXTINF:0,,Episode 1
+#EXTINF:3453,,Episode 1
 dvd:///mnt/dvd/archive/N/The%20Night%20Manager/01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,Episode 2
+#EXTINF:3307,,Episode 2
 dvd:///mnt/dvd/archive/N/The%20Night%20Manager/01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,Episode 3
+#EXTINF:3490,,Episode 3
 dvd:///mnt/dvd/archive/N/The%20Night%20Manager/01.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,Episode 4
+#EXTINF:3485,,Episode 4
 dvd:///mnt/dvd/archive/N/The%20Night%20Manager/02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,Episode 5
+#EXTINF:3444,,Episode 5
 dvd:///mnt/dvd/archive/N/The%20Night%20Manager/02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,Episode 6
+#EXTINF:3569,,Episode 6
 dvd:///mnt/dvd/archive/N/The%20Night%20Manager/02.%20E04%e2%80%9306.iso#5
index 42aa313..6297702 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Pilot
+#EXTINF:2659,,1.1. Pilot
 dvd:///mnt/dvd/archive/S/The%20Shield/S01D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,1.2. Our Gang
+#EXTINF:2675,,1.2. Our Gang
 dvd:///mnt/dvd/archive/S/The%20Shield/S01D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,1.3. The Spread
+#EXTINF:2628,,1.3. The Spread
 dvd:///mnt/dvd/archive/S/The%20Shield/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,1.4. Dawg Days
+#EXTINF:2620,,1.4. Dawg Days
 dvd:///mnt/dvd/archive/S/The%20Shield/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,1.5. Blowback
+#EXTINF:2634,,1.5. Blowback
 dvd:///mnt/dvd/archive/S/The%20Shield/S01D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,1.6. Cherrypoppers
+#EXTINF:2678,,1.6. Cherrypoppers
 dvd:///mnt/dvd/archive/S/The%20Shield/S01D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,1.7. Pay in Pain
+#EXTINF:2661,,1.7. Pay in Pain
 dvd:///mnt/dvd/archive/S/The%20Shield/S01D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,1.8. Cupid & Psycho
+#EXTINF:2673,,1.8. Cupid & Psycho
 dvd:///mnt/dvd/archive/S/The%20Shield/S01D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,1.9. Throwaway
+#EXTINF:2627,,1.9. Throwaway
 dvd:///mnt/dvd/archive/S/The%20Shield/S01D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,1.10. Dragonchasers
+#EXTINF:2668,,1.10. Dragonchasers
 dvd:///mnt/dvd/archive/S/The%20Shield/S01D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,1.11. Carnivores
+#EXTINF:2677,,1.11. Carnivores
 dvd:///mnt/dvd/archive/S/The%20Shield/S01D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,1.12. Two Days of Blood
+#EXTINF:2674,,1.12. Two Days of Blood
 dvd:///mnt/dvd/archive/S/The%20Shield/S01D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,1.13. Circles
+#EXTINF:2671,,1.13. Circles
 dvd:///mnt/dvd/archive/S/The%20Shield/S01D04.%20E13.iso#1
 
-#EXTINF:0,,2.1. The Quick Fix
+#EXTINF:2935,,2.1. The Quick Fix
 dvd:///mnt/dvd/archive/S/The%20Shield/S02D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,2.2. Dead Soldiers
+#EXTINF:2578,,2.2. Dead Soldiers
 dvd:///mnt/dvd/archive/S/The%20Shield/S02D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,2.3. Partners
+#EXTINF:2604,,2.3. Partners
 dvd:///mnt/dvd/archive/S/The%20Shield/S02D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,2.4. Carte Blanche
+#EXTINF:2617,,2.4. Carte Blanche
 dvd:///mnt/dvd/archive/S/The%20Shield/S02D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,2.5. Greenlit
+#EXTINF:2604,,2.5. Greenlit
 dvd:///mnt/dvd/archive/S/The%20Shield/S02D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,2.6. Homewrecker
+#EXTINF:2604,,2.6. Homewrecker
 dvd:///mnt/dvd/archive/S/The%20Shield/S02D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,2.7. Barnstormers
+#EXTINF:2590,,2.7. Barnstormers
 dvd:///mnt/dvd/archive/S/The%20Shield/S02D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,2.8. Scar Tissue
+#EXTINF:2610,,2.8. Scar Tissue
 dvd:///mnt/dvd/archive/S/The%20Shield/S02D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,2.9. Co-Pilot
+#EXTINF:2621,,2.9. Co-Pilot
 dvd:///mnt/dvd/archive/S/The%20Shield/S02D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,2.10. Coyotes
+#EXTINF:2618,,2.10. Coyotes
 dvd:///mnt/dvd/archive/S/The%20Shield/S02D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,2.11. Inferno
+#EXTINF:2614,,2.11. Inferno
 dvd:///mnt/dvd/archive/S/The%20Shield/S02D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,2.12. Breakpoint
+#EXTINF:2597,,2.12. Breakpoint
 dvd:///mnt/dvd/archive/S/The%20Shield/S02D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,2.13. Dominoes Falling
+#EXTINF:2797,,2.13. Dominoes Falling
 dvd:///mnt/dvd/archive/S/The%20Shield/S02D04.%20E13.iso#1
 
-#EXTINF:0,,3.1. Playing Tight
+#EXTINF:2801,,3.1. Playing Tight
 dvd:///mnt/dvd/archive/S/The%20Shield/S03D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,3.2. Blood and Water
+#EXTINF:2596,,3.2. Blood and Water
 dvd:///mnt/dvd/archive/S/The%20Shield/S03D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,3.3. Bottom Bitch
+#EXTINF:2613,,3.3. Bottom Bitch
 dvd:///mnt/dvd/archive/S/The%20Shield/S03D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,3.4. Streaks and Tips
+#EXTINF:2609,,3.4. Streaks and Tips
 dvd:///mnt/dvd/archive/S/The%20Shield/S03D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,3.5. Mum
+#EXTINF:2566,,3.5. Mum
 dvd:///mnt/dvd/archive/S/The%20Shield/S03D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,3.6. Posse Up
+#EXTINF:2604,,3.6. Posse Up
 dvd:///mnt/dvd/archive/S/The%20Shield/S03D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,3.7. Safe
+#EXTINF:2632,,3.7. Safe
 dvd:///mnt/dvd/archive/S/The%20Shield/S03D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,3.8. Cracking Ice
+#EXTINF:2605,,3.8. Cracking Ice
 dvd:///mnt/dvd/archive/S/The%20Shield/S03D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,3.9. Slipknot
+#EXTINF:2628,,3.9. Slipknot
 dvd:///mnt/dvd/archive/S/The%20Shield/S03D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,3.10. What Power Is…
+#EXTINF:2604,,3.10. What Power Is…
 dvd:///mnt/dvd/archive/S/The%20Shield/S03D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,3.11. Strays
+#EXTINF:2635,,3.11. Strays
 dvd:///mnt/dvd/archive/S/The%20Shield/S03D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,3.12. Riceburner
+#EXTINF:2613,,3.12. Riceburner
 dvd:///mnt/dvd/archive/S/The%20Shield/S03D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,3.13. Fire in the Hole
+#EXTINF:2574,,3.13. Fire in the Hole
 dvd:///mnt/dvd/archive/S/The%20Shield/S03D04.%20E13%e2%80%9315.iso#1
-#EXTINF:0,,3.14. All In
+#EXTINF:2579,,3.14. All In
 dvd:///mnt/dvd/archive/S/The%20Shield/S03D04.%20E13%e2%80%9315.iso#2
-#EXTINF:0,,3.15. On Tilt
+#EXTINF:2788,,3.15. On Tilt
 dvd:///mnt/dvd/archive/S/The%20Shield/S03D04.%20E13%e2%80%9315.iso#4
 
-#EXTINF:0,,4.1. The Cure
+#EXTINF:2861,,4.1. The Cure
 dvd:///mnt/dvd/archive/S/The%20Shield/S04D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,4.2. Grave
+#EXTINF:2627,,4.2. Grave
 dvd:///mnt/dvd/archive/S/The%20Shield/S04D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,4.3. Bang
+#EXTINF:2680,,4.3. Bang
 dvd:///mnt/dvd/archive/S/The%20Shield/S04D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,4.4. Doghouse
+#EXTINF:2628,,4.4. Doghouse
 dvd:///mnt/dvd/archive/S/The%20Shield/S04D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,4.5. Tar Baby
+#EXTINF:2613,,4.5. Tar Baby
 dvd:///mnt/dvd/archive/S/The%20Shield/S04D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,4.6. Insurgents
+#EXTINF:2630,,4.6. Insurgents
 dvd:///mnt/dvd/archive/S/The%20Shield/S04D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,4.7. Hurt
+#EXTINF:2644,,4.7. Hurt
 dvd:///mnt/dvd/archive/S/The%20Shield/S04D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,4.8. Cut Throat
+#EXTINF:2630,,4.8. Cut Throat
 dvd:///mnt/dvd/archive/S/The%20Shield/S04D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,4.9. String Theory
+#EXTINF:2621,,4.9. String Theory
 dvd:///mnt/dvd/archive/S/The%20Shield/S04D03.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,4.10. Back in the Hole
+#EXTINF:3592,,4.10. Back in the Hole
 dvd:///mnt/dvd/archive/S/The%20Shield/S04D03.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,4.11. A Thousand Deaths
+#EXTINF:2594,,4.11. A Thousand Deaths
 dvd:///mnt/dvd/archive/S/The%20Shield/S04D03.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,4.12. Judas Priest
+#EXTINF:2586,,4.12. Judas Priest
 dvd:///mnt/dvd/archive/S/The%20Shield/S04D04.%20E12%e2%80%9313.iso#1
-#EXTINF:0,,4.13. Ain't That a Shame
+#EXTINF:2673,,4.13. Ain't That a Shame
 dvd:///mnt/dvd/archive/S/The%20Shield/S04D04.%20E12%e2%80%9313.iso#2
 
-#EXTINF:0,,5.1. Extraction
+#EXTINF:2934,,5.1. Extraction
 dvd:///mnt/dvd/archive/S/The%20Shield/S05D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,5.2. Enemy of Good
+#EXTINF:2647,,5.2. Enemy of Good
 dvd:///mnt/dvd/archive/S/The%20Shield/S05D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,5.3. Jailbait
+#EXTINF:2646,,5.3. Jailbait
 dvd:///mnt/dvd/archive/S/The%20Shield/S05D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,5.4. Tapa Boca
+#EXTINF:2732,,5.4. Tapa Boca
 dvd:///mnt/dvd/archive/S/The%20Shield/S05D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,5.5. Trophy
+#EXTINF:2646,,5.5. Trophy
 dvd:///mnt/dvd/archive/S/The%20Shield/S05D02.%20E05%e2%80%9307.iso#1
-#EXTINF:0,,5.6. Rap Payback
+#EXTINF:2876,,5.6. Rap Payback
 dvd:///mnt/dvd/archive/S/The%20Shield/S05D02.%20E05%e2%80%9307.iso#2
-#EXTINF:0,,5.7. Man Inside
+#EXTINF:2650,,5.7. Man Inside
 dvd:///mnt/dvd/archive/S/The%20Shield/S05D02.%20E05%e2%80%9307.iso#3
-#EXTINF:0,,5.8. Kavanaugh
+#EXTINF:2818,,5.8. Kavanaugh
 dvd:///mnt/dvd/archive/S/The%20Shield/S05D03.%20E08%e2%80%9309.iso#1
-#EXTINF:0,,5.9. Smoked
+#EXTINF:2645,,5.9. Smoked
 dvd:///mnt/dvd/archive/S/The%20Shield/S05D03.%20E08%e2%80%9309.iso#2
-#EXTINF:0,,5.10. Of Mice and Lem
+#EXTINF:2875,,5.10. Of Mice and Lem
 dvd:///mnt/dvd/archive/S/The%20Shield/S05D04.%20E10%e2%80%9311.iso#1
-#EXTINF:0,,5.11. Postpartum
+#EXTINF:2874,,5.11. Postpartum
 dvd:///mnt/dvd/archive/S/The%20Shield/S05D04.%20E10%e2%80%9311.iso#2
 
-#EXTINF:0,,6.1. On the Jones
+#EXTINF:2932,,6.1. On the Jones
 dvd:///mnt/dvd/archive/S/The%20Shield/S06D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,6.2. Baptism by Fire
+#EXTINF:2766,,6.2. Baptism by Fire
 dvd:///mnt/dvd/archive/S/The%20Shield/S06D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,6.3. Back to One
+#EXTINF:2651,,6.3. Back to One
 dvd:///mnt/dvd/archive/S/The%20Shield/S06D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,6.4. The New Guy
+#EXTINF:2750,,6.4. The New Guy
 dvd:///mnt/dvd/archive/S/The%20Shield/S06D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,6.5. Haunts
+#EXTINF:2646,,6.5. Haunts
 dvd:///mnt/dvd/archive/S/The%20Shield/S06D02.%20E05%e2%80%9307.iso#1
-#EXTINF:0,,6.6. Chasing Ghosts
+#EXTINF:2824,,6.6. Chasing Ghosts
 dvd:///mnt/dvd/archive/S/The%20Shield/S06D02.%20E05%e2%80%9307.iso#2
-#EXTINF:0,,6.7. Exiled
+#EXTINF:2651,,6.7. Exiled
 dvd:///mnt/dvd/archive/S/The%20Shield/S06D02.%20E05%e2%80%9307.iso#3
-#EXTINF:0,,6.8. The Math of the Wrath
+#EXTINF:2756,,6.8. The Math of the Wrath
 dvd:///mnt/dvd/archive/S/The%20Shield/S06D03.%20E08%e2%80%9310.iso#1
-#EXTINF:0,,6.9. Recoil
+#EXTINF:2820,,6.9. Recoil
 dvd:///mnt/dvd/archive/S/The%20Shield/S06D03.%20E08%e2%80%9310.iso#2
-#EXTINF:0,,6.10. Spanish Practices
+#EXTINF:3700,,6.10. Spanish Practices
 dvd:///mnt/dvd/archive/S/The%20Shield/S06D03.%20E08%e2%80%9310.iso#3
 
-#EXTINF:0,,7.1. Coefficient of Drag
+#EXTINF:2806,,7.1. Coefficient of Drag
 dvd:///mnt/dvd/archive/S/The%20Shield/S07D01.%20E01%e2%80%9304.iso#1
-#EXTINF:0,,7.2. Snitch
+#EXTINF:2541,,7.2. Snitch
 dvd:///mnt/dvd/archive/S/The%20Shield/S07D01.%20E01%e2%80%9304.iso#2
-#EXTINF:0,,7.3. Money Shot
+#EXTINF:2588,,7.3. Money Shot
 dvd:///mnt/dvd/archive/S/The%20Shield/S07D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,7.4. Genocide
+#EXTINF:2507,,7.4. Genocide
 dvd:///mnt/dvd/archive/S/The%20Shield/S07D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,7.5. Game Face
+#EXTINF:2743,,7.5. Game Face
 dvd:///mnt/dvd/archive/S/The%20Shield/S07D02.%20E05%e2%80%9308.iso#1
-#EXTINF:0,,7.6. Animal Control
+#EXTINF:2655,,7.6. Animal Control
 dvd:///mnt/dvd/archive/S/The%20Shield/S07D02.%20E05%e2%80%9308.iso#2
-#EXTINF:0,,7.7. Bitches Brew
+#EXTINF:2669,,7.7. Bitches Brew
 dvd:///mnt/dvd/archive/S/The%20Shield/S07D02.%20E05%e2%80%9308.iso#3
-#EXTINF:0,,7.8. Parricide
+#EXTINF:2559,,7.8. Parricide
 dvd:///mnt/dvd/archive/S/The%20Shield/S07D02.%20E05%e2%80%9308.iso#4
-#EXTINF:0,,7.9. Moving Day
+#EXTINF:2559,,7.9. Moving Day
 dvd:///mnt/dvd/archive/S/The%20Shield/S07D03.%20E09%e2%80%9312.iso#1
-#EXTINF:0,,7.10. Party Line
+#EXTINF:2539,,7.10. Party Line
 dvd:///mnt/dvd/archive/S/The%20Shield/S07D03.%20E09%e2%80%9312.iso#2
-#EXTINF:0,,7.11. Petty Cash
+#EXTINF:2591,,7.11. Petty Cash
 dvd:///mnt/dvd/archive/S/The%20Shield/S07D03.%20E09%e2%80%9312.iso#3
-#EXTINF:0,,7.12. Possible Kill Screen
+#EXTINF:2717,,7.12. Possible Kill Screen
 dvd:///mnt/dvd/archive/S/The%20Shield/S07D03.%20E09%e2%80%9312.iso#4
-#EXTINF:0,,7.13. Family Meeting (part 1)
+#EXTINF:2445,,7.13. Family Meeting (part 1)
 dvd:///mnt/dvd/archive/S/The%20Shield/S07D04.%20E13%e2%80%9314.iso#1
-#EXTINF:0,,7.14. Family Meeting (part 2)
+#EXTINF:2416,,7.14. Family Meeting (part 2)
 dvd:///mnt/dvd/archive/S/The%20Shield/S07D04.%20E13%e2%80%9314.iso#2
index 4ddd205..a4408d8 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. The Target
+#EXTINF:3730,,1.1. The Target
 dvd:///mnt/dvd/archive/W/The%20Wire/S01D01.%20E01%e2%80%9303.iso#1
-#EXTINF:0,,1.2. The Detail
+#EXTINF:3467,,1.2. The Detail
 dvd:///mnt/dvd/archive/W/The%20Wire/S01D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,1.3. The Buys
+#EXTINF:3305,,1.3. The Buys
 dvd:///mnt/dvd/archive/W/The%20Wire/S01D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,1.4. Old Cases
+#EXTINF:3571,,1.4. Old Cases
 dvd:///mnt/dvd/archive/W/The%20Wire/S01D02.%20E04%e2%80%9305.iso#1
-#EXTINF:0,,1.5. The Pager
+#EXTINF:3604,,1.5. The Pager
 dvd:///mnt/dvd/archive/W/The%20Wire/S01D02.%20E04%e2%80%9305.iso#2
-#EXTINF:0,,1.6. The Wire
+#EXTINF:3561,,1.6. The Wire
 dvd:///mnt/dvd/archive/W/The%20Wire/S01D03.%20E06%e2%80%9308.iso#1
-#EXTINF:0,,1.7. One Arrest
+#EXTINF:3550,,1.7. One Arrest
 dvd:///mnt/dvd/archive/W/The%20Wire/S01D03.%20E06%e2%80%9308.iso#2
-#EXTINF:0,,1.8. Lessons
+#EXTINF:3366,,1.8. Lessons
 dvd:///mnt/dvd/archive/W/The%20Wire/S01D03.%20E06%e2%80%9308.iso#3
-#EXTINF:0,,1.9. Game Day
+#EXTINF:3404,,1.9. Game Day
 dvd:///mnt/dvd/archive/W/The%20Wire/S01D04.%20E09%e2%80%9311.iso#1
-#EXTINF:0,,1.10. The Cost
+#EXTINF:3333,,1.10. The Cost
 dvd:///mnt/dvd/archive/W/The%20Wire/S01D04.%20E09%e2%80%9311.iso#2
-#EXTINF:0,,1.11. The Hunt
+#EXTINF:3382,,1.11. The Hunt
 dvd:///mnt/dvd/archive/W/The%20Wire/S01D04.%20E09%e2%80%9311.iso#3
-#EXTINF:0,,1.12. Cleaning Up
+#EXTINF:3380,,1.12. Cleaning Up
 dvd:///mnt/dvd/archive/W/The%20Wire/S01D05.%20E12%e2%80%9313.iso#1
-#EXTINF:0,,1.13. Sentencing
+#EXTINF:3934,,1.13. Sentencing
 dvd:///mnt/dvd/archive/W/The%20Wire/S01D05.%20E12%e2%80%9313.iso#2
 
-#EXTINF:0,,2.1. Ebb Tide
+#EXTINF:3518,,2.1. Ebb Tide
 dvd:///mnt/dvd/archive/W/The%20Wire/S02D01.%20E01%e2%80%9302.iso#1
-#EXTINF:0,,2.2. Collateral Damage
+#EXTINF:3518,,2.2. Collateral Damage
 dvd:///mnt/dvd/archive/W/The%20Wire/S02D01.%20E01%e2%80%9302.iso#2
-#EXTINF:0,,2.3. Hot Shots
+#EXTINF:3506,,2.3. Hot Shots
 dvd:///mnt/dvd/archive/W/The%20Wire/S02D02.%20E03%e2%80%9304.iso#1
-#EXTINF:0,,2.4. Hard Cases
+#EXTINF:3517,,2.4. Hard Cases
 dvd:///mnt/dvd/archive/W/The%20Wire/S02D02.%20E03%e2%80%9304.iso#2
-#EXTINF:0,,2.5. Undertow
+#EXTINF:3432,,2.5. Undertow
 dvd:///mnt/dvd/archive/W/The%20Wire/S02D03.%20E05%e2%80%9307.iso#1
-#EXTINF:0,,2.6. All Prologue
+#EXTINF:3492,,2.6. All Prologue
 dvd:///mnt/dvd/archive/W/The%20Wire/S02D03.%20E05%e2%80%9307.iso#2
-#EXTINF:0,,2.7. Backwash
+#EXTINF:3509,,2.7. Backwash
 dvd:///mnt/dvd/archive/W/The%20Wire/S02D03.%20E05%e2%80%9307.iso#3
-#EXTINF:0,,2.8. Duck and Cover
+#EXTINF:3462,,2.8. Duck and Cover
 dvd:///mnt/dvd/archive/W/The%20Wire/S02D04.%20E08%e2%80%9310.iso#1
-#EXTINF:0,,2.9. Stray Rounds
+#EXTINF:3502,,2.9. Stray Rounds
 dvd:///mnt/dvd/archive/W/The%20Wire/S02D04.%20E08%e2%80%9310.iso#2
-#EXTINF:0,,2.10. Storm Warnings
+#EXTINF:3519,,2.10. Storm Warnings
 dvd:///mnt/dvd/archive/W/The%20Wire/S02D04.%20E08%e2%80%9310.iso#3
-#EXTINF:0,,2.11. Bad Dreams
+#EXTINF:3501,,2.11. Bad Dreams
 dvd:///mnt/dvd/archive/W/The%20Wire/S02D05.%20E11%e2%80%9312.iso#1
-#EXTINF:0,,2.12. Port in a Storm
+#EXTINF:3778,,2.12. Port in a Storm
 dvd:///mnt/dvd/archive/W/The%20Wire/S02D05.%20E11%e2%80%9312.iso#2
 
-#EXTINF:0,,3.1. Time After Time
+#EXTINF:3519,,3.1. Time After Time
 dvd:///mnt/dvd/archive/W/The%20Wire/S03D01.%20E01%e2%80%9302.iso#1
-#EXTINF:0,,3.2. All Due Respect
+#EXTINF:3519,,3.2. All Due Respect
 dvd:///mnt/dvd/archive/W/The%20Wire/S03D01.%20E01%e2%80%9302.iso#2
-#EXTINF:0,,3.3. Dead Soldiers
+#EXTINF:3516,,3.3. Dead Soldiers
 dvd:///mnt/dvd/archive/W/The%20Wire/S03D02.%20E03%e2%80%9304.iso#1
-#EXTINF:0,,3.4. Hamsterdam
+#EXTINF:3519,,3.4. Hamsterdam
 dvd:///mnt/dvd/archive/W/The%20Wire/S03D02.%20E03%e2%80%9304.iso#2
-#EXTINF:0,,3.5. Straight and True
+#EXTINF:3503,,3.5. Straight and True
 dvd:///mnt/dvd/archive/W/The%20Wire/S03D03.%20E05%e2%80%9307.iso#1
-#EXTINF:0,,3.6. Homecoming
+#EXTINF:3439,,3.6. Homecoming
 dvd:///mnt/dvd/archive/W/The%20Wire/S03D03.%20E05%e2%80%9307.iso#2
-#EXTINF:0,,3.7. Back Burners
+#EXTINF:3338,,3.7. Back Burners
 dvd:///mnt/dvd/archive/W/The%20Wire/S03D03.%20E05%e2%80%9307.iso#3
-#EXTINF:0,,3.8. Moral Midgetry
+#EXTINF:3517,,3.8. Moral Midgetry
 dvd:///mnt/dvd/archive/W/The%20Wire/S03D04.%20E08%e2%80%9310.iso#1
-#EXTINF:0,,3.9. Slapstick
+#EXTINF:3504,,3.9. Slapstick
 dvd:///mnt/dvd/archive/W/The%20Wire/S03D04.%20E08%e2%80%9310.iso#2
-#EXTINF:0,,3.10. Reformation
+#EXTINF:3511,,3.10. Reformation
 dvd:///mnt/dvd/archive/W/The%20Wire/S03D04.%20E08%e2%80%9310.iso#3
-#EXTINF:0,,3.11. Middle Ground
+#EXTINF:3516,,3.11. Middle Ground
 dvd:///mnt/dvd/archive/W/The%20Wire/S03D05.%20E11%e2%80%9312.iso#1
-#EXTINF:0,,3.12. Mission Accomplished
+#EXTINF:3800,,3.12. Mission Accomplished
 dvd:///mnt/dvd/archive/W/The%20Wire/S03D05.%20E11%e2%80%9312.iso#2
 
-#EXTINF:0,,4.1. Boys of Summer
+#EXTINF:3508,,4.1. Boys of Summer
 dvd:///mnt/dvd/archive/W/The%20Wire/S04D01.%20E01%e2%80%9303.iso#1
-#EXTINF:0,,4.2. Soft Eyes
+#EXTINF:3501,,4.2. Soft Eyes
 dvd:///mnt/dvd/archive/W/The%20Wire/S04D01.%20E01%e2%80%9303.iso#2
-#EXTINF:0,,4.3. Home Rooms
+#EXTINF:3517,,4.3. Home Rooms
 dvd:///mnt/dvd/archive/W/The%20Wire/S04D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,4.4. Refugees
+#EXTINF:3516,,4.4. Refugees
 dvd:///mnt/dvd/archive/W/The%20Wire/S04D02.%20E04%e2%80%9306.iso#1
-#EXTINF:0,,4.5. Alliances
+#EXTINF:3517,,4.5. Alliances
 dvd:///mnt/dvd/archive/W/The%20Wire/S04D02.%20E04%e2%80%9306.iso#2
-#EXTINF:0,,4.6. Margin of Error
+#EXTINF:3480,,4.6. Margin of Error
 dvd:///mnt/dvd/archive/W/The%20Wire/S04D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,4.7. Unto Others
+#EXTINF:3510,,4.7. Unto Others
 dvd:///mnt/dvd/archive/W/The%20Wire/S04D03.%20E07%e2%80%9309.iso#1
-#EXTINF:0,,4.8. Corner Boys
+#EXTINF:3517,,4.8. Corner Boys
 dvd:///mnt/dvd/archive/W/The%20Wire/S04D03.%20E07%e2%80%9309.iso#2
-#EXTINF:0,,4.9. Know Your Place
+#EXTINF:3517,,4.9. Know Your Place
 dvd:///mnt/dvd/archive/W/The%20Wire/S04D03.%20E07%e2%80%9309.iso#3
-#EXTINF:0,,4.10. Misgivings
+#EXTINF:3507,,4.10. Misgivings
 dvd:///mnt/dvd/archive/W/The%20Wire/S04D04.%20E10%e2%80%9312.iso#1
-#EXTINF:0,,4.11. A New Day
+#EXTINF:3515,,4.11. A New Day
 dvd:///mnt/dvd/archive/W/The%20Wire/S04D04.%20E10%e2%80%9312.iso#2
-#EXTINF:0,,4.12. That's Got His Own
+#EXTINF:3514,,4.12. That's Got His Own
 dvd:///mnt/dvd/archive/W/The%20Wire/S04D04.%20E10%e2%80%9312.iso#3
-#EXTINF:0,,4.13. Final Grades
+#EXTINF:4723,,4.13. Final Grades
 dvd:///mnt/dvd/archive/W/The%20Wire/S04D05.%20E13.iso#1
 
-#EXTINF:0,,5.1. More with Less
+#EXTINF:3521,,5.1. More with Less
 dvd:///mnt/dvd/archive/W/The%20Wire/S05D01.%20E01%e2%80%9303.iso#3
-#EXTINF:0,,5.2. Unconfirmed Reports
+#EXTINF:3521,,5.2. Unconfirmed Reports
 dvd:///mnt/dvd/archive/W/The%20Wire/S05D01.%20E01%e2%80%9303.iso#4
-#EXTINF:0,,5.3. Not for Attribution
+#EXTINF:3517,,5.3. Not for Attribution
 dvd:///mnt/dvd/archive/W/The%20Wire/S05D01.%20E01%e2%80%9303.iso#5
-#EXTINF:0,,5.4. Transitions
+#EXTINF:3514,,5.4. Transitions
 dvd:///mnt/dvd/archive/W/The%20Wire/S05D02.%20E04%e2%80%9306.iso#3
-#EXTINF:0,,5.5. React Quotes
+#EXTINF:3517,,5.5. React Quotes
 dvd:///mnt/dvd/archive/W/The%20Wire/S05D02.%20E04%e2%80%9306.iso#4
-#EXTINF:0,,5.6. The Dickensian Aspect
+#EXTINF:3517,,5.6. The Dickensian Aspect
 dvd:///mnt/dvd/archive/W/The%20Wire/S05D02.%20E04%e2%80%9306.iso#5
-#EXTINF:0,,5.7. Took
+#EXTINF:3517,,5.7. Took
 dvd:///mnt/dvd/archive/W/The%20Wire/S05D03.%20E07%e2%80%9309.iso#3
-#EXTINF:0,,5.8. Clarifications
+#EXTINF:3517,,5.8. Clarifications
 dvd:///mnt/dvd/archive/W/The%20Wire/S05D03.%20E07%e2%80%9309.iso#4
-#EXTINF:0,,5.9. Late Editions
+#EXTINF:3596,,5.9. Late Editions
 dvd:///mnt/dvd/archive/W/The%20Wire/S05D03.%20E07%e2%80%9309.iso#5
-#EXTINF:0,,5.10. -30-
+#EXTINF:5593,,5.10. -30-
 dvd:///mnt/dvd/archive/W/The%20Wire/S05D05.%20E10.iso#3
index 3cd0519..a810483 100644 (file)
@@ -1,47 +1,47 @@
 #EXTM3U
 
-#EXTINF:0,,1.1. Pilot
+#EXTINF:2715,,1.1. Pilot
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S01D01.%20E01%e2%80%9304.iso#3
-#EXTINF:0,,1.2. There Is No Normal Anymore
+#EXTINF:2474,,1.2. There Is No Normal Anymore
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S01D01.%20E01%e2%80%9304.iso#4
-#EXTINF:0,,1.3. A Bright New Day
+#EXTINF:2491,,1.3. A Bright New Day
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S01D01.%20E01%e2%80%9304.iso#5
-#EXTINF:0,,1.4. It's Only the Beginning
+#EXTINF:2478,,1.4. It's Only the Beginning
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S01D01.%20E01%e2%80%9304.iso#6
-#EXTINF:0,,1.5. Welcome to the War
+#EXTINF:2466,,1.5. Welcome to the War
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S01D02.%20E05%e2%80%9309.iso#3
-#EXTINF:0,,1.6. Pound of Flesh
+#EXTINF:2484,,1.6. Pound of Flesh
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S01D02.%20E05%e2%80%9309.iso#4
-#EXTINF:0,,1.7. John May
+#EXTINF:2489,,1.7. John May
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S01D02.%20E05%e2%80%9309.iso#5
-#EXTINF:0,,1.8. We Can't Win
+#EXTINF:2495,,1.8. We Can't Win
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S01D02.%20E05%e2%80%9309.iso#6
-#EXTINF:0,,1.9. Heretic's Fork
+#EXTINF:2467,,1.9. Heretic's Fork
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S01D02.%20E05%e2%80%9309.iso#7
-#EXTINF:0,,1.10. Hearts and Minds
+#EXTINF:2487,,1.10. Hearts and Minds
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S01D03.%20E10%e2%80%9312.iso#3
-#EXTINF:0,,1.11. Fruition
+#EXTINF:2476,,1.11. Fruition
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S01D03.%20E10%e2%80%9312.iso#4
-#EXTINF:0,,1.12. Red Sky
+#EXTINF:2489,,1.12. Red Sky
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S01D03.%20E10%e2%80%9312.iso#5
 
-#EXTINF:0,,2.1. Red Rain
+#EXTINF:2485,,2.1. Red Rain
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S02D01.%20E01%e2%80%9305.iso#3
-#EXTINF:0,,2.2. Serpent's Tooth
+#EXTINF:2468,,2.2. Serpent's Tooth
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S02D01.%20E01%e2%80%9305.iso#4
-#EXTINF:0,,2.3. Laid Bare
+#EXTINF:2481,,2.3. Laid Bare
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S02D01.%20E01%e2%80%9305.iso#5
-#EXTINF:0,,2.4. Unholy Alliance
+#EXTINF:2486,,2.4. Unholy Alliance
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S02D01.%20E01%e2%80%9305.iso#6
-#EXTINF:0,,2.5. Concordia
+#EXTINF:2317,,2.5. Concordia
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S02D01.%20E01%e2%80%9305.iso#7
-#EXTINF:0,,2.6. Siege
+#EXTINF:2484,,2.6. Siege
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S02D02.%20E06%e2%80%9310.iso#3
-#EXTINF:0,,2.7. Birth Pangs
+#EXTINF:2456,,2.7. Birth Pangs
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S02D02.%20E06%e2%80%9310.iso#4
-#EXTINF:0,,2.8. Uneasy Lies the Head
+#EXTINF:2358,,2.8. Uneasy Lies the Head
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S02D02.%20E06%e2%80%9310.iso#5
-#EXTINF:0,,2.9. Devil in a Blue Dress
+#EXTINF:2446,,2.9. Devil in a Blue Dress
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S02D02.%20E06%e2%80%9310.iso#6
-#EXTINF:0,,2.10. Mother's Day
+#EXTINF:2518,,2.10. Mother's Day
 dvd:///mnt/dvd/archive/V/V%20%282009%29/S02D02.%20E06%e2%80%9310.iso#7
index 48692e9..77913af 100644 (file)
 #EXTM3U
 
-#EXTINF:0,,1.1. Waking the Dead
+#EXTINF:5995,,1.1. Waking the Dead
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S01E01.%20Waking%20the%20Dead.iso#2
-#EXTINF:0,,1.2. Burn Out
+#EXTINF:6767,,1.2. Burn Out
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S01E02.%20Burn%20Out.iso#2
-#EXTINF:0,,1.3. The Blind Beggar
+#EXTINF:7014,,1.3. The Blind Beggar
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S01E03.%20The%20Blind%20Beggar.iso#2
-#EXTINF:0,,1.4. A Simple Sacrifice
+#EXTINF:6916,,1.4. A Simple Sacrifice
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S01E04.%20A%20Simple%20Sacrifice.iso#2
-#EXTINF:0,,1.5. Every Breath You Take
+#EXTINF:6994,,1.5. Every Breath You Take
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S01E05.%20Every%20Breath%20You%20Take.iso#2
 
-#EXTINF:0,,2.1. Life Sentence
+#EXTINF:7002,,2.1. Life Sentence
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S02E01.%20Life%20Sentence.iso#2
-#EXTINF:0,,2.2. Deathwatch
+#EXTINF:6957,,2.2. Deathwatch
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S02E02.%20Deathwatch.iso#2
-#EXTINF:0,,2.3. Special Relationship
+#EXTINF:6884,,2.3. Special Relationship
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S02E03.%20Special%20Relationship.iso#2
-#EXTINF:0,,2.4. Thin Air
+#EXTINF:7014,,2.4. Thin Air
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S02E04.%20Thin%20Air.iso#2
 
-#EXTINF:0,,3.1. Multistorey
+#EXTINF:7064,,3.1. Multistorey
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S03E01.%20Multistorey.iso#4
-#EXTINF:0,,3.2. Walking on Water
+#EXTINF:6918,,3.2. Walking on Water
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S03E02.%20Walking%20on%20Water.iso#4
-#EXTINF:0,,3.3. Breaking Glass
+#EXTINF:6927,,3.3. Breaking Glass
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S03E03.%20Breaking%20Glass.iso#4
-#EXTINF:0,,3.4. Final Cut
+#EXTINF:6875,,3.4. Final Cut
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S03E04.%20Final%20Cut.iso#4
 
-#EXTINF:0,,4.1. In Sight of the Lord
+#EXTINF:7114,,4.1. In Sight of the Lord
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S04E01.%20In%20Sight%20of%20the%20Lord.iso#1
-#EXTINF:0,,4.2. False Flag
+#EXTINF:7095,,4.2. False Flag
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S04E02.%20False%20Flag.iso#1
-#EXTINF:0,,4.3. Fugue States
+#EXTINF:7068,,4.3. Fugue States
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S04E03.%20Fugue%20States.iso#1
-#EXTINF:0,,4.4. Anger Management
+#EXTINF:7148,,4.4. Anger Management
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S04E04.%20Anger%20Management.iso#1
-#EXTINF:0,,4.5. The Hardest Word
+#EXTINF:7091,,4.5. The Hardest Word
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S04E05.%20The%20Hardest%20Word.iso#1
-#EXTINF:0,,4.6. Shadowplay
+#EXTINF:7062,,4.6. Shadowplay
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S04E06.%20Shadowplay.iso#1
 
-#EXTINF:0,,5.1. Towers of Silence
+#EXTINF:6763,,5.1. Towers of Silence
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S05E01.%20Towers%20of%20Silence.iso#2
-#EXTINF:0,,5.2. Black Run
+#EXTINF:6939,,5.2. Black Run
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S05E02.%20Black%20Run.iso#2
-#EXTINF:0,,5.3. Subterraneans
+#EXTINF:6931,,5.3. Subterraneans
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S05E03.%20Subterraneans.iso#2
-#EXTINF:0,,5.4. Straw Dog
+#EXTINF:6905,,5.4. Straw Dog
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S05E04.%20Straw%20Dog.iso#2
-#EXTINF:0,,5.5. Undertow
+#EXTINF:6909,,5.5. Undertow
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S05E05.%20Undertow.iso#2
-#EXTINF:0,,5.6. Cold Fusion
+#EXTINF:6969,,5.6. Cold Fusion
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S05E06.%20Cold%20Fusion.iso#2
 
-#EXTINF:0,,6.1. Wren Boys
+#EXTINF:6763,,6.1. Wren Boys
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S06E01.%20Wren%20Boys.iso#2
-#EXTINF:0,,6.2. Deus ex machina
+#EXTINF:6954,,6.2. Deus ex machina
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S06E02.%20Deus%20ex%20machina.iso#2
-#EXTINF:0,,6.3. The Fall
+#EXTINF:6869,,6.3. The Fall
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S06E03.%20The%20Fall.iso#2
-#EXTINF:0,,6.4. Mask of Sanity
+#EXTINF:6902,,6.4. Mask of Sanity
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S06E04.%20Mask%20of%20Sanity.iso#2
-#EXTINF:0,,6.5. Double Bind
+#EXTINF:6941,,6.5. Double Bind
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S06E05.%20Double%20Bind.iso#2
-#EXTINF:0,,6.6. Yahrzeit
+#EXTINF:7036,,6.6. Yahrzeit
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S06E06.%20Yahrzeit.iso#2
 
-#EXTINF:0,,7.1. Missing Persons
+#EXTINF:6904,,7.1. Missing Persons
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S07E01.%20Missing%20Persons.iso#2
-#EXTINF:0,,7.2. Sins
+#EXTINF:6881,,7.2. Sins
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S07E02.%20Sins.iso#2
-#EXTINF:0,,7.3. Duty and Honour
+#EXTINF:7015,,7.3. Duty and Honour
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S07E03.%20Duty%20and%20Honour.iso#2
-#EXTINF:0,,7.4. Skin
+#EXTINF:6922,,7.4. Skin
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S07E04.%20Skin.iso#2
-#EXTINF:0,,7.5. Wounds
+#EXTINF:6861,,7.5. Wounds
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S07E05.%20Wounds.iso#2
-#EXTINF:0,,7.6. Pietà
+#EXTINF:6889,,7.6. Pietà
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S07E06.%20Piet%c3%a0.iso#2
 
-#EXTINF:0,,8.1. Magdalene 26
+#EXTINF:6891,,8.1. Magdalene 26
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S08E01.%20Magdalene%2026.iso#2
-#EXTINF:0,,8.2. End of the Night
+#EXTINF:6780,,8.2. End of the Night
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S08E02.%20End%20of%20the%20Night.iso#2
-#EXTINF:0,,8.3. Substitute
+#EXTINF:6788,,8.3. Substitute
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S08E03.%20Substitute.iso#2
-#EXTINF:0,,8.4. Endgame
+#EXTINF:6991,,8.4. Endgame
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S08E04.%20Endgame.iso#2
 
-#EXTINF:0,,9.1. Harbinger
+#EXTINF:6971,,9.1. Harbinger
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S09E01.%20Harbinger.iso#2
-#EXTINF:0,,9.2. Care
+#EXTINF:6755,,9.2. Care
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S09E02.%20Care.iso#2
-#EXTINF:0,,9.3. Solidarity
+#EXTINF:6991,,9.3. Solidarity
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S09E03.%20Solidarity.iso#2
-#EXTINF:0,,9.4. Conviction
+#EXTINF:6926,,9.4. Conviction
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S09E04.%20Conviction.iso#2
-#EXTINF:0,,9.5. Endgame
+#EXTINF:7095,,9.5. Endgame
 dvd:///mnt/dvd/archive/W/Waking%20the%20Dead/S09E05.%20Endgame.iso#2