[BACKEND] Separate directory files in transaction log (#260)
This commit is contained in:
parent
359731e1f3
commit
897ea52e33
22 changed files with 1522 additions and 1446 deletions
|
|
@ -2,6 +2,7 @@ import hashlib
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
|
from collections import defaultdict
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Any
|
from typing import Any
|
||||||
from typing import Dict
|
from typing import Dict
|
||||||
|
|
@ -221,6 +222,42 @@ class FileHandlerTransactionLog:
|
||||||
self.files_removed.add(file_name)
|
self.files_removed.add(file_name)
|
||||||
return self
|
return self
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def _indent_metadata_line(cls, line: str, indent: int) -> str:
|
||||||
|
# Do not indent empty lines
|
||||||
|
rstrip_line = line.rstrip()
|
||||||
|
indent_str = " " * indent
|
||||||
|
return f"{indent_str}{rstrip_line}" if rstrip_line else ""
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def _to_output_message(
|
||||||
|
cls, file_set_title: str, file_set: Dict[str, Optional[FileMetadata]], output_directory: str
|
||||||
|
) -> List[str]:
|
||||||
|
if not file_set:
|
||||||
|
return []
|
||||||
|
|
||||||
|
directory_set: Dict[str, Dict[str, Optional[FileMetadata]]] = defaultdict(dict)
|
||||||
|
for file_path, file_metadata in sorted(file_set.items()):
|
||||||
|
file_directory = os.path.dirname(Path(output_directory) / file_path)
|
||||||
|
file_name = os.path.basename(Path(output_directory) / file_path)
|
||||||
|
|
||||||
|
directory_set[file_directory][file_name] = file_metadata
|
||||||
|
|
||||||
|
lines: List[str] = [file_set_title, "-" * 40]
|
||||||
|
for directory, directory_file_set in directory_set.items():
|
||||||
|
lines.append(directory)
|
||||||
|
for file_name, file_metadata in directory_file_set.items():
|
||||||
|
lines.append(cls._indent_metadata_line(file_name, indent=2))
|
||||||
|
|
||||||
|
if not file_metadata:
|
||||||
|
continue
|
||||||
|
|
||||||
|
lines.extend(
|
||||||
|
[cls._indent_metadata_line(line, indent=4) for line in file_metadata.metadata]
|
||||||
|
)
|
||||||
|
|
||||||
|
return lines
|
||||||
|
|
||||||
def to_output_message(self, output_directory: str) -> str:
|
def to_output_message(self, output_directory: str) -> str:
|
||||||
"""
|
"""
|
||||||
Parameters
|
Parameters
|
||||||
|
|
@ -234,38 +271,40 @@ class FileHandlerTransactionLog:
|
||||||
"""
|
"""
|
||||||
lines: List[str] = []
|
lines: List[str] = []
|
||||||
|
|
||||||
def _indent_metadata_line(line: str) -> str:
|
|
||||||
# Do not indent empty lines
|
|
||||||
rstrip_line = line.rstrip()
|
|
||||||
return f" {rstrip_line}" if rstrip_line else ""
|
|
||||||
|
|
||||||
line_dash = "-" * 40
|
|
||||||
|
|
||||||
if self.files_created:
|
if self.files_created:
|
||||||
created_line = f"Files created in '{output_directory}'"
|
lines.extend(
|
||||||
lines.extend([created_line, line_dash])
|
self._to_output_message(
|
||||||
for file_path, file_metadata in sorted(self.files_created.items()):
|
file_set_title="Files created:",
|
||||||
lines.append(file_path)
|
file_set=self.files_created,
|
||||||
if file_metadata:
|
output_directory=output_directory,
|
||||||
lines.extend([_indent_metadata_line(line) for line in file_metadata.metadata])
|
)
|
||||||
|
)
|
||||||
|
|
||||||
if self.files_modified:
|
if self.files_modified:
|
||||||
modified_line = f"Files modified in '{output_directory}'"
|
# Add a blank line to separate created files
|
||||||
lines.extend([modified_line, line_dash])
|
|
||||||
for file_path, file_metadata in sorted(self.files_modified.items()):
|
|
||||||
lines.append(file_path)
|
|
||||||
if file_metadata:
|
|
||||||
lines.extend([_indent_metadata_line(line) for line in file_metadata.metadata])
|
|
||||||
|
|
||||||
if self.files_removed:
|
|
||||||
# Add a blank line to separate created/removed files
|
|
||||||
if self.files_created:
|
if self.files_created:
|
||||||
lines.append("")
|
lines.append("")
|
||||||
|
|
||||||
removed_line = f"Files removed from '{output_directory}'"
|
lines.extend(
|
||||||
lines.extend([removed_line, line_dash])
|
self._to_output_message(
|
||||||
for file_path in sorted(self.files_removed):
|
file_set_title="Files modified:",
|
||||||
lines.append(file_path)
|
file_set=self.files_modified,
|
||||||
|
output_directory=output_directory,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
if self.files_removed:
|
||||||
|
# Add a blank line to separate created/removed files
|
||||||
|
if self.files_created or self.files_modified:
|
||||||
|
lines.append("")
|
||||||
|
|
||||||
|
lines.extend(
|
||||||
|
self._to_output_message(
|
||||||
|
file_set_title="Files removed:",
|
||||||
|
file_set={file_name: None for file_name in self.files_removed},
|
||||||
|
output_directory=output_directory,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
if self.is_empty:
|
if self.is_empty:
|
||||||
lines.append(f"No new, modified, or removed files in '{output_directory}'")
|
lines.append(f"No new, modified, or removed files in '{output_directory}'")
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,19 @@
|
||||||
Files created in '{output_directory}'
|
Files created:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
.ytdl-sub-recent-download-archive.json
|
{output_directory}
|
||||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer-thumb.jpg
|
.ytdl-sub-recent-download-archive.json
|
||||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.info.json
|
fanart.jpg
|
||||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.mp4
|
poster.jpg
|
||||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.nfo
|
tvshow.nfo
|
||||||
|
NFO tags:
|
||||||
|
tvshow:
|
||||||
|
plot: Plugin and map updates for the server Project Zombie.
|
||||||
|
title: Project / Zombie
|
||||||
|
{output_directory}/Season 2018
|
||||||
|
s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer-thumb.jpg
|
||||||
|
s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.info.json
|
||||||
|
s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.mp4
|
||||||
|
s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2018-10-29
|
aired: 2018-10-29
|
||||||
|
|
@ -22,11 +31,11 @@ Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.nfo
|
||||||
season: 2018
|
season: 2018
|
||||||
title: Jesse's Minecraft Server | Teaser Trailer
|
title: Jesse's Minecraft Server | Teaser Trailer
|
||||||
year: 2018
|
year: 2018
|
||||||
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id-thumb.jpg
|
s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id-thumb.jpg
|
||||||
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.en.srt
|
s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.en.srt
|
||||||
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.info.json
|
s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.info.json
|
||||||
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.mp4
|
s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.mp4
|
||||||
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.nfo
|
s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2018-11-02
|
aired: 2018-11-02
|
||||||
|
|
@ -47,10 +56,3 @@ Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.nfo
|
||||||
season: 2018
|
season: 2018
|
||||||
title: Jesse's Minecraft Server | IP mc.jesse.id
|
title: Jesse's Minecraft Server | IP mc.jesse.id
|
||||||
year: 2018
|
year: 2018
|
||||||
fanart.jpg
|
|
||||||
poster.jpg
|
|
||||||
tvshow.nfo
|
|
||||||
NFO tags:
|
|
||||||
tvshow:
|
|
||||||
plot: Plugin and map updates for the server Project Zombie.
|
|
||||||
title: Project / Zombie
|
|
||||||
|
|
@ -1,9 +1,12 @@
|
||||||
Files modified in '{output_directory}'
|
Files modified:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
.ytdl-sub-recent-download-archive.json
|
{output_directory}
|
||||||
Files removed from '{output_directory}'
|
.ytdl-sub-recent-download-archive.json
|
||||||
|
|
||||||
|
Files removed:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer-thumb.jpg
|
{output_directory}/Season 2018
|
||||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.info.json
|
s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer-thumb.jpg
|
||||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.mp4
|
s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.info.json
|
||||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.nfo
|
s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.mp4
|
||||||
|
s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.nfo
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
Files created in '{output_directory}'
|
Files created:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
Rick Beato - Can you hear the difference? 🎸🔥 #shorts-thumb.jpg
|
{output_directory}
|
||||||
Rick Beato - Can you hear the difference? 🎸🔥 #shorts.info.json
|
Rick Beato - Can you hear the difference? 🎸🔥 #shorts-thumb.jpg
|
||||||
Rick Beato - Can you hear the difference? 🎸🔥 #shorts.mp4
|
Rick Beato - Can you hear the difference? 🎸🔥 #shorts.info.json
|
||||||
Rick Beato - Can you hear the difference? 🎸🔥 #shorts.nfo
|
Rick Beato - Can you hear the difference? 🎸🔥 #shorts.mp4
|
||||||
|
Rick Beato - Can you hear the difference? 🎸🔥 #shorts.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
musicvideo:
|
musicvideo:
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
|
|
@ -39,7 +40,7 @@ Rick Beato - Can you hear the difference? 🎸🔥 #shorts.nfo
|
||||||
tag 🎸🎸
|
tag 🎸🎸
|
||||||
title: Can you hear the difference? 🎸🔥 #shorts
|
title: Can you hear the difference? 🎸🔥 #shorts
|
||||||
year: 2022
|
year: 2022
|
||||||
test.nfo
|
test.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
kodi_safe_root 🎸:
|
kodi_safe_root 🎸:
|
||||||
kodi_safe_multi_title 🎸:
|
kodi_safe_multi_title 🎸:
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
Files created in '{output_directory}'
|
Files created:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
Rick Beato - Can you hear the difference? 🎸🔥 #shorts-thumb.jpg
|
{output_directory}
|
||||||
Rick Beato - Can you hear the difference? 🎸🔥 #shorts.info.json
|
Rick Beato - Can you hear the difference? 🎸🔥 #shorts-thumb.jpg
|
||||||
Rick Beato - Can you hear the difference? 🎸🔥 #shorts.mp4
|
Rick Beato - Can you hear the difference? 🎸🔥 #shorts.info.json
|
||||||
Rick Beato - Can you hear the difference? 🎸🔥 #shorts.nfo
|
Rick Beato - Can you hear the difference? 🎸🔥 #shorts.mp4
|
||||||
|
Rick Beato - Can you hear the difference? 🎸🔥 #shorts.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
musicvideo:
|
musicvideo:
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
|
|
@ -39,7 +40,7 @@ Rick Beato - Can you hear the difference? 🎸🔥 #shorts.nfo
|
||||||
tag □□
|
tag □□
|
||||||
title: Can you hear the difference? □□ #shorts
|
title: Can you hear the difference? □□ #shorts
|
||||||
year: 2022
|
year: 2022
|
||||||
test.nfo
|
test.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
kodi_safe_root □:
|
kodi_safe_root □:
|
||||||
kodi_safe_multi_title □:
|
kodi_safe_multi_title □:
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,19 @@
|
||||||
Files created in '{output_directory}'
|
Files created:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
01. Intro (Feat. Racheal Ofori & Barney Artist).info.json
|
{output_directory}
|
||||||
02. Answers (Feat. Rick David & Kaya Thomas - Dyke).info.json
|
01. Intro (Feat. Racheal Ofori & Barney Artist).info.json
|
||||||
03. Blaze (Feat. Kaya Thomas - Dyke).info.json
|
02. Answers (Feat. Rick David & Kaya Thomas - Dyke).info.json
|
||||||
04. What If (Interlude).info.json
|
03. Blaze (Feat. Kaya Thomas - Dyke).info.json
|
||||||
05. No Peace (Feat. Tom Misch).info.json
|
04. What If (Interlude).info.json
|
||||||
06. Closer (Feat. Lester Duval).info.json
|
05. No Peace (Feat. Tom Misch).info.json
|
||||||
07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).info.json
|
06. Closer (Feat. Lester Duval).info.json
|
||||||
08. Dreams (Feat. Carmody).info.json
|
07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).info.json
|
||||||
09. Dreaming (Interlude) (Feat. Racheal Ofori).info.json
|
08. Dreams (Feat. Carmody).info.json
|
||||||
10. Hopeful (Feat. Jordan Rakei).info.json
|
09. Dreaming (Interlude) (Feat. Racheal Ofori).info.json
|
||||||
11. Sunrise (Pillows) (Feat. Emmavie).info.json
|
10. Hopeful (Feat. Jordan Rakei).info.json
|
||||||
Alfa Mist - Nocturne [Full Album]/01 - 01. Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
11. Sunrise (Pillows) (Feat. Emmavie).info.json
|
||||||
|
{output_directory}/Alfa Mist - Nocturne [Full Album]
|
||||||
|
01 - 01. Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -24,7 +26,7 @@ Alfa Mist - Nocturne [Full Album]/01 - 01. Intro (Feat. Racheal Ofori & Barney A
|
||||||
title: 01. Intro (Feat. Racheal Ofori & Barney Artist)
|
title: 01. Intro (Feat. Racheal Ofori & Barney Artist)
|
||||||
track: 1
|
track: 1
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/02 - 02. Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
02 - 02. Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -37,7 +39,7 @@ Alfa Mist - Nocturne [Full Album]/02 - 02. Answers (Feat. Rick David & Kaya Thom
|
||||||
title: 02. Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
title: 02. Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
||||||
track: 2
|
track: 2
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/03 - 03. Blaze (Feat. Kaya Thomas - Dyke).mp3
|
03 - 03. Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -50,7 +52,7 @@ Alfa Mist - Nocturne [Full Album]/03 - 03. Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||||
title: 03. Blaze (Feat. Kaya Thomas - Dyke)
|
title: 03. Blaze (Feat. Kaya Thomas - Dyke)
|
||||||
track: 3
|
track: 3
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/04 - 04. What If (Interlude).mp3
|
04 - 04. What If (Interlude).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -63,7 +65,7 @@ Alfa Mist - Nocturne [Full Album]/04 - 04. What If (Interlude).mp3
|
||||||
title: 04. What If (Interlude)
|
title: 04. What If (Interlude)
|
||||||
track: 4
|
track: 4
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/05 - 05. No Peace (Feat. Tom Misch).mp3
|
05 - 05. No Peace (Feat. Tom Misch).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -76,7 +78,7 @@ Alfa Mist - Nocturne [Full Album]/05 - 05. No Peace (Feat. Tom Misch).mp3
|
||||||
title: 05. No Peace (Feat. Tom Misch)
|
title: 05. No Peace (Feat. Tom Misch)
|
||||||
track: 5
|
track: 5
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/06 - 06. Closer (Feat. Lester Duval).mp3
|
06 - 06. Closer (Feat. Lester Duval).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -89,7 +91,7 @@ Alfa Mist - Nocturne [Full Album]/06 - 06. Closer (Feat. Lester Duval).mp3
|
||||||
title: 06. Closer (Feat. Lester Duval)
|
title: 06. Closer (Feat. Lester Duval)
|
||||||
track: 6
|
track: 6
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/07 - 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
07 - 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -102,7 +104,7 @@ Alfa Mist - Nocturne [Full Album]/07 - 07. Delusions: Rumination (Interlude) (
|
||||||
title: 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
title: 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
||||||
track: 7
|
track: 7
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/08 - 08. Dreams (Feat. Carmody).mp3
|
08 - 08. Dreams (Feat. Carmody).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -115,7 +117,7 @@ Alfa Mist - Nocturne [Full Album]/08 - 08. Dreams (Feat. Carmody).mp3
|
||||||
title: 08. Dreams (Feat. Carmody)
|
title: 08. Dreams (Feat. Carmody)
|
||||||
track: 8
|
track: 8
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/09 - 09. Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
09 - 09. Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -128,7 +130,7 @@ Alfa Mist - Nocturne [Full Album]/09 - 09. Dreaming (Interlude) (Feat. Racheal O
|
||||||
title: 09. Dreaming (Interlude) (Feat. Racheal Ofori)
|
title: 09. Dreaming (Interlude) (Feat. Racheal Ofori)
|
||||||
track: 9
|
track: 9
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/10 - 10. Hopeful (Feat. Jordan Rakei).mp3
|
10 - 10. Hopeful (Feat. Jordan Rakei).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -141,7 +143,7 @@ Alfa Mist - Nocturne [Full Album]/10 - 10. Hopeful (Feat. Jordan Rakei).mp3
|
||||||
title: 10. Hopeful (Feat. Jordan Rakei)
|
title: 10. Hopeful (Feat. Jordan Rakei)
|
||||||
track: 10
|
track: 10
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3
|
11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -154,4 +156,4 @@ Alfa Mist - Nocturne [Full Album]/11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||||
title: 11. Sunrise (Pillows) (Feat. Emmavie)
|
title: 11. Sunrise (Pillows) (Feat. Emmavie)
|
||||||
track: 11
|
track: 11
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/folder.jpg
|
folder.jpg
|
||||||
|
|
@ -1,17 +1,19 @@
|
||||||
Files created in '{output_directory}'
|
Files created:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
01. Intro (Feat. Racheal Ofori & Barney Artist).info.json
|
{output_directory}
|
||||||
02. Answers (Feat. Rick David & Kaya Thomas - Dyke).info.json
|
01. Intro (Feat. Racheal Ofori & Barney Artist).info.json
|
||||||
03. Blaze (Feat. Kaya Thomas - Dyke).info.json
|
02. Answers (Feat. Rick David & Kaya Thomas - Dyke).info.json
|
||||||
04. What If (Interlude).info.json
|
03. Blaze (Feat. Kaya Thomas - Dyke).info.json
|
||||||
05. No Peace (Feat. Tom Misch).info.json
|
04. What If (Interlude).info.json
|
||||||
06. Closer (Feat. Lester Duval).info.json
|
05. No Peace (Feat. Tom Misch).info.json
|
||||||
07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).info.json
|
06. Closer (Feat. Lester Duval).info.json
|
||||||
08. Dreams (Feat. Carmody).info.json
|
07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).info.json
|
||||||
09. Dreaming (Interlude) (Feat. Racheal Ofori).info.json
|
08. Dreams (Feat. Carmody).info.json
|
||||||
10. Hopeful (Feat. Jordan Rakei).info.json
|
09. Dreaming (Interlude) (Feat. Racheal Ofori).info.json
|
||||||
11. Sunrise (Pillows) (Feat. Emmavie).info.json
|
10. Hopeful (Feat. Jordan Rakei).info.json
|
||||||
Alfa Mist - Nocturne [Full Album]/01 - 01. Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
11. Sunrise (Pillows) (Feat. Emmavie).info.json
|
||||||
|
{output_directory}/Alfa Mist - Nocturne [Full Album]
|
||||||
|
01 - 01. Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 0:00 - 2:06
|
Segment: 0:00 - 2:06
|
||||||
|
|
@ -23,7 +25,7 @@ Alfa Mist - Nocturne [Full Album]/01 - 01. Intro (Feat. Racheal Ofori & Barney A
|
||||||
title: 01. Intro (Feat. Racheal Ofori & Barney Artist)
|
title: 01. Intro (Feat. Racheal Ofori & Barney Artist)
|
||||||
track: 1
|
track: 1
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/02 - 02. Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
02 - 02. Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 2:06 - 5:40
|
Segment: 2:06 - 5:40
|
||||||
|
|
@ -35,7 +37,7 @@ Alfa Mist - Nocturne [Full Album]/02 - 02. Answers (Feat. Rick David & Kaya Thom
|
||||||
title: 02. Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
title: 02. Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
||||||
track: 2
|
track: 2
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/03 - 03. Blaze (Feat. Kaya Thomas - Dyke).mp3
|
03 - 03. Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 5:40 - 8:11
|
Segment: 5:40 - 8:11
|
||||||
|
|
@ -47,7 +49,7 @@ Alfa Mist - Nocturne [Full Album]/03 - 03. Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||||
title: 03. Blaze (Feat. Kaya Thomas - Dyke)
|
title: 03. Blaze (Feat. Kaya Thomas - Dyke)
|
||||||
track: 3
|
track: 3
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/04 - 04. What If (Interlude).mp3
|
04 - 04. What If (Interlude).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 8:11 - 9:35
|
Segment: 8:11 - 9:35
|
||||||
|
|
@ -59,7 +61,7 @@ Alfa Mist - Nocturne [Full Album]/04 - 04. What If (Interlude).mp3
|
||||||
title: 04. What If (Interlude)
|
title: 04. What If (Interlude)
|
||||||
track: 4
|
track: 4
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/05 - 05. No Peace (Feat. Tom Misch).mp3
|
05 - 05. No Peace (Feat. Tom Misch).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 9:35 - 13:19
|
Segment: 9:35 - 13:19
|
||||||
|
|
@ -71,7 +73,7 @@ Alfa Mist - Nocturne [Full Album]/05 - 05. No Peace (Feat. Tom Misch).mp3
|
||||||
title: 05. No Peace (Feat. Tom Misch)
|
title: 05. No Peace (Feat. Tom Misch)
|
||||||
track: 5
|
track: 5
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/06 - 06. Closer (Feat. Lester Duval).mp3
|
06 - 06. Closer (Feat. Lester Duval).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 13:19 - 17:57
|
Segment: 13:19 - 17:57
|
||||||
|
|
@ -83,7 +85,7 @@ Alfa Mist - Nocturne [Full Album]/06 - 06. Closer (Feat. Lester Duval).mp3
|
||||||
title: 06. Closer (Feat. Lester Duval)
|
title: 06. Closer (Feat. Lester Duval)
|
||||||
track: 6
|
track: 6
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/07 - 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
07 - 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 17:57 - 20:05
|
Segment: 17:57 - 20:05
|
||||||
|
|
@ -95,7 +97,7 @@ Alfa Mist - Nocturne [Full Album]/07 - 07. Delusions: Rumination (Interlude) (
|
||||||
title: 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
title: 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
||||||
track: 7
|
track: 7
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/08 - 08. Dreams (Feat. Carmody).mp3
|
08 - 08. Dreams (Feat. Carmody).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 20:05 - 23:58
|
Segment: 20:05 - 23:58
|
||||||
|
|
@ -107,7 +109,7 @@ Alfa Mist - Nocturne [Full Album]/08 - 08. Dreams (Feat. Carmody).mp3
|
||||||
title: 08. Dreams (Feat. Carmody)
|
title: 08. Dreams (Feat. Carmody)
|
||||||
track: 8
|
track: 8
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/09 - 09. Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
09 - 09. Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 23:58 - 24:45
|
Segment: 23:58 - 24:45
|
||||||
|
|
@ -119,7 +121,7 @@ Alfa Mist - Nocturne [Full Album]/09 - 09. Dreaming (Interlude) (Feat. Racheal O
|
||||||
title: 09. Dreaming (Interlude) (Feat. Racheal Ofori)
|
title: 09. Dreaming (Interlude) (Feat. Racheal Ofori)
|
||||||
track: 9
|
track: 9
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/10 - 10. Hopeful (Feat. Jordan Rakei).mp3
|
10 - 10. Hopeful (Feat. Jordan Rakei).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 24:45 - 28:53
|
Segment: 24:45 - 28:53
|
||||||
|
|
@ -131,7 +133,7 @@ Alfa Mist - Nocturne [Full Album]/10 - 10. Hopeful (Feat. Jordan Rakei).mp3
|
||||||
title: 10. Hopeful (Feat. Jordan Rakei)
|
title: 10. Hopeful (Feat. Jordan Rakei)
|
||||||
track: 10
|
track: 10
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3
|
11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 28:53 - 31:43
|
Segment: 28:53 - 31:43
|
||||||
|
|
@ -143,4 +145,4 @@ Alfa Mist - Nocturne [Full Album]/11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||||
title: 11. Sunrise (Pillows) (Feat. Emmavie)
|
title: 11. Sunrise (Pillows) (Feat. Emmavie)
|
||||||
track: 11
|
track: 11
|
||||||
year: 2017
|
year: 2017
|
||||||
Alfa Mist - Nocturne [Full Album]/folder.jpg
|
folder.jpg
|
||||||
|
|
@ -1,7 +1,9 @@
|
||||||
Files created in '{output_directory}'
|
Files created:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
Oblivion Mod "Falcor" p.1.info.json
|
{output_directory}
|
||||||
Oblivion Mod "Falcor" p.1/01 - Oblivion Mod "Falcor" p.1.mp3
|
Oblivion Mod "Falcor" p.1.info.json
|
||||||
|
{output_directory}/Oblivion Mod "Falcor" p.1
|
||||||
|
01 - Oblivion Mod "Falcor" p.1.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Oblivion Mod "Falcor" p.1
|
album: Oblivion Mod "Falcor" p.1
|
||||||
albumartist: Project Zombie
|
albumartist: Project Zombie
|
||||||
|
|
@ -10,4 +12,4 @@ Oblivion Mod "Falcor" p.1/01 - Oblivion Mod "Falcor" p.1.mp3
|
||||||
title: Oblivion Mod "Falcor" p.1
|
title: Oblivion Mod "Falcor" p.1
|
||||||
track: 1
|
track: 1
|
||||||
year: 2010
|
year: 2010
|
||||||
Oblivion Mod "Falcor" p.1/folder.jpg
|
folder.jpg
|
||||||
|
|
@ -1,15 +1,19 @@
|
||||||
Files created in '{output_directory}'
|
Files created:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
Answers (Feat. Rick David & Kaya Thomas - Dyke).info.json
|
{output_directory}
|
||||||
Blaze (Feat. Kaya Thomas - Dyke).info.json
|
Answers (Feat. Rick David & Kaya Thomas - Dyke).info.json
|
||||||
Closer (Feat. Lester Duval).info.json
|
Blaze (Feat. Kaya Thomas - Dyke).info.json
|
||||||
Delusions: Rumination (Interlude) (Feat. Racheal Ofori).info.json
|
Closer (Feat. Lester Duval).info.json
|
||||||
Dreaming (Interlude) (Feat. Racheal Ofori).info.json
|
Delusions: Rumination (Interlude) (Feat. Racheal Ofori).info.json
|
||||||
Dreams (Feat. Carmody).info.json
|
Dreaming (Interlude) (Feat. Racheal Ofori).info.json
|
||||||
Hopeful (Feat. Jordan Rakei).info.json
|
Dreams (Feat. Carmody).info.json
|
||||||
Intro (Feat. Racheal Ofori & Barney Artist).info.json
|
Hopeful (Feat. Jordan Rakei).info.json
|
||||||
No Peace (Feat. Tom Misch).info.json
|
Intro (Feat. Racheal Ofori & Barney Artist).info.json
|
||||||
Nocturne/01 - Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
No Peace (Feat. Tom Misch).info.json
|
||||||
|
Sunrise (Pillows) (Feat. Emmavie).info.json
|
||||||
|
What If (Interlude).info.json
|
||||||
|
{output_directory}/Nocturne
|
||||||
|
01 - Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -22,7 +26,7 @@ Nocturne/01 - Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||||
title: Intro (Feat. Racheal Ofori & Barney Artist)
|
title: Intro (Feat. Racheal Ofori & Barney Artist)
|
||||||
track: 1
|
track: 1
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -35,7 +39,7 @@ Nocturne/02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||||
title: Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
title: Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
||||||
track: 2
|
track: 2
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -48,7 +52,7 @@ Nocturne/03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||||
title: Blaze (Feat. Kaya Thomas - Dyke)
|
title: Blaze (Feat. Kaya Thomas - Dyke)
|
||||||
track: 3
|
track: 3
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/04 - What If (Interlude).mp3
|
04 - What If (Interlude).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -61,7 +65,7 @@ Nocturne/04 - What If (Interlude).mp3
|
||||||
title: What If (Interlude)
|
title: What If (Interlude)
|
||||||
track: 4
|
track: 4
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/05 - No Peace (Feat. Tom Misch).mp3
|
05 - No Peace (Feat. Tom Misch).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -74,7 +78,7 @@ Nocturne/05 - No Peace (Feat. Tom Misch).mp3
|
||||||
title: No Peace (Feat. Tom Misch)
|
title: No Peace (Feat. Tom Misch)
|
||||||
track: 5
|
track: 5
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/06 - Closer (Feat. Lester Duval).mp3
|
06 - Closer (Feat. Lester Duval).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -87,7 +91,7 @@ Nocturne/06 - Closer (Feat. Lester Duval).mp3
|
||||||
title: Closer (Feat. Lester Duval)
|
title: Closer (Feat. Lester Duval)
|
||||||
track: 6
|
track: 6
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -100,7 +104,7 @@ Nocturne/07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
title: Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
title: Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
||||||
track: 7
|
track: 7
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/08 - Dreams (Feat. Carmody).mp3
|
08 - Dreams (Feat. Carmody).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -113,7 +117,7 @@ Nocturne/08 - Dreams (Feat. Carmody).mp3
|
||||||
title: Dreams (Feat. Carmody)
|
title: Dreams (Feat. Carmody)
|
||||||
track: 8
|
track: 8
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -126,7 +130,7 @@ Nocturne/09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
title: Dreaming (Interlude) (Feat. Racheal Ofori)
|
title: Dreaming (Interlude) (Feat. Racheal Ofori)
|
||||||
track: 9
|
track: 9
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/10 - Hopeful (Feat. Jordan Rakei).mp3
|
10 - Hopeful (Feat. Jordan Rakei).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -139,7 +143,7 @@ Nocturne/10 - Hopeful (Feat. Jordan Rakei).mp3
|
||||||
title: Hopeful (Feat. Jordan Rakei)
|
title: Hopeful (Feat. Jordan Rakei)
|
||||||
track: 10
|
track: 10
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
|
@ -152,6 +156,4 @@ Nocturne/11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||||
title: Sunrise (Pillows) (Feat. Emmavie)
|
title: Sunrise (Pillows) (Feat. Emmavie)
|
||||||
track: 11
|
track: 11
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/folder.jpg
|
folder.jpg
|
||||||
Sunrise (Pillows) (Feat. Emmavie).info.json
|
|
||||||
What If (Interlude).info.json
|
|
||||||
|
|
@ -1,15 +1,19 @@
|
||||||
Files created in '{output_directory}'
|
Files created:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
Answers (Feat. Rick David & Kaya Thomas - Dyke).info.json
|
{output_directory}
|
||||||
Blaze (Feat. Kaya Thomas - Dyke).info.json
|
Answers (Feat. Rick David & Kaya Thomas - Dyke).info.json
|
||||||
Closer (Feat. Lester Duval).info.json
|
Blaze (Feat. Kaya Thomas - Dyke).info.json
|
||||||
Delusions: Rumination (Interlude) (Feat. Racheal Ofori).info.json
|
Closer (Feat. Lester Duval).info.json
|
||||||
Dreaming (Interlude) (Feat. Racheal Ofori).info.json
|
Delusions: Rumination (Interlude) (Feat. Racheal Ofori).info.json
|
||||||
Dreams (Feat. Carmody).info.json
|
Dreaming (Interlude) (Feat. Racheal Ofori).info.json
|
||||||
Hopeful (Feat. Jordan Rakei).info.json
|
Dreams (Feat. Carmody).info.json
|
||||||
Intro (Feat. Racheal Ofori & Barney Artist).info.json
|
Hopeful (Feat. Jordan Rakei).info.json
|
||||||
No Peace (Feat. Tom Misch).info.json
|
Intro (Feat. Racheal Ofori & Barney Artist).info.json
|
||||||
Nocturne/01 - Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
No Peace (Feat. Tom Misch).info.json
|
||||||
|
Sunrise (Pillows) (Feat. Emmavie).info.json
|
||||||
|
What If (Interlude).info.json
|
||||||
|
{output_directory}/Nocturne
|
||||||
|
01 - Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 0:00 - 2:06
|
Segment: 0:00 - 2:06
|
||||||
|
|
@ -21,7 +25,7 @@ Nocturne/01 - Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||||
title: Intro (Feat. Racheal Ofori & Barney Artist)
|
title: Intro (Feat. Racheal Ofori & Barney Artist)
|
||||||
track: 1
|
track: 1
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 2:06 - 5:40
|
Segment: 2:06 - 5:40
|
||||||
|
|
@ -33,7 +37,7 @@ Nocturne/02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||||
title: Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
title: Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
||||||
track: 2
|
track: 2
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 5:40 - 8:11
|
Segment: 5:40 - 8:11
|
||||||
|
|
@ -45,7 +49,7 @@ Nocturne/03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||||
title: Blaze (Feat. Kaya Thomas - Dyke)
|
title: Blaze (Feat. Kaya Thomas - Dyke)
|
||||||
track: 3
|
track: 3
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/04 - What If (Interlude).mp3
|
04 - What If (Interlude).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 8:11 - 9:35
|
Segment: 8:11 - 9:35
|
||||||
|
|
@ -57,7 +61,7 @@ Nocturne/04 - What If (Interlude).mp3
|
||||||
title: What If (Interlude)
|
title: What If (Interlude)
|
||||||
track: 4
|
track: 4
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/05 - No Peace (Feat. Tom Misch).mp3
|
05 - No Peace (Feat. Tom Misch).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 9:35 - 13:19
|
Segment: 9:35 - 13:19
|
||||||
|
|
@ -69,7 +73,7 @@ Nocturne/05 - No Peace (Feat. Tom Misch).mp3
|
||||||
title: No Peace (Feat. Tom Misch)
|
title: No Peace (Feat. Tom Misch)
|
||||||
track: 5
|
track: 5
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/06 - Closer (Feat. Lester Duval).mp3
|
06 - Closer (Feat. Lester Duval).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 13:19 - 17:57
|
Segment: 13:19 - 17:57
|
||||||
|
|
@ -81,7 +85,7 @@ Nocturne/06 - Closer (Feat. Lester Duval).mp3
|
||||||
title: Closer (Feat. Lester Duval)
|
title: Closer (Feat. Lester Duval)
|
||||||
track: 6
|
track: 6
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 17:57 - 20:05
|
Segment: 17:57 - 20:05
|
||||||
|
|
@ -93,7 +97,7 @@ Nocturne/07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
title: Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
title: Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
||||||
track: 7
|
track: 7
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/08 - Dreams (Feat. Carmody).mp3
|
08 - Dreams (Feat. Carmody).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 20:05 - 23:58
|
Segment: 20:05 - 23:58
|
||||||
|
|
@ -105,7 +109,7 @@ Nocturne/08 - Dreams (Feat. Carmody).mp3
|
||||||
title: Dreams (Feat. Carmody)
|
title: Dreams (Feat. Carmody)
|
||||||
track: 8
|
track: 8
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 23:58 - 24:45
|
Segment: 23:58 - 24:45
|
||||||
|
|
@ -117,7 +121,7 @@ Nocturne/09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
title: Dreaming (Interlude) (Feat. Racheal Ofori)
|
title: Dreaming (Interlude) (Feat. Racheal Ofori)
|
||||||
track: 9
|
track: 9
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/10 - Hopeful (Feat. Jordan Rakei).mp3
|
10 - Hopeful (Feat. Jordan Rakei).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 24:45 - 28:53
|
Segment: 24:45 - 28:53
|
||||||
|
|
@ -129,7 +133,7 @@ Nocturne/10 - Hopeful (Feat. Jordan Rakei).mp3
|
||||||
title: Hopeful (Feat. Jordan Rakei)
|
title: Hopeful (Feat. Jordan Rakei)
|
||||||
track: 10
|
track: 10
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Segment: 28:53 - 31:43
|
Segment: 28:53 - 31:43
|
||||||
|
|
@ -141,6 +145,4 @@ Nocturne/11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||||
title: Sunrise (Pillows) (Feat. Emmavie)
|
title: Sunrise (Pillows) (Feat. Emmavie)
|
||||||
track: 11
|
track: 11
|
||||||
year: 2017
|
year: 2017
|
||||||
Nocturne/folder.jpg
|
folder.jpg
|
||||||
Sunrise (Pillows) (Feat. Emmavie).info.json
|
|
||||||
What If (Interlude).info.json
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
Files created in '{output_directory}'
|
Files created:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
Jesse's Minecraft Server [Trailer - Feb.1].info.json
|
{output_directory}
|
||||||
Jesse's Minecraft Server [Trailer - Feb.1].ogg
|
Jesse's Minecraft Server [Trailer - Feb.1].info.json
|
||||||
|
Jesse's Minecraft Server [Trailer - Feb.1].ogg
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Singles
|
album: Singles
|
||||||
albumartist: Project Zombie
|
albumartist: Project Zombie
|
||||||
|
|
@ -10,8 +11,8 @@ Jesse's Minecraft Server [Trailer - Feb.1].ogg
|
||||||
title: Jesse's Minecraft Server [Trailer - Feb.1]
|
title: Jesse's Minecraft Server [Trailer - Feb.1]
|
||||||
track: 3
|
track: 3
|
||||||
year: 2011
|
year: 2011
|
||||||
Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
||||||
Jesse's Minecraft Server [Trailer - Feb.27].ogg
|
Jesse's Minecraft Server [Trailer - Feb.27].ogg
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Singles
|
album: Singles
|
||||||
albumartist: Project Zombie
|
albumartist: Project Zombie
|
||||||
|
|
@ -20,8 +21,8 @@ Jesse's Minecraft Server [Trailer - Feb.27].ogg
|
||||||
title: Jesse's Minecraft Server [Trailer - Feb.27]
|
title: Jesse's Minecraft Server [Trailer - Feb.27]
|
||||||
track: 2
|
track: 2
|
||||||
year: 2011
|
year: 2011
|
||||||
Jesse's Minecraft Server [Trailer - Mar.21].info.json
|
Jesse's Minecraft Server [Trailer - Mar.21].info.json
|
||||||
Jesse's Minecraft Server [Trailer - Mar.21].ogg
|
Jesse's Minecraft Server [Trailer - Mar.21].ogg
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Singles
|
album: Singles
|
||||||
albumartist: Project Zombie
|
albumartist: Project Zombie
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
Files created in '{output_directory}'
|
Files created:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
YouTube Rewind 2019: For the Record | #YouTubeRewind.info.json
|
{output_directory}
|
||||||
YouTube Rewind 2019: For the Record | #YouTubeRewind.mp3
|
YouTube Rewind 2019: For the Record | #YouTubeRewind.info.json
|
||||||
|
YouTube Rewind 2019: For the Record | #YouTubeRewind.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Singles
|
album: Singles
|
||||||
albumartist: YouTube
|
albumartist: YouTube
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
Files created in '{output_directory}'
|
Files created:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case-thumb.jpg
|
{output_directory}
|
||||||
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.info.json
|
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case-thumb.jpg
|
||||||
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.mp4
|
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.info.json
|
||||||
|
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.mp4
|
||||||
Chapters embedded from timestamp file:
|
Chapters embedded from timestamp file:
|
||||||
0:00: Intro
|
0:00: Intro
|
||||||
0:10: Part 1
|
0:10: Part 1
|
||||||
|
|
@ -15,7 +16,7 @@ JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.mp4
|
||||||
description:
|
description:
|
||||||
🎸 / ' "
|
🎸 / ' "
|
||||||
newline?
|
newline?
|
||||||
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.nfo
|
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
musicvideo:
|
musicvideo:
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
Files created in '{output_directory}'
|
Files created:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case-thumb.jpg
|
{output_directory}
|
||||||
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.info.json
|
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case-thumb.jpg
|
||||||
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.mp4
|
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.info.json
|
||||||
|
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.mp4
|
||||||
Embedded Chapters:
|
Embedded Chapters:
|
||||||
Removed Chapter(s): Intro, Outro
|
Removed Chapter(s): Intro, Outro
|
||||||
Removed SponsorBlock Category Count(s):
|
Removed SponsorBlock Category Count(s):
|
||||||
|
|
@ -11,7 +12,7 @@ JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.mp4
|
||||||
Intermission/Intro Animation: 1
|
Intermission/Intro Animation: 1
|
||||||
Unpaid/Self Promotion: 1
|
Unpaid/Self Promotion: 1
|
||||||
Embedded subtitles with lang(s) en, de
|
Embedded subtitles with lang(s) en, de
|
||||||
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.nfo
|
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
musicvideo:
|
musicvideo:
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,11 @@
|
||||||
Files created in '{output_directory}'
|
Files created:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
.ytdl-sub-regex_capture_playlist_test-download-archive.json
|
{output_directory}
|
||||||
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.1]-thumb.jpg
|
.ytdl-sub-regex_capture_playlist_test-download-archive.json
|
||||||
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.1].info.json
|
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.1]-thumb.jpg
|
||||||
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.1].mp4
|
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.1].info.json
|
||||||
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.1].nfo
|
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.1].mp4
|
||||||
|
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.1].nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
musicvideo:
|
musicvideo:
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
|
|
@ -18,10 +19,10 @@ Project Zombie - Jesse's Minecraft Server [Trailer - Feb.1].nfo
|
||||||
title_cap_2: Feb.1
|
title_cap_2: Feb.1
|
||||||
upload_date_both_caps: First and Second containing in regex default
|
upload_date_both_caps: First and Second containing in regex default
|
||||||
year: 2011
|
year: 2011
|
||||||
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27]-thumb.jpg
|
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27]-thumb.jpg
|
||||||
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
||||||
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27].mp4
|
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27].mp4
|
||||||
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27].nfo
|
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27].nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
musicvideo:
|
musicvideo:
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,11 @@
|
||||||
Files created in '{output_directory}'
|
Files created:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind-thumb.jpg
|
{output_directory}
|
||||||
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.info.json
|
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind-thumb.jpg
|
||||||
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.mp4
|
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.info.json
|
||||||
|
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.mp4
|
||||||
Embedded subtitles with lang(s) en, de
|
Embedded subtitles with lang(s) en, de
|
||||||
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.nfo
|
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
musicvideo:
|
musicvideo:
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,13 @@
|
||||||
Files created in '{output_directory}'
|
Files created:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind-thumb.jpg
|
{output_directory}
|
||||||
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.de.srt
|
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind-thumb.jpg
|
||||||
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.en.srt
|
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.de.srt
|
||||||
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.info.json
|
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.en.srt
|
||||||
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.mp4
|
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.info.json
|
||||||
|
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.mp4
|
||||||
Embedded subtitles with lang(s) en, de
|
Embedded subtitles with lang(s) en, de
|
||||||
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.nfo
|
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
musicvideo:
|
musicvideo:
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,10 @@
|
||||||
Files created in '{output_directory}'
|
Files created:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
.ytdl-sub-jb-download-archive.json
|
{output_directory}
|
||||||
j_b/[2021] Baby Santana's Dorian Groove/01 - Baby Santana's Dorian Groove.info.json
|
.ytdl-sub-jb-download-archive.json
|
||||||
j_b/[2021] Baby Santana's Dorian Groove/01 - Baby Santana's Dorian Groove.mp3
|
{output_directory}/j_b/[2021] Baby Santana's Dorian Groove
|
||||||
|
01 - Baby Santana's Dorian Groove.info.json
|
||||||
|
01 - Baby Santana's Dorian Groove.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Baby Santana's Dorian Groove
|
album: Baby Santana's Dorian Groove
|
||||||
albumartist: j_b
|
albumartist: j_b
|
||||||
|
|
@ -11,9 +13,10 @@ j_b/[2021] Baby Santana's Dorian Groove/01 - Baby Santana's Dorian Groove.mp3
|
||||||
title: Baby Santana's Dorian Groove
|
title: Baby Santana's Dorian Groove
|
||||||
track: 1
|
track: 1
|
||||||
year: 2021
|
year: 2021
|
||||||
j_b/[2021] Baby Santana's Dorian Groove/folder.jpg
|
folder.jpg
|
||||||
j_b/[2021] Purple Clouds/01 - Purple Clouds.info.json
|
{output_directory}/j_b/[2021] Purple Clouds
|
||||||
j_b/[2021] Purple Clouds/01 - Purple Clouds.mp3
|
01 - Purple Clouds.info.json
|
||||||
|
01 - Purple Clouds.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Purple Clouds
|
album: Purple Clouds
|
||||||
albumartist: j_b
|
albumartist: j_b
|
||||||
|
|
@ -22,9 +25,10 @@ j_b/[2021] Purple Clouds/01 - Purple Clouds.mp3
|
||||||
title: Purple Clouds
|
title: Purple Clouds
|
||||||
track: 1
|
track: 1
|
||||||
year: 2021
|
year: 2021
|
||||||
j_b/[2021] Purple Clouds/folder.jpg
|
folder.jpg
|
||||||
j_b/[2022] Acoustic Treats/01 - 20160426 184214.info.json
|
{output_directory}/j_b/[2022] Acoustic Treats
|
||||||
j_b/[2022] Acoustic Treats/01 - 20160426 184214.mp3
|
01 - 20160426 184214.info.json
|
||||||
|
01 - 20160426 184214.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Acoustic Treats
|
album: Acoustic Treats
|
||||||
albumartist: j_b
|
albumartist: j_b
|
||||||
|
|
@ -33,8 +37,8 @@ j_b/[2022] Acoustic Treats/01 - 20160426 184214.mp3
|
||||||
title: 20160426 184214
|
title: 20160426 184214
|
||||||
track: 1
|
track: 1
|
||||||
year: 2022
|
year: 2022
|
||||||
j_b/[2022] Acoustic Treats/02 - 20160502 123150.info.json
|
02 - 20160502 123150.info.json
|
||||||
j_b/[2022] Acoustic Treats/02 - 20160502 123150.mp3
|
02 - 20160502 123150.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Acoustic Treats
|
album: Acoustic Treats
|
||||||
albumartist: j_b
|
albumartist: j_b
|
||||||
|
|
@ -43,8 +47,8 @@ j_b/[2022] Acoustic Treats/02 - 20160502 123150.mp3
|
||||||
title: 20160502 123150
|
title: 20160502 123150
|
||||||
track: 2
|
track: 2
|
||||||
year: 2022
|
year: 2022
|
||||||
j_b/[2022] Acoustic Treats/03 - 20160504 143832.info.json
|
03 - 20160504 143832.info.json
|
||||||
j_b/[2022] Acoustic Treats/03 - 20160504 143832.mp3
|
03 - 20160504 143832.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Acoustic Treats
|
album: Acoustic Treats
|
||||||
albumartist: j_b
|
albumartist: j_b
|
||||||
|
|
@ -53,8 +57,8 @@ j_b/[2022] Acoustic Treats/03 - 20160504 143832.mp3
|
||||||
title: 20160504 143832
|
title: 20160504 143832
|
||||||
track: 3
|
track: 3
|
||||||
year: 2022
|
year: 2022
|
||||||
j_b/[2022] Acoustic Treats/04 - 20160601 221234.info.json
|
04 - 20160601 221234.info.json
|
||||||
j_b/[2022] Acoustic Treats/04 - 20160601 221234.mp3
|
04 - 20160601 221234.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Acoustic Treats
|
album: Acoustic Treats
|
||||||
albumartist: j_b
|
albumartist: j_b
|
||||||
|
|
@ -63,8 +67,8 @@ j_b/[2022] Acoustic Treats/04 - 20160601 221234.mp3
|
||||||
title: 20160601 221234
|
title: 20160601 221234
|
||||||
track: 4
|
track: 4
|
||||||
year: 2022
|
year: 2022
|
||||||
j_b/[2022] Acoustic Treats/05 - 20160601 222440.info.json
|
05 - 20160601 222440.info.json
|
||||||
j_b/[2022] Acoustic Treats/05 - 20160601 222440.mp3
|
05 - 20160601 222440.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Acoustic Treats
|
album: Acoustic Treats
|
||||||
albumartist: j_b
|
albumartist: j_b
|
||||||
|
|
@ -73,8 +77,8 @@ j_b/[2022] Acoustic Treats/05 - 20160601 222440.mp3
|
||||||
title: 20160601 222440
|
title: 20160601 222440
|
||||||
track: 5
|
track: 5
|
||||||
year: 2022
|
year: 2022
|
||||||
j_b/[2022] Acoustic Treats/06 - 20170604 190236.info.json
|
06 - 20170604 190236.info.json
|
||||||
j_b/[2022] Acoustic Treats/06 - 20170604 190236.mp3
|
06 - 20170604 190236.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Acoustic Treats
|
album: Acoustic Treats
|
||||||
albumartist: j_b
|
albumartist: j_b
|
||||||
|
|
@ -83,8 +87,8 @@ j_b/[2022] Acoustic Treats/06 - 20170604 190236.mp3
|
||||||
title: 20170604 190236
|
title: 20170604 190236
|
||||||
track: 6
|
track: 6
|
||||||
year: 2022
|
year: 2022
|
||||||
j_b/[2022] Acoustic Treats/07 - 20170612 193646.info.json
|
07 - 20170612 193646.info.json
|
||||||
j_b/[2022] Acoustic Treats/07 - 20170612 193646.mp3
|
07 - 20170612 193646.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Acoustic Treats
|
album: Acoustic Treats
|
||||||
albumartist: j_b
|
albumartist: j_b
|
||||||
|
|
@ -93,8 +97,8 @@ j_b/[2022] Acoustic Treats/07 - 20170612 193646.mp3
|
||||||
title: 20170612 193646
|
title: 20170612 193646
|
||||||
track: 7
|
track: 7
|
||||||
year: 2022
|
year: 2022
|
||||||
j_b/[2022] Acoustic Treats/08 - 20170628 215206.info.json
|
08 - 20170628 215206.info.json
|
||||||
j_b/[2022] Acoustic Treats/08 - 20170628 215206.mp3
|
08 - 20170628 215206.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Acoustic Treats
|
album: Acoustic Treats
|
||||||
albumartist: j_b
|
albumartist: j_b
|
||||||
|
|
@ -103,8 +107,8 @@ j_b/[2022] Acoustic Treats/08 - 20170628 215206.mp3
|
||||||
title: 20170628 215206
|
title: 20170628 215206
|
||||||
track: 8
|
track: 8
|
||||||
year: 2022
|
year: 2022
|
||||||
j_b/[2022] Acoustic Treats/09 - Finding Home.info.json
|
09 - Finding Home.info.json
|
||||||
j_b/[2022] Acoustic Treats/09 - Finding Home.mp3
|
09 - Finding Home.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Acoustic Treats
|
album: Acoustic Treats
|
||||||
albumartist: j_b
|
albumartist: j_b
|
||||||
|
|
@ -113,8 +117,8 @@ j_b/[2022] Acoustic Treats/09 - Finding Home.mp3
|
||||||
title: Finding Home
|
title: Finding Home
|
||||||
track: 9
|
track: 9
|
||||||
year: 2022
|
year: 2022
|
||||||
j_b/[2022] Acoustic Treats/10 - Shallow Water WIP.info.json
|
10 - Shallow Water WIP.info.json
|
||||||
j_b/[2022] Acoustic Treats/10 - Shallow Water WIP.mp3
|
10 - Shallow Water WIP.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Acoustic Treats
|
album: Acoustic Treats
|
||||||
albumartist: j_b
|
albumartist: j_b
|
||||||
|
|
@ -123,8 +127,8 @@ j_b/[2022] Acoustic Treats/10 - Shallow Water WIP.mp3
|
||||||
title: Shallow Water WIP
|
title: Shallow Water WIP
|
||||||
track: 10
|
track: 10
|
||||||
year: 2022
|
year: 2022
|
||||||
j_b/[2022] Acoustic Treats/11 - Untold History.info.json
|
11 - Untold History.info.json
|
||||||
j_b/[2022] Acoustic Treats/11 - Untold History.mp3
|
11 - Untold History.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Acoustic Treats
|
album: Acoustic Treats
|
||||||
albumartist: j_b
|
albumartist: j_b
|
||||||
|
|
@ -133,4 +137,4 @@ j_b/[2022] Acoustic Treats/11 - Untold History.mp3
|
||||||
title: Untold History
|
title: Untold History
|
||||||
track: 11
|
track: 11
|
||||||
year: 2022
|
year: 2022
|
||||||
j_b/[2022] Acoustic Treats/folder.jpg
|
folder.jpg
|
||||||
|
|
@ -1,10 +1,20 @@
|
||||||
Files created in '{output_directory}'
|
Files created:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
.ytdl-sub-pz-download-archive.json
|
{output_directory}
|
||||||
Season 2010/s2010.e0813 - Oblivion Mod "Falcor" p.1-thumb.jpg
|
.ytdl-sub-pz-download-archive.json
|
||||||
Season 2010/s2010.e0813 - Oblivion Mod "Falcor" p.1.info.json
|
fanart.jpg
|
||||||
Season 2010/s2010.e0813 - Oblivion Mod "Falcor" p.1.mp4
|
poster.jpg
|
||||||
Season 2010/s2010.e0813 - Oblivion Mod "Falcor" p.1.nfo
|
tvshow.nfo
|
||||||
|
NFO tags:
|
||||||
|
tvshow:
|
||||||
|
plot: Plugin and map updates for the server Project Zombie.
|
||||||
|
source_uploader: Project Zombie
|
||||||
|
title: Project / Zombie
|
||||||
|
{output_directory}/Season 2010
|
||||||
|
s2010.e0813 - Oblivion Mod "Falcor" p.1-thumb.jpg
|
||||||
|
s2010.e0813 - Oblivion Mod "Falcor" p.1.info.json
|
||||||
|
s2010.e0813 - Oblivion Mod "Falcor" p.1.mp4
|
||||||
|
s2010.e0813 - Oblivion Mod "Falcor" p.1.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2010-08-13
|
aired: 2010-08-13
|
||||||
|
|
@ -21,10 +31,10 @@ Season 2010/s2010.e0813 - Oblivion Mod "Falcor" p.1.nfo
|
||||||
season: 2010
|
season: 2010
|
||||||
title: Oblivion Mod "Falcor" p.1
|
title: Oblivion Mod "Falcor" p.1
|
||||||
year: 2010
|
year: 2010
|
||||||
Season 2010/s2010.e1202 - Oblivion Mod "Falcor" p.2-thumb.jpg
|
s2010.e1202 - Oblivion Mod "Falcor" p.2-thumb.jpg
|
||||||
Season 2010/s2010.e1202 - Oblivion Mod "Falcor" p.2.info.json
|
s2010.e1202 - Oblivion Mod "Falcor" p.2.info.json
|
||||||
Season 2010/s2010.e1202 - Oblivion Mod "Falcor" p.2.mp4
|
s2010.e1202 - Oblivion Mod "Falcor" p.2.mp4
|
||||||
Season 2010/s2010.e1202 - Oblivion Mod "Falcor" p.2.nfo
|
s2010.e1202 - Oblivion Mod "Falcor" p.2.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2010-12-02
|
aired: 2010-12-02
|
||||||
|
|
@ -41,10 +51,11 @@ Season 2010/s2010.e1202 - Oblivion Mod "Falcor" p.2.nfo
|
||||||
season: 2010
|
season: 2010
|
||||||
title: Oblivion Mod "Falcor" p.2
|
title: Oblivion Mod "Falcor" p.2
|
||||||
year: 2010
|
year: 2010
|
||||||
Season 2011/s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1]-thumb.jpg
|
{output_directory}/Season 2011
|
||||||
Season 2011/s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].info.json
|
s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1]-thumb.jpg
|
||||||
Season 2011/s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].mp4
|
s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].info.json
|
||||||
Season 2011/s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].nfo
|
s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].mp4
|
||||||
|
s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2011-02-01
|
aired: 2011-02-01
|
||||||
|
|
@ -62,10 +73,10 @@ Season 2011/s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].nfo
|
||||||
season: 2011
|
season: 2011
|
||||||
title: Jesse's Minecraft Server [Trailer - Feb.1]
|
title: Jesse's Minecraft Server [Trailer - Feb.1]
|
||||||
year: 2011
|
year: 2011
|
||||||
Season 2011/s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27]-thumb.jpg
|
s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27]-thumb.jpg
|
||||||
Season 2011/s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
||||||
Season 2011/s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27].mp4
|
s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27].mp4
|
||||||
Season 2011/s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27].nfo
|
s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27].nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2011-02-27
|
aired: 2011-02-27
|
||||||
|
|
@ -102,10 +113,10 @@ Season 2011/s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27].nfo
|
||||||
season: 2011
|
season: 2011
|
||||||
title: Jesse's Minecraft Server [Trailer - Feb.27]
|
title: Jesse's Minecraft Server [Trailer - Feb.27]
|
||||||
year: 2011
|
year: 2011
|
||||||
Season 2011/s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21]-thumb.jpg
|
s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21]-thumb.jpg
|
||||||
Season 2011/s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21].info.json
|
s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21].info.json
|
||||||
Season 2011/s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21].mp4
|
s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21].mp4
|
||||||
Season 2011/s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21].nfo
|
s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21].nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2011-03-21
|
aired: 2011-03-21
|
||||||
|
|
@ -142,10 +153,10 @@ Season 2011/s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21].nfo
|
||||||
season: 2011
|
season: 2011
|
||||||
title: Jesse's Minecraft Server [Trailer - Mar.21]
|
title: Jesse's Minecraft Server [Trailer - Mar.21]
|
||||||
year: 2011
|
year: 2011
|
||||||
Season 2011/s2011.e0529 - Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net)-thumb.jpg
|
s2011.e0529 - Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net)-thumb.jpg
|
||||||
Season 2011/s2011.e0529 - Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net).info.json
|
s2011.e0529 - Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net).info.json
|
||||||
Season 2011/s2011.e0529 - Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net).mp4
|
s2011.e0529 - Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net).mp4
|
||||||
Season 2011/s2011.e0529 - Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net).nfo
|
s2011.e0529 - Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net).nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2011-05-29
|
aired: 2011-05-29
|
||||||
|
|
@ -172,10 +183,10 @@ Season 2011/s2011.e0529 - Project Zombie |Official Trailer| (IP: mc.projec
|
||||||
season: 2011
|
season: 2011
|
||||||
title: Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net)
|
title: Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net)
|
||||||
year: 2011
|
year: 2011
|
||||||
Season 2011/s2011.e0630 - Project Zombie |Fin|-thumb.jpg
|
s2011.e0630 - Project Zombie |Fin|-thumb.jpg
|
||||||
Season 2011/s2011.e0630 - Project Zombie |Fin|.info.json
|
s2011.e0630 - Project Zombie |Fin|.info.json
|
||||||
Season 2011/s2011.e0630 - Project Zombie |Fin|.mp4
|
s2011.e0630 - Project Zombie |Fin|.mp4
|
||||||
Season 2011/s2011.e0630 - Project Zombie |Fin|.nfo
|
s2011.e0630 - Project Zombie |Fin|.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2011-06-30
|
aired: 2011-06-30
|
||||||
|
|
@ -188,10 +199,10 @@ Season 2011/s2011.e0630 - Project Zombie |Fin|.nfo
|
||||||
season: 2011
|
season: 2011
|
||||||
title: Project Zombie |Fin|
|
title: Project Zombie |Fin|
|
||||||
year: 2011
|
year: 2011
|
||||||
Season 2011/s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC]-thumb.jpg
|
s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC]-thumb.jpg
|
||||||
Season 2011/s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC].info.json
|
s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC].info.json
|
||||||
Season 2011/s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC].mp4
|
s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC].mp4
|
||||||
Season 2011/s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC].nfo
|
s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC].nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2011-11-21
|
aired: 2011-11-21
|
||||||
|
|
@ -211,10 +222,11 @@ Season 2011/s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC].nfo
|
||||||
season: 2011
|
season: 2011
|
||||||
title: Skyrim 'Ultra HD w/Mods' [PC]
|
title: Skyrim 'Ultra HD w/Mods' [PC]
|
||||||
year: 2011
|
year: 2011
|
||||||
Season 2012/s2012.e0123 - Project Zombie |Map Trailer|-thumb.jpg
|
{output_directory}/Season 2012
|
||||||
Season 2012/s2012.e0123 - Project Zombie |Map Trailer|.info.json
|
s2012.e0123 - Project Zombie |Map Trailer|-thumb.jpg
|
||||||
Season 2012/s2012.e0123 - Project Zombie |Map Trailer|.mp4
|
s2012.e0123 - Project Zombie |Map Trailer|.info.json
|
||||||
Season 2012/s2012.e0123 - Project Zombie |Map Trailer|.nfo
|
s2012.e0123 - Project Zombie |Map Trailer|.mp4
|
||||||
|
s2012.e0123 - Project Zombie |Map Trailer|.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2012-01-23
|
aired: 2012-01-23
|
||||||
|
|
@ -234,10 +246,11 @@ Season 2012/s2012.e0123 - Project Zombie |Map Trailer|.nfo
|
||||||
season: 2012
|
season: 2012
|
||||||
title: Project Zombie |Map Trailer|
|
title: Project Zombie |Map Trailer|
|
||||||
year: 2012
|
year: 2012
|
||||||
Season 2013/s2013.e0719 - Project Zombie Rewind |Trailer|-thumb.jpg
|
{output_directory}/Season 2013
|
||||||
Season 2013/s2013.e0719 - Project Zombie Rewind |Trailer|.info.json
|
s2013.e0719 - Project Zombie Rewind |Trailer|-thumb.jpg
|
||||||
Season 2013/s2013.e0719 - Project Zombie Rewind |Trailer|.mp4
|
s2013.e0719 - Project Zombie Rewind |Trailer|.info.json
|
||||||
Season 2013/s2013.e0719 - Project Zombie Rewind |Trailer|.nfo
|
s2013.e0719 - Project Zombie Rewind |Trailer|.mp4
|
||||||
|
s2013.e0719 - Project Zombie Rewind |Trailer|.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2013-07-19
|
aired: 2013-07-19
|
||||||
|
|
@ -252,10 +265,11 @@ Season 2013/s2013.e0719 - Project Zombie Rewind |Trailer|.nfo
|
||||||
season: 2013
|
season: 2013
|
||||||
title: Project Zombie Rewind |Trailer|
|
title: Project Zombie Rewind |Trailer|
|
||||||
year: 2013
|
year: 2013
|
||||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer-thumb.jpg
|
{output_directory}/Season 2018
|
||||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.info.json
|
s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer-thumb.jpg
|
||||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.mp4
|
s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.info.json
|
||||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.nfo
|
s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.mp4
|
||||||
|
s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2018-10-29
|
aired: 2018-10-29
|
||||||
|
|
@ -275,11 +289,11 @@ Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.nfo
|
||||||
season: 2018
|
season: 2018
|
||||||
title: Jesse's Minecraft Server | Teaser Trailer
|
title: Jesse's Minecraft Server | Teaser Trailer
|
||||||
year: 2018
|
year: 2018
|
||||||
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id-thumb.jpg
|
s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id-thumb.jpg
|
||||||
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.en.srt
|
s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.en.srt
|
||||||
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.info.json
|
s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.info.json
|
||||||
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.mp4
|
s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.mp4
|
||||||
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.nfo
|
s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2018-11-02
|
aired: 2018-11-02
|
||||||
|
|
@ -302,11 +316,3 @@ Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.nfo
|
||||||
season: 2018
|
season: 2018
|
||||||
title: Jesse's Minecraft Server | IP mc.jesse.id
|
title: Jesse's Minecraft Server | IP mc.jesse.id
|
||||||
year: 2018
|
year: 2018
|
||||||
fanart.jpg
|
|
||||||
poster.jpg
|
|
||||||
tvshow.nfo
|
|
||||||
NFO tags:
|
|
||||||
tvshow:
|
|
||||||
plot: Plugin and map updates for the server Project Zombie.
|
|
||||||
source_uploader: Project Zombie
|
|
||||||
title: Project / Zombie
|
|
||||||
|
|
@ -1,13 +1,14 @@
|
||||||
Files created in '{output_directory}'
|
Files created:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
JMC - Jesse's Minecraft Server-thumb.jpg
|
{output_directory}
|
||||||
JMC - Jesse's Minecraft Server.info.json
|
JMC - Jesse's Minecraft Server-thumb.jpg
|
||||||
JMC - Jesse's Minecraft Server.mkv
|
JMC - Jesse's Minecraft Server.info.json
|
||||||
|
JMC - Jesse's Minecraft Server.mkv
|
||||||
Timestamps of playlist videos in the merged file:
|
Timestamps of playlist videos in the merged file:
|
||||||
0:00: Jesse's Minecraft Server [Trailer - Mar.21]
|
0:00: Jesse's Minecraft Server [Trailer - Mar.21]
|
||||||
5:00: Jesse's Minecraft Server [Trailer - Feb.27]
|
5:00: Jesse's Minecraft Server [Trailer - Feb.27]
|
||||||
9:00: Jesse's Minecraft Server [Trailer - Feb.1]
|
9:00: Jesse's Minecraft Server [Trailer - Feb.1]
|
||||||
JMC - Jesse's Minecraft Server.nfo
|
JMC - Jesse's Minecraft Server.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
musicvideo:
|
musicvideo:
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,11 @@
|
||||||
Files created in '{output_directory}'
|
Files created:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
.ytdl-sub-music_video_playlist_test-download-archive.json
|
{output_directory}
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Feb.1]-thumb.jpg
|
.ytdl-sub-music_video_playlist_test-download-archive.json
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Feb.1].info.json
|
JMC - Jesse's Minecraft Server [Trailer - Feb.1]-thumb.jpg
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Feb.1].mp4
|
JMC - Jesse's Minecraft Server [Trailer - Feb.1].info.json
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Feb.1].nfo
|
JMC - Jesse's Minecraft Server [Trailer - Feb.1].mp4
|
||||||
|
JMC - Jesse's Minecraft Server [Trailer - Feb.1].nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
musicvideo:
|
musicvideo:
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
|
|
@ -13,10 +14,10 @@ JMC - Jesse's Minecraft Server [Trailer - Feb.1].nfo
|
||||||
playlist_index: 3
|
playlist_index: 3
|
||||||
title: Jesse's Minecraft Server [Trailer - Feb.1]
|
title: Jesse's Minecraft Server [Trailer - Feb.1]
|
||||||
year: 2011
|
year: 2011
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Feb.27]-thumb.jpg
|
JMC - Jesse's Minecraft Server [Trailer - Feb.27]-thumb.jpg
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
JMC - Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Feb.27].mp4
|
JMC - Jesse's Minecraft Server [Trailer - Feb.27].mp4
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Feb.27].nfo
|
JMC - Jesse's Minecraft Server [Trailer - Feb.27].nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
musicvideo:
|
musicvideo:
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
|
|
@ -25,10 +26,10 @@ JMC - Jesse's Minecraft Server [Trailer - Feb.27].nfo
|
||||||
playlist_index: 2
|
playlist_index: 2
|
||||||
title: Jesse's Minecraft Server [Trailer - Feb.27]
|
title: Jesse's Minecraft Server [Trailer - Feb.27]
|
||||||
year: 2011
|
year: 2011
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Mar.21]-thumb.jpg
|
JMC - Jesse's Minecraft Server [Trailer - Mar.21]-thumb.jpg
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Mar.21].info.json
|
JMC - Jesse's Minecraft Server [Trailer - Mar.21].info.json
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Mar.21].mp4
|
JMC - Jesse's Minecraft Server [Trailer - Mar.21].mp4
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Mar.21].nfo
|
JMC - Jesse's Minecraft Server [Trailer - Mar.21].nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
musicvideo:
|
musicvideo:
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
|
|
@ -37,8 +38,8 @@ JMC - Jesse's Minecraft Server [Trailer - Mar.21].nfo
|
||||||
playlist_index: 1
|
playlist_index: 1
|
||||||
title: Jesse's Minecraft Server [Trailer - Mar.21]
|
title: Jesse's Minecraft Server [Trailer - Mar.21]
|
||||||
year: 2011
|
year: 2011
|
||||||
poster.jpg
|
poster.jpg
|
||||||
tvshow.nfo
|
tvshow.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
test:
|
test:
|
||||||
playlist_description: Trailers, Updates, etc
|
playlist_description: Trailers, Updates, etc
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,12 @@
|
||||||
Files created in '{output_directory}'
|
Files created:
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
JMC - Oblivion Mod "Falcor" p.1-thumb.jpg
|
{output_directory}
|
||||||
JMC - Oblivion Mod "Falcor" p.1.info.json
|
JMC - Oblivion Mod "Falcor" p.1-thumb.jpg
|
||||||
JMC - Oblivion Mod "Falcor" p.1.mp4
|
JMC - Oblivion Mod "Falcor" p.1.info.json
|
||||||
|
JMC - Oblivion Mod "Falcor" p.1.mp4
|
||||||
Video Tags:
|
Video Tags:
|
||||||
title: Oblivion Mod "Falcor" p.1
|
title: Oblivion Mod "Falcor" p.1
|
||||||
JMC - Oblivion Mod "Falcor" p.1.nfo
|
JMC - Oblivion Mod "Falcor" p.1.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
musicvideo:
|
musicvideo:
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue