[BACKEND] Separate directory files in transaction log
This commit is contained in:
parent
359731e1f3
commit
6c00c52199
22 changed files with 1522 additions and 1446 deletions
|
|
@ -2,6 +2,7 @@ import hashlib
|
|||
import json
|
||||
import os
|
||||
import shutil
|
||||
from collections import defaultdict
|
||||
from pathlib import Path
|
||||
from typing import Any
|
||||
from typing import Dict
|
||||
|
|
@ -221,6 +222,42 @@ class FileHandlerTransactionLog:
|
|||
self.files_removed.add(file_name)
|
||||
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:
|
||||
"""
|
||||
Parameters
|
||||
|
|
@ -234,38 +271,40 @@ class FileHandlerTransactionLog:
|
|||
"""
|
||||
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:
|
||||
created_line = f"Files created in '{output_directory}'"
|
||||
lines.extend([created_line, line_dash])
|
||||
for file_path, file_metadata in sorted(self.files_created.items()):
|
||||
lines.append(file_path)
|
||||
if file_metadata:
|
||||
lines.extend([_indent_metadata_line(line) for line in file_metadata.metadata])
|
||||
lines.extend(
|
||||
self._to_output_message(
|
||||
file_set_title="Files created:",
|
||||
file_set=self.files_created,
|
||||
output_directory=output_directory,
|
||||
)
|
||||
)
|
||||
|
||||
if self.files_modified:
|
||||
modified_line = f"Files modified in '{output_directory}'"
|
||||
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
|
||||
# Add a blank line to separate created files
|
||||
if self.files_created:
|
||||
lines.append("")
|
||||
|
||||
removed_line = f"Files removed from '{output_directory}'"
|
||||
lines.extend([removed_line, line_dash])
|
||||
for file_path in sorted(self.files_removed):
|
||||
lines.append(file_path)
|
||||
lines.extend(
|
||||
self._to_output_message(
|
||||
file_set_title="Files modified:",
|
||||
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:
|
||||
lines.append(f"No new, modified, or removed files in '{output_directory}'")
|
||||
|
|
|
|||
|
|
@ -1,10 +1,19 @@
|
|||
Files created in '{output_directory}'
|
||||
Files created:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
.ytdl-sub-recent-download-archive.json
|
||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer-thumb.jpg
|
||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.info.json
|
||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.mp4
|
||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.nfo
|
||||
fanart.jpg
|
||||
poster.jpg
|
||||
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:
|
||||
episodedetails:
|
||||
aired: 2018-10-29
|
||||
|
|
@ -22,11 +31,11 @@ Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.nfo
|
|||
season: 2018
|
||||
title: Jesse's Minecraft Server | Teaser Trailer
|
||||
year: 2018
|
||||
Season 2018/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
|
||||
Season 2018/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
|
||||
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.nfo
|
||||
s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id-thumb.jpg
|
||||
s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.en.srt
|
||||
s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.info.json
|
||||
s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.mp4
|
||||
s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.nfo
|
||||
NFO tags:
|
||||
episodedetails:
|
||||
aired: 2018-11-02
|
||||
|
|
@ -47,10 +56,3 @@ Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.nfo
|
|||
season: 2018
|
||||
title: Jesse's Minecraft Server | IP mc.jesse.id
|
||||
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:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
.ytdl-sub-recent-download-archive.json
|
||||
Files removed from '{output_directory}'
|
||||
|
||||
Files removed:
|
||||
----------------------------------------
|
||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer-thumb.jpg
|
||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.info.json
|
||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.mp4
|
||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.nfo
|
||||
{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
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
Files created in '{output_directory}'
|
||||
Files created:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
Rick Beato - Can you hear the difference? 🎸🔥 #shorts-thumb.jpg
|
||||
Rick Beato - Can you hear the difference? 🎸🔥 #shorts.info.json
|
||||
Rick Beato - Can you hear the difference? 🎸🔥 #shorts.mp4
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
Files created in '{output_directory}'
|
||||
Files created:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
Rick Beato - Can you hear the difference? 🎸🔥 #shorts-thumb.jpg
|
||||
Rick Beato - Can you hear the difference? 🎸🔥 #shorts.info.json
|
||||
Rick Beato - Can you hear the difference? 🎸🔥 #shorts.mp4
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
Files created in '{output_directory}'
|
||||
Files created:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
01. Intro (Feat. Racheal Ofori & Barney Artist).info.json
|
||||
02. Answers (Feat. Rick David & Kaya Thomas - Dyke).info.json
|
||||
03. Blaze (Feat. Kaya Thomas - Dyke).info.json
|
||||
|
|
@ -11,7 +12,8 @@ Files created in '{output_directory}'
|
|||
09. Dreaming (Interlude) (Feat. Racheal Ofori).info.json
|
||||
10. Hopeful (Feat. Jordan Rakei).info.json
|
||||
11. Sunrise (Pillows) (Feat. Emmavie).info.json
|
||||
Alfa Mist - Nocturne [Full Album]/01 - 01. Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||
{output_directory}/Alfa Mist - Nocturne [Full Album]
|
||||
01 - 01. Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
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)
|
||||
track: 1
|
||||
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:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
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)
|
||||
track: 2
|
||||
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:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
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)
|
||||
track: 3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/04 - 04. What If (Interlude).mp3
|
||||
04 - 04. What If (Interlude).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
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)
|
||||
track: 4
|
||||
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:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
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)
|
||||
track: 5
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/06 - 06. Closer (Feat. Lester Duval).mp3
|
||||
06 - 06. Closer (Feat. Lester Duval).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
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)
|
||||
track: 6
|
||||
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:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
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)
|
||||
track: 7
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/08 - 08. Dreams (Feat. Carmody).mp3
|
||||
08 - 08. Dreams (Feat. Carmody).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
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)
|
||||
track: 8
|
||||
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:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
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)
|
||||
track: 9
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/10 - 10. Hopeful (Feat. Jordan Rakei).mp3
|
||||
10 - 10. Hopeful (Feat. Jordan Rakei).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
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)
|
||||
track: 10
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||
11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
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)
|
||||
track: 11
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/folder.jpg
|
||||
folder.jpg
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
Files created in '{output_directory}'
|
||||
Files created:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
01. Intro (Feat. Racheal Ofori & Barney Artist).info.json
|
||||
02. Answers (Feat. Rick David & Kaya Thomas - Dyke).info.json
|
||||
03. Blaze (Feat. Kaya Thomas - Dyke).info.json
|
||||
|
|
@ -11,7 +12,8 @@ Files created in '{output_directory}'
|
|||
09. Dreaming (Interlude) (Feat. Racheal Ofori).info.json
|
||||
10. Hopeful (Feat. Jordan Rakei).info.json
|
||||
11. Sunrise (Pillows) (Feat. Emmavie).info.json
|
||||
Alfa Mist - Nocturne [Full Album]/01 - 01. Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||
{output_directory}/Alfa Mist - Nocturne [Full Album]
|
||||
01 - 01. Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
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)
|
||||
track: 1
|
||||
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:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
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)
|
||||
track: 2
|
||||
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:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
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)
|
||||
track: 3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/04 - 04. What If (Interlude).mp3
|
||||
04 - 04. What If (Interlude).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
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)
|
||||
track: 4
|
||||
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:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
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)
|
||||
track: 5
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/06 - 06. Closer (Feat. Lester Duval).mp3
|
||||
06 - 06. Closer (Feat. Lester Duval).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
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)
|
||||
track: 6
|
||||
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:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
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)
|
||||
track: 7
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/08 - 08. Dreams (Feat. Carmody).mp3
|
||||
08 - 08. Dreams (Feat. Carmody).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
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)
|
||||
track: 8
|
||||
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:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
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)
|
||||
track: 9
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/10 - 10. Hopeful (Feat. Jordan Rakei).mp3
|
||||
10 - 10. Hopeful (Feat. Jordan Rakei).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
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)
|
||||
track: 10
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||
11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
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)
|
||||
track: 11
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/folder.jpg
|
||||
folder.jpg
|
||||
|
|
@ -1,7 +1,9 @@
|
|||
Files created in '{output_directory}'
|
||||
Files created:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
Oblivion Mod "Falcor" p.1.info.json
|
||||
Oblivion Mod "Falcor" p.1/01 - Oblivion Mod "Falcor" p.1.mp3
|
||||
{output_directory}/Oblivion Mod "Falcor" p.1
|
||||
01 - Oblivion Mod "Falcor" p.1.mp3
|
||||
Music Tags:
|
||||
album: Oblivion Mod "Falcor" p.1
|
||||
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
|
||||
track: 1
|
||||
year: 2010
|
||||
Oblivion Mod "Falcor" p.1/folder.jpg
|
||||
folder.jpg
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
Files created in '{output_directory}'
|
||||
Files created:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
Answers (Feat. Rick David & Kaya Thomas - Dyke).info.json
|
||||
Blaze (Feat. Kaya Thomas - Dyke).info.json
|
||||
Closer (Feat. Lester Duval).info.json
|
||||
|
|
@ -9,7 +10,10 @@ Dreams (Feat. Carmody).info.json
|
|||
Hopeful (Feat. Jordan Rakei).info.json
|
||||
Intro (Feat. Racheal Ofori & Barney Artist).info.json
|
||||
No Peace (Feat. Tom Misch).info.json
|
||||
Nocturne/01 - Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||
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:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
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)
|
||||
track: 1
|
||||
year: 2017
|
||||
Nocturne/02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||
02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
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)
|
||||
track: 2
|
||||
year: 2017
|
||||
Nocturne/03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||
03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
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)
|
||||
track: 3
|
||||
year: 2017
|
||||
Nocturne/04 - What If (Interlude).mp3
|
||||
04 - What If (Interlude).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
|
|
@ -61,7 +65,7 @@ Nocturne/04 - What If (Interlude).mp3
|
|||
title: What If (Interlude)
|
||||
track: 4
|
||||
year: 2017
|
||||
Nocturne/05 - No Peace (Feat. Tom Misch).mp3
|
||||
05 - No Peace (Feat. Tom Misch).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
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)
|
||||
track: 5
|
||||
year: 2017
|
||||
Nocturne/06 - Closer (Feat. Lester Duval).mp3
|
||||
06 - Closer (Feat. Lester Duval).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
|
|
@ -87,7 +91,7 @@ Nocturne/06 - Closer (Feat. Lester Duval).mp3
|
|||
title: Closer (Feat. Lester Duval)
|
||||
track: 6
|
||||
year: 2017
|
||||
Nocturne/07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||
07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
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)
|
||||
track: 7
|
||||
year: 2017
|
||||
Nocturne/08 - Dreams (Feat. Carmody).mp3
|
||||
08 - Dreams (Feat. Carmody).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
|
|
@ -113,7 +117,7 @@ Nocturne/08 - Dreams (Feat. Carmody).mp3
|
|||
title: Dreams (Feat. Carmody)
|
||||
track: 8
|
||||
year: 2017
|
||||
Nocturne/09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||
09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
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)
|
||||
track: 9
|
||||
year: 2017
|
||||
Nocturne/10 - Hopeful (Feat. Jordan Rakei).mp3
|
||||
10 - Hopeful (Feat. Jordan Rakei).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
|
|
@ -139,7 +143,7 @@ Nocturne/10 - Hopeful (Feat. Jordan Rakei).mp3
|
|||
title: Hopeful (Feat. Jordan Rakei)
|
||||
track: 10
|
||||
year: 2017
|
||||
Nocturne/11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||
11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
|
|
@ -152,6 +156,4 @@ Nocturne/11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
|||
title: Sunrise (Pillows) (Feat. Emmavie)
|
||||
track: 11
|
||||
year: 2017
|
||||
Nocturne/folder.jpg
|
||||
Sunrise (Pillows) (Feat. Emmavie).info.json
|
||||
What If (Interlude).info.json
|
||||
folder.jpg
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
Files created in '{output_directory}'
|
||||
Files created:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
Answers (Feat. Rick David & Kaya Thomas - Dyke).info.json
|
||||
Blaze (Feat. Kaya Thomas - Dyke).info.json
|
||||
Closer (Feat. Lester Duval).info.json
|
||||
|
|
@ -9,7 +10,10 @@ Dreams (Feat. Carmody).info.json
|
|||
Hopeful (Feat. Jordan Rakei).info.json
|
||||
Intro (Feat. Racheal Ofori & Barney Artist).info.json
|
||||
No Peace (Feat. Tom Misch).info.json
|
||||
Nocturne/01 - Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||
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:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
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)
|
||||
track: 1
|
||||
year: 2017
|
||||
Nocturne/02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||
02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
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)
|
||||
track: 2
|
||||
year: 2017
|
||||
Nocturne/03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||
03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 5:40 - 8:11
|
||||
|
|
@ -45,7 +49,7 @@ Nocturne/03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
|||
title: Blaze (Feat. Kaya Thomas - Dyke)
|
||||
track: 3
|
||||
year: 2017
|
||||
Nocturne/04 - What If (Interlude).mp3
|
||||
04 - What If (Interlude).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 8:11 - 9:35
|
||||
|
|
@ -57,7 +61,7 @@ Nocturne/04 - What If (Interlude).mp3
|
|||
title: What If (Interlude)
|
||||
track: 4
|
||||
year: 2017
|
||||
Nocturne/05 - No Peace (Feat. Tom Misch).mp3
|
||||
05 - No Peace (Feat. Tom Misch).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 9:35 - 13:19
|
||||
|
|
@ -69,7 +73,7 @@ Nocturne/05 - No Peace (Feat. Tom Misch).mp3
|
|||
title: No Peace (Feat. Tom Misch)
|
||||
track: 5
|
||||
year: 2017
|
||||
Nocturne/06 - Closer (Feat. Lester Duval).mp3
|
||||
06 - Closer (Feat. Lester Duval).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 13:19 - 17:57
|
||||
|
|
@ -81,7 +85,7 @@ Nocturne/06 - Closer (Feat. Lester Duval).mp3
|
|||
title: Closer (Feat. Lester Duval)
|
||||
track: 6
|
||||
year: 2017
|
||||
Nocturne/07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||
07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
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)
|
||||
track: 7
|
||||
year: 2017
|
||||
Nocturne/08 - Dreams (Feat. Carmody).mp3
|
||||
08 - Dreams (Feat. Carmody).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 20:05 - 23:58
|
||||
|
|
@ -105,7 +109,7 @@ Nocturne/08 - Dreams (Feat. Carmody).mp3
|
|||
title: Dreams (Feat. Carmody)
|
||||
track: 8
|
||||
year: 2017
|
||||
Nocturne/09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||
09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 23:58 - 24:45
|
||||
|
|
@ -117,7 +121,7 @@ Nocturne/09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
|||
title: Dreaming (Interlude) (Feat. Racheal Ofori)
|
||||
track: 9
|
||||
year: 2017
|
||||
Nocturne/10 - Hopeful (Feat. Jordan Rakei).mp3
|
||||
10 - Hopeful (Feat. Jordan Rakei).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 24:45 - 28:53
|
||||
|
|
@ -129,7 +133,7 @@ Nocturne/10 - Hopeful (Feat. Jordan Rakei).mp3
|
|||
title: Hopeful (Feat. Jordan Rakei)
|
||||
track: 10
|
||||
year: 2017
|
||||
Nocturne/11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||
11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 28:53 - 31:43
|
||||
|
|
@ -141,6 +145,4 @@ Nocturne/11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
|||
title: Sunrise (Pillows) (Feat. Emmavie)
|
||||
track: 11
|
||||
year: 2017
|
||||
Nocturne/folder.jpg
|
||||
Sunrise (Pillows) (Feat. Emmavie).info.json
|
||||
What If (Interlude).info.json
|
||||
folder.jpg
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
Files created in '{output_directory}'
|
||||
Files created:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
Jesse's Minecraft Server [Trailer - Feb.1].info.json
|
||||
Jesse's Minecraft Server [Trailer - Feb.1].ogg
|
||||
Music Tags:
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
Files created in '{output_directory}'
|
||||
Files created:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
YouTube Rewind 2019: For the Record | #YouTubeRewind.info.json
|
||||
YouTube Rewind 2019: For the Record | #YouTubeRewind.mp3
|
||||
Music Tags:
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
Files created in '{output_directory}'
|
||||
Files created:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
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.info.json
|
||||
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.mp4
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
Files created in '{output_directory}'
|
||||
Files created:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
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.info.json
|
||||
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.mp4
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
Files created in '{output_directory}'
|
||||
Files created:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
.ytdl-sub-regex_capture_playlist_test-download-archive.json
|
||||
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.1]-thumb.jpg
|
||||
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.1].info.json
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
Files created in '{output_directory}'
|
||||
Files created:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind-thumb.jpg
|
||||
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.info.json
|
||||
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.mp4
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
Files created in '{output_directory}'
|
||||
Files created:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind-thumb.jpg
|
||||
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.de.srt
|
||||
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.en.srt
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
Files created in '{output_directory}'
|
||||
Files created:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
.ytdl-sub-jb-download-archive.json
|
||||
j_b/[2021] Baby Santana's Dorian Groove/01 - Baby Santana's Dorian Groove.info.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:
|
||||
album: Baby Santana's Dorian Groove
|
||||
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
|
||||
track: 1
|
||||
year: 2021
|
||||
j_b/[2021] Baby Santana's Dorian Groove/folder.jpg
|
||||
j_b/[2021] Purple Clouds/01 - Purple Clouds.info.json
|
||||
j_b/[2021] Purple Clouds/01 - Purple Clouds.mp3
|
||||
folder.jpg
|
||||
{output_directory}/j_b/[2021] Purple Clouds
|
||||
01 - Purple Clouds.info.json
|
||||
01 - Purple Clouds.mp3
|
||||
Music Tags:
|
||||
album: Purple Clouds
|
||||
albumartist: j_b
|
||||
|
|
@ -22,9 +25,10 @@ j_b/[2021] Purple Clouds/01 - Purple Clouds.mp3
|
|||
title: Purple Clouds
|
||||
track: 1
|
||||
year: 2021
|
||||
j_b/[2021] Purple Clouds/folder.jpg
|
||||
j_b/[2022] Acoustic Treats/01 - 20160426 184214.info.json
|
||||
j_b/[2022] Acoustic Treats/01 - 20160426 184214.mp3
|
||||
folder.jpg
|
||||
{output_directory}/j_b/[2022] Acoustic Treats
|
||||
01 - 20160426 184214.info.json
|
||||
01 - 20160426 184214.mp3
|
||||
Music Tags:
|
||||
album: Acoustic Treats
|
||||
albumartist: j_b
|
||||
|
|
@ -33,8 +37,8 @@ j_b/[2022] Acoustic Treats/01 - 20160426 184214.mp3
|
|||
title: 20160426 184214
|
||||
track: 1
|
||||
year: 2022
|
||||
j_b/[2022] Acoustic Treats/02 - 20160502 123150.info.json
|
||||
j_b/[2022] Acoustic Treats/02 - 20160502 123150.mp3
|
||||
02 - 20160502 123150.info.json
|
||||
02 - 20160502 123150.mp3
|
||||
Music Tags:
|
||||
album: Acoustic Treats
|
||||
albumartist: j_b
|
||||
|
|
@ -43,8 +47,8 @@ j_b/[2022] Acoustic Treats/02 - 20160502 123150.mp3
|
|||
title: 20160502 123150
|
||||
track: 2
|
||||
year: 2022
|
||||
j_b/[2022] Acoustic Treats/03 - 20160504 143832.info.json
|
||||
j_b/[2022] Acoustic Treats/03 - 20160504 143832.mp3
|
||||
03 - 20160504 143832.info.json
|
||||
03 - 20160504 143832.mp3
|
||||
Music Tags:
|
||||
album: Acoustic Treats
|
||||
albumartist: j_b
|
||||
|
|
@ -53,8 +57,8 @@ j_b/[2022] Acoustic Treats/03 - 20160504 143832.mp3
|
|||
title: 20160504 143832
|
||||
track: 3
|
||||
year: 2022
|
||||
j_b/[2022] Acoustic Treats/04 - 20160601 221234.info.json
|
||||
j_b/[2022] Acoustic Treats/04 - 20160601 221234.mp3
|
||||
04 - 20160601 221234.info.json
|
||||
04 - 20160601 221234.mp3
|
||||
Music Tags:
|
||||
album: Acoustic Treats
|
||||
albumartist: j_b
|
||||
|
|
@ -63,8 +67,8 @@ j_b/[2022] Acoustic Treats/04 - 20160601 221234.mp3
|
|||
title: 20160601 221234
|
||||
track: 4
|
||||
year: 2022
|
||||
j_b/[2022] Acoustic Treats/05 - 20160601 222440.info.json
|
||||
j_b/[2022] Acoustic Treats/05 - 20160601 222440.mp3
|
||||
05 - 20160601 222440.info.json
|
||||
05 - 20160601 222440.mp3
|
||||
Music Tags:
|
||||
album: Acoustic Treats
|
||||
albumartist: j_b
|
||||
|
|
@ -73,8 +77,8 @@ j_b/[2022] Acoustic Treats/05 - 20160601 222440.mp3
|
|||
title: 20160601 222440
|
||||
track: 5
|
||||
year: 2022
|
||||
j_b/[2022] Acoustic Treats/06 - 20170604 190236.info.json
|
||||
j_b/[2022] Acoustic Treats/06 - 20170604 190236.mp3
|
||||
06 - 20170604 190236.info.json
|
||||
06 - 20170604 190236.mp3
|
||||
Music Tags:
|
||||
album: Acoustic Treats
|
||||
albumartist: j_b
|
||||
|
|
@ -83,8 +87,8 @@ j_b/[2022] Acoustic Treats/06 - 20170604 190236.mp3
|
|||
title: 20170604 190236
|
||||
track: 6
|
||||
year: 2022
|
||||
j_b/[2022] Acoustic Treats/07 - 20170612 193646.info.json
|
||||
j_b/[2022] Acoustic Treats/07 - 20170612 193646.mp3
|
||||
07 - 20170612 193646.info.json
|
||||
07 - 20170612 193646.mp3
|
||||
Music Tags:
|
||||
album: Acoustic Treats
|
||||
albumartist: j_b
|
||||
|
|
@ -93,8 +97,8 @@ j_b/[2022] Acoustic Treats/07 - 20170612 193646.mp3
|
|||
title: 20170612 193646
|
||||
track: 7
|
||||
year: 2022
|
||||
j_b/[2022] Acoustic Treats/08 - 20170628 215206.info.json
|
||||
j_b/[2022] Acoustic Treats/08 - 20170628 215206.mp3
|
||||
08 - 20170628 215206.info.json
|
||||
08 - 20170628 215206.mp3
|
||||
Music Tags:
|
||||
album: Acoustic Treats
|
||||
albumartist: j_b
|
||||
|
|
@ -103,8 +107,8 @@ j_b/[2022] Acoustic Treats/08 - 20170628 215206.mp3
|
|||
title: 20170628 215206
|
||||
track: 8
|
||||
year: 2022
|
||||
j_b/[2022] Acoustic Treats/09 - Finding Home.info.json
|
||||
j_b/[2022] Acoustic Treats/09 - Finding Home.mp3
|
||||
09 - Finding Home.info.json
|
||||
09 - Finding Home.mp3
|
||||
Music Tags:
|
||||
album: Acoustic Treats
|
||||
albumartist: j_b
|
||||
|
|
@ -113,8 +117,8 @@ j_b/[2022] Acoustic Treats/09 - Finding Home.mp3
|
|||
title: Finding Home
|
||||
track: 9
|
||||
year: 2022
|
||||
j_b/[2022] Acoustic Treats/10 - Shallow Water WIP.info.json
|
||||
j_b/[2022] Acoustic Treats/10 - Shallow Water WIP.mp3
|
||||
10 - Shallow Water WIP.info.json
|
||||
10 - Shallow Water WIP.mp3
|
||||
Music Tags:
|
||||
album: Acoustic Treats
|
||||
albumartist: j_b
|
||||
|
|
@ -123,8 +127,8 @@ j_b/[2022] Acoustic Treats/10 - Shallow Water WIP.mp3
|
|||
title: Shallow Water WIP
|
||||
track: 10
|
||||
year: 2022
|
||||
j_b/[2022] Acoustic Treats/11 - Untold History.info.json
|
||||
j_b/[2022] Acoustic Treats/11 - Untold History.mp3
|
||||
11 - Untold History.info.json
|
||||
11 - Untold History.mp3
|
||||
Music Tags:
|
||||
album: Acoustic Treats
|
||||
albumartist: j_b
|
||||
|
|
@ -133,4 +137,4 @@ j_b/[2022] Acoustic Treats/11 - Untold History.mp3
|
|||
title: Untold History
|
||||
track: 11
|
||||
year: 2022
|
||||
j_b/[2022] Acoustic Treats/folder.jpg
|
||||
folder.jpg
|
||||
|
|
@ -1,10 +1,20 @@
|
|||
Files created in '{output_directory}'
|
||||
Files created:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
.ytdl-sub-pz-download-archive.json
|
||||
Season 2010/s2010.e0813 - Oblivion Mod "Falcor" p.1-thumb.jpg
|
||||
Season 2010/s2010.e0813 - Oblivion Mod "Falcor" p.1.info.json
|
||||
Season 2010/s2010.e0813 - Oblivion Mod "Falcor" p.1.mp4
|
||||
Season 2010/s2010.e0813 - Oblivion Mod "Falcor" p.1.nfo
|
||||
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
|
||||
{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:
|
||||
episodedetails:
|
||||
aired: 2010-08-13
|
||||
|
|
@ -21,10 +31,10 @@ Season 2010/s2010.e0813 - Oblivion Mod "Falcor" p.1.nfo
|
|||
season: 2010
|
||||
title: Oblivion Mod "Falcor" p.1
|
||||
year: 2010
|
||||
Season 2010/s2010.e1202 - Oblivion Mod "Falcor" p.2-thumb.jpg
|
||||
Season 2010/s2010.e1202 - Oblivion Mod "Falcor" p.2.info.json
|
||||
Season 2010/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-thumb.jpg
|
||||
s2010.e1202 - Oblivion Mod "Falcor" p.2.info.json
|
||||
s2010.e1202 - Oblivion Mod "Falcor" p.2.mp4
|
||||
s2010.e1202 - Oblivion Mod "Falcor" p.2.nfo
|
||||
NFO tags:
|
||||
episodedetails:
|
||||
aired: 2010-12-02
|
||||
|
|
@ -41,10 +51,11 @@ Season 2010/s2010.e1202 - Oblivion Mod "Falcor" p.2.nfo
|
|||
season: 2010
|
||||
title: Oblivion Mod "Falcor" p.2
|
||||
year: 2010
|
||||
Season 2011/s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1]-thumb.jpg
|
||||
Season 2011/s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].info.json
|
||||
Season 2011/s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].mp4
|
||||
Season 2011/s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].nfo
|
||||
{output_directory}/Season 2011
|
||||
s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1]-thumb.jpg
|
||||
s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].info.json
|
||||
s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].mp4
|
||||
s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].nfo
|
||||
NFO tags:
|
||||
episodedetails:
|
||||
aired: 2011-02-01
|
||||
|
|
@ -62,10 +73,10 @@ Season 2011/s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].nfo
|
|||
season: 2011
|
||||
title: Jesse's Minecraft Server [Trailer - Feb.1]
|
||||
year: 2011
|
||||
Season 2011/s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27]-thumb.jpg
|
||||
Season 2011/s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
||||
Season 2011/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]-thumb.jpg
|
||||
s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
||||
s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27].mp4
|
||||
s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27].nfo
|
||||
NFO tags:
|
||||
episodedetails:
|
||||
aired: 2011-02-27
|
||||
|
|
@ -102,10 +113,10 @@ Season 2011/s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27].nfo
|
|||
season: 2011
|
||||
title: Jesse's Minecraft Server [Trailer - Feb.27]
|
||||
year: 2011
|
||||
Season 2011/s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21]-thumb.jpg
|
||||
Season 2011/s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21].info.json
|
||||
Season 2011/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]-thumb.jpg
|
||||
s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21].info.json
|
||||
s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21].mp4
|
||||
s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21].nfo
|
||||
NFO tags:
|
||||
episodedetails:
|
||||
aired: 2011-03-21
|
||||
|
|
@ -142,10 +153,10 @@ Season 2011/s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21].nfo
|
|||
season: 2011
|
||||
title: Jesse's Minecraft Server [Trailer - Mar.21]
|
||||
year: 2011
|
||||
Season 2011/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
|
||||
Season 2011/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)-thumb.jpg
|
||||
s2011.e0529 - Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net).info.json
|
||||
s2011.e0529 - Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net).mp4
|
||||
s2011.e0529 - Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net).nfo
|
||||
NFO tags:
|
||||
episodedetails:
|
||||
aired: 2011-05-29
|
||||
|
|
@ -172,10 +183,10 @@ Season 2011/s2011.e0529 - Project Zombie |Official Trailer| (IP: mc.projec
|
|||
season: 2011
|
||||
title: Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net)
|
||||
year: 2011
|
||||
Season 2011/s2011.e0630 - Project Zombie |Fin|-thumb.jpg
|
||||
Season 2011/s2011.e0630 - Project Zombie |Fin|.info.json
|
||||
Season 2011/s2011.e0630 - Project Zombie |Fin|.mp4
|
||||
Season 2011/s2011.e0630 - Project Zombie |Fin|.nfo
|
||||
s2011.e0630 - Project Zombie |Fin|-thumb.jpg
|
||||
s2011.e0630 - Project Zombie |Fin|.info.json
|
||||
s2011.e0630 - Project Zombie |Fin|.mp4
|
||||
s2011.e0630 - Project Zombie |Fin|.nfo
|
||||
NFO tags:
|
||||
episodedetails:
|
||||
aired: 2011-06-30
|
||||
|
|
@ -188,10 +199,10 @@ Season 2011/s2011.e0630 - Project Zombie |Fin|.nfo
|
|||
season: 2011
|
||||
title: Project Zombie |Fin|
|
||||
year: 2011
|
||||
Season 2011/s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC]-thumb.jpg
|
||||
Season 2011/s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC].info.json
|
||||
Season 2011/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]-thumb.jpg
|
||||
s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC].info.json
|
||||
s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC].mp4
|
||||
s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC].nfo
|
||||
NFO tags:
|
||||
episodedetails:
|
||||
aired: 2011-11-21
|
||||
|
|
@ -211,10 +222,11 @@ Season 2011/s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC].nfo
|
|||
season: 2011
|
||||
title: Skyrim 'Ultra HD w/Mods' [PC]
|
||||
year: 2011
|
||||
Season 2012/s2012.e0123 - Project Zombie |Map Trailer|-thumb.jpg
|
||||
Season 2012/s2012.e0123 - Project Zombie |Map Trailer|.info.json
|
||||
Season 2012/s2012.e0123 - Project Zombie |Map Trailer|.mp4
|
||||
Season 2012/s2012.e0123 - Project Zombie |Map Trailer|.nfo
|
||||
{output_directory}/Season 2012
|
||||
s2012.e0123 - Project Zombie |Map Trailer|-thumb.jpg
|
||||
s2012.e0123 - Project Zombie |Map Trailer|.info.json
|
||||
s2012.e0123 - Project Zombie |Map Trailer|.mp4
|
||||
s2012.e0123 - Project Zombie |Map Trailer|.nfo
|
||||
NFO tags:
|
||||
episodedetails:
|
||||
aired: 2012-01-23
|
||||
|
|
@ -234,10 +246,11 @@ Season 2012/s2012.e0123 - Project Zombie |Map Trailer|.nfo
|
|||
season: 2012
|
||||
title: Project Zombie |Map Trailer|
|
||||
year: 2012
|
||||
Season 2013/s2013.e0719 - Project Zombie Rewind |Trailer|-thumb.jpg
|
||||
Season 2013/s2013.e0719 - Project Zombie Rewind |Trailer|.info.json
|
||||
Season 2013/s2013.e0719 - Project Zombie Rewind |Trailer|.mp4
|
||||
Season 2013/s2013.e0719 - Project Zombie Rewind |Trailer|.nfo
|
||||
{output_directory}/Season 2013
|
||||
s2013.e0719 - Project Zombie Rewind |Trailer|-thumb.jpg
|
||||
s2013.e0719 - Project Zombie Rewind |Trailer|.info.json
|
||||
s2013.e0719 - Project Zombie Rewind |Trailer|.mp4
|
||||
s2013.e0719 - Project Zombie Rewind |Trailer|.nfo
|
||||
NFO tags:
|
||||
episodedetails:
|
||||
aired: 2013-07-19
|
||||
|
|
@ -252,10 +265,11 @@ Season 2013/s2013.e0719 - Project Zombie Rewind |Trailer|.nfo
|
|||
season: 2013
|
||||
title: Project Zombie Rewind |Trailer|
|
||||
year: 2013
|
||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer-thumb.jpg
|
||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.info.json
|
||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.mp4
|
||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.nfo
|
||||
{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:
|
||||
episodedetails:
|
||||
aired: 2018-10-29
|
||||
|
|
@ -275,11 +289,11 @@ Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.nfo
|
|||
season: 2018
|
||||
title: Jesse's Minecraft Server | Teaser Trailer
|
||||
year: 2018
|
||||
Season 2018/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
|
||||
Season 2018/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
|
||||
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.nfo
|
||||
s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id-thumb.jpg
|
||||
s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.en.srt
|
||||
s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.info.json
|
||||
s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.mp4
|
||||
s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.nfo
|
||||
NFO tags:
|
||||
episodedetails:
|
||||
aired: 2018-11-02
|
||||
|
|
@ -302,11 +316,3 @@ Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.nfo
|
|||
season: 2018
|
||||
title: Jesse's Minecraft Server | IP mc.jesse.id
|
||||
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,5 +1,6 @@
|
|||
Files created in '{output_directory}'
|
||||
Files created:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
JMC - Jesse's Minecraft Server-thumb.jpg
|
||||
JMC - Jesse's Minecraft Server.info.json
|
||||
JMC - Jesse's Minecraft Server.mkv
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
Files created in '{output_directory}'
|
||||
Files created:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
.ytdl-sub-music_video_playlist_test-download-archive.json
|
||||
JMC - Jesse's Minecraft Server [Trailer - Feb.1]-thumb.jpg
|
||||
JMC - Jesse's Minecraft Server [Trailer - Feb.1].info.json
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
Files created in '{output_directory}'
|
||||
Files created:
|
||||
----------------------------------------
|
||||
{output_directory}
|
||||
JMC - Oblivion Mod "Falcor" p.1-thumb.jpg
|
||||
JMC - Oblivion Mod "Falcor" p.1.info.json
|
||||
JMC - Oblivion Mod "Falcor" p.1.mp4
|
||||
|
|
|
|||
Loading…
Reference in a new issue