[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,56 +1,58 @@
|
||||||
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:
|
NFO tags:
|
||||||
episodedetails:
|
tvshow:
|
||||||
aired: 2018-10-29
|
plot: Plugin and map updates for the server Project Zombie.
|
||||||
episode: 1029
|
title: Project / Zombie
|
||||||
plot:
|
{output_directory}/Season 2018
|
||||||
See the full trailer here: https://youtu.be/LN2e6idGluI
|
s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer-thumb.jpg
|
||||||
Discord: https://discord.gg/BQN7SSe
|
s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.info.json
|
||||||
Website: https://www.projectzombie.net/
|
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
|
||||||
|
episode: 1029
|
||||||
|
plot:
|
||||||
|
See the full trailer here: https://youtu.be/LN2e6idGluI
|
||||||
|
Discord: https://discord.gg/BQN7SSe
|
||||||
|
Website: https://www.projectzombie.net/
|
||||||
|
|
||||||
It has been about six years since the glory days of the original RP server. Hope to see many familiar faces in the revival of our great server.
|
It has been about six years since the glory days of the original RP server. Hope to see many familiar faces in the revival of our great server.
|
||||||
|
|
||||||
Credits:
|
Credits:
|
||||||
ALISON - Space Echo
|
ALISON - Space Echo
|
||||||
https://www.youtube.com/watch?v=lPldcjlv3_Y
|
https://www.youtube.com/watch?v=lPldcjlv3_Y
|
||||||
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
|
||||||
episode: 1102
|
episode: 1102
|
||||||
plot:
|
plot:
|
||||||
IP: mc.jesse.id
|
IP: mc.jesse.id
|
||||||
Live Map: http://mc.jesse.id:8123
|
Live Map: http://mc.jesse.id:8123
|
||||||
Discord: https://discord.gg/BQN7SSe
|
Discord: https://discord.gg/BQN7SSe
|
||||||
Website: https://www.projectzombie.net/
|
Website: https://www.projectzombie.net/
|
||||||
|
|
||||||
It has been about six years since the glory days of the original RP server. Hope to see many familiar faces in the revival of our great server.
|
It has been about six years since the glory days of the original RP server. Hope to see many familiar faces in the revival of our great server.
|
||||||
|
|
||||||
The MC version is 1.13.x AND/OR 1.12.x
|
The MC version is 1.13.x AND/OR 1.12.x
|
||||||
|
|
||||||
Credits:
|
Credits:
|
||||||
ALISON - Space Echo
|
ALISON - Space Echo
|
||||||
https://www.youtube.com/watch?v=lPldcjlv3_Y
|
https://www.youtube.com/watch?v=lPldcjlv3_Y
|
||||||
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,73 +1,74 @@
|
||||||
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
|
||||||
NFO tags:
|
Rick Beato - Can you hear the difference? 🎸🔥 #shorts.nfo
|
||||||
musicvideo:
|
NFO tags:
|
||||||
album: Music Videos
|
musicvideo:
|
||||||
artist: Rick Beato
|
album: Music Videos
|
||||||
kodi_safe_multi_title 🎸:
|
artist: Rick Beato
|
||||||
- value 1 🎸
|
kodi_safe_multi_title 🎸:
|
||||||
- value 2 🎸
|
- value 1 🎸
|
||||||
kodi_safe_multi_title_with_attrs:
|
- value 2 🎸
|
||||||
-
|
kodi_safe_multi_title_with_attrs:
|
||||||
|
-
|
||||||
|
attributes:
|
||||||
|
🎸?:
|
||||||
|
value
|
||||||
|
newlines 🎸
|
||||||
|
tag:
|
||||||
|
the
|
||||||
|
tag 1 🎸🎸
|
||||||
|
-
|
||||||
|
attributes:
|
||||||
|
🎸?:
|
||||||
|
value
|
||||||
|
newlines 🎸
|
||||||
|
tag:
|
||||||
|
the
|
||||||
|
tag 2 🎸🎸
|
||||||
|
kodi_safe_title 🎸: kodi_safe_value 🎸
|
||||||
|
kodi_safe_title_with_attrs:
|
||||||
attributes:
|
attributes:
|
||||||
🎸?:
|
🎸?:
|
||||||
value
|
value
|
||||||
newlines 🎸
|
newlines 🎸
|
||||||
tag:
|
tag:
|
||||||
the
|
the
|
||||||
tag 1 🎸🎸
|
tag 🎸🎸
|
||||||
-
|
title: Can you hear the difference? 🎸🔥 #shorts
|
||||||
|
year: 2022
|
||||||
|
test.nfo
|
||||||
|
NFO tags:
|
||||||
|
kodi_safe_root 🎸:
|
||||||
|
kodi_safe_multi_title 🎸:
|
||||||
|
- value 1 🎸
|
||||||
|
- value 2 🎸
|
||||||
|
kodi_safe_multi_title_with_attrs:
|
||||||
|
-
|
||||||
|
attributes:
|
||||||
|
🎸?:
|
||||||
|
value
|
||||||
|
newlines 🎸
|
||||||
|
tag:
|
||||||
|
the
|
||||||
|
tag 1 🎸🎸
|
||||||
|
-
|
||||||
|
attributes:
|
||||||
|
🎸?:
|
||||||
|
value
|
||||||
|
newlines 🎸
|
||||||
|
tag:
|
||||||
|
the
|
||||||
|
tag 2 🎸🎸
|
||||||
|
kodi_safe_title 🎸: kodi_safe_value 🎸
|
||||||
|
kodi_safe_title_with_attrs:
|
||||||
attributes:
|
attributes:
|
||||||
🎸?:
|
🎸?:
|
||||||
value
|
value
|
||||||
newlines 🎸
|
newlines 🎸
|
||||||
tag:
|
tag:
|
||||||
the
|
the
|
||||||
tag 2 🎸🎸
|
tag 🎸🎸
|
||||||
kodi_safe_title 🎸: kodi_safe_value 🎸
|
|
||||||
kodi_safe_title_with_attrs:
|
|
||||||
attributes:
|
|
||||||
🎸?:
|
|
||||||
value
|
|
||||||
newlines 🎸
|
|
||||||
tag:
|
|
||||||
the
|
|
||||||
tag 🎸🎸
|
|
||||||
title: Can you hear the difference? 🎸🔥 #shorts
|
|
||||||
year: 2022
|
|
||||||
test.nfo
|
|
||||||
NFO tags:
|
|
||||||
kodi_safe_root 🎸:
|
|
||||||
kodi_safe_multi_title 🎸:
|
|
||||||
- value 1 🎸
|
|
||||||
- value 2 🎸
|
|
||||||
kodi_safe_multi_title_with_attrs:
|
|
||||||
-
|
|
||||||
attributes:
|
|
||||||
🎸?:
|
|
||||||
value
|
|
||||||
newlines 🎸
|
|
||||||
tag:
|
|
||||||
the
|
|
||||||
tag 1 🎸🎸
|
|
||||||
-
|
|
||||||
attributes:
|
|
||||||
🎸?:
|
|
||||||
value
|
|
||||||
newlines 🎸
|
|
||||||
tag:
|
|
||||||
the
|
|
||||||
tag 2 🎸🎸
|
|
||||||
kodi_safe_title 🎸: kodi_safe_value 🎸
|
|
||||||
kodi_safe_title_with_attrs:
|
|
||||||
attributes:
|
|
||||||
🎸?:
|
|
||||||
value
|
|
||||||
newlines 🎸
|
|
||||||
tag:
|
|
||||||
the
|
|
||||||
tag 🎸🎸
|
|
||||||
|
|
@ -1,73 +1,74 @@
|
||||||
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
|
||||||
NFO tags:
|
Rick Beato - Can you hear the difference? 🎸🔥 #shorts.nfo
|
||||||
musicvideo:
|
NFO tags:
|
||||||
album: Music Videos
|
musicvideo:
|
||||||
artist: Rick Beato
|
album: Music Videos
|
||||||
kodi_safe_multi_title □:
|
artist: Rick Beato
|
||||||
- value 1 □
|
kodi_safe_multi_title □:
|
||||||
- value 2 □
|
- value 1 □
|
||||||
kodi_safe_multi_title_with_attrs:
|
- value 2 □
|
||||||
-
|
kodi_safe_multi_title_with_attrs:
|
||||||
|
-
|
||||||
|
attributes:
|
||||||
|
□?:
|
||||||
|
value
|
||||||
|
newlines □
|
||||||
|
tag:
|
||||||
|
the
|
||||||
|
tag 1 □□
|
||||||
|
-
|
||||||
|
attributes:
|
||||||
|
□?:
|
||||||
|
value
|
||||||
|
newlines □
|
||||||
|
tag:
|
||||||
|
the
|
||||||
|
tag 2 □□
|
||||||
|
kodi_safe_title □: kodi_safe_value □
|
||||||
|
kodi_safe_title_with_attrs:
|
||||||
attributes:
|
attributes:
|
||||||
□?:
|
□?:
|
||||||
value
|
value
|
||||||
newlines □
|
newlines □
|
||||||
tag:
|
tag:
|
||||||
the
|
the
|
||||||
tag 1 □□
|
tag □□
|
||||||
-
|
title: Can you hear the difference? □□ #shorts
|
||||||
|
year: 2022
|
||||||
|
test.nfo
|
||||||
|
NFO tags:
|
||||||
|
kodi_safe_root □:
|
||||||
|
kodi_safe_multi_title □:
|
||||||
|
- value 1 □
|
||||||
|
- value 2 □
|
||||||
|
kodi_safe_multi_title_with_attrs:
|
||||||
|
-
|
||||||
|
attributes:
|
||||||
|
□?:
|
||||||
|
value
|
||||||
|
newlines □
|
||||||
|
tag:
|
||||||
|
the
|
||||||
|
tag 1 □□
|
||||||
|
-
|
||||||
|
attributes:
|
||||||
|
□?:
|
||||||
|
value
|
||||||
|
newlines □
|
||||||
|
tag:
|
||||||
|
the
|
||||||
|
tag 2 □□
|
||||||
|
kodi_safe_title □: kodi_safe_value □
|
||||||
|
kodi_safe_title_with_attrs:
|
||||||
attributes:
|
attributes:
|
||||||
□?:
|
□?:
|
||||||
value
|
value
|
||||||
newlines □
|
newlines □
|
||||||
tag:
|
tag:
|
||||||
the
|
the
|
||||||
tag 2 □□
|
tag □□
|
||||||
kodi_safe_title □: kodi_safe_value □
|
|
||||||
kodi_safe_title_with_attrs:
|
|
||||||
attributes:
|
|
||||||
□?:
|
|
||||||
value
|
|
||||||
newlines □
|
|
||||||
tag:
|
|
||||||
the
|
|
||||||
tag □□
|
|
||||||
title: Can you hear the difference? □□ #shorts
|
|
||||||
year: 2022
|
|
||||||
test.nfo
|
|
||||||
NFO tags:
|
|
||||||
kodi_safe_root □:
|
|
||||||
kodi_safe_multi_title □:
|
|
||||||
- value 1 □
|
|
||||||
- value 2 □
|
|
||||||
kodi_safe_multi_title_with_attrs:
|
|
||||||
-
|
|
||||||
attributes:
|
|
||||||
□?:
|
|
||||||
value
|
|
||||||
newlines □
|
|
||||||
tag:
|
|
||||||
the
|
|
||||||
tag 1 □□
|
|
||||||
-
|
|
||||||
attributes:
|
|
||||||
□?:
|
|
||||||
value
|
|
||||||
newlines □
|
|
||||||
tag:
|
|
||||||
the
|
|
||||||
tag 2 □□
|
|
||||||
kodi_safe_title □: kodi_safe_value □
|
|
||||||
kodi_safe_title_with_attrs:
|
|
||||||
attributes:
|
|
||||||
□?:
|
|
||||||
value
|
|
||||||
newlines □
|
|
||||||
tag:
|
|
||||||
the
|
|
||||||
tag □□
|
|
||||||
|
|
@ -1,157 +1,159 @@
|
||||||
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
|
||||||
From Chapter Split:
|
{output_directory}/Alfa Mist - Nocturne [Full Album]
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
01 - 01. Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
From Chapter Split:
|
||||||
Segment: 0:00 - 2:06
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 0:00 - 2:06
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 01. Intro (Feat. Racheal Ofori & Barney Artist)
|
artist: Proved Records
|
||||||
track: 1
|
genre: Unset
|
||||||
year: 2017
|
title: 01. Intro (Feat. Racheal Ofori & Barney Artist)
|
||||||
Alfa Mist - Nocturne [Full Album]/02 - 02. Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
track: 1
|
||||||
From Chapter Split:
|
year: 2017
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
02 - 02. Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
From Chapter Split:
|
||||||
Segment: 2:06 - 5:40
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 2:06 - 5:40
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 02. Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
artist: Proved Records
|
||||||
track: 2
|
genre: Unset
|
||||||
year: 2017
|
title: 02. Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
||||||
Alfa Mist - Nocturne [Full Album]/03 - 03. Blaze (Feat. Kaya Thomas - Dyke).mp3
|
track: 2
|
||||||
From Chapter Split:
|
year: 2017
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
03 - 03. Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
From Chapter Split:
|
||||||
Segment: 5:40 - 8:11
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 5:40 - 8:11
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 03. Blaze (Feat. Kaya Thomas - Dyke)
|
artist: Proved Records
|
||||||
track: 3
|
genre: Unset
|
||||||
year: 2017
|
title: 03. Blaze (Feat. Kaya Thomas - Dyke)
|
||||||
Alfa Mist - Nocturne [Full Album]/04 - 04. What If (Interlude).mp3
|
track: 3
|
||||||
From Chapter Split:
|
year: 2017
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
04 - 04. What If (Interlude).mp3
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
From Chapter Split:
|
||||||
Segment: 8:11 - 9:35
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 8:11 - 9:35
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 04. What If (Interlude)
|
artist: Proved Records
|
||||||
track: 4
|
genre: Unset
|
||||||
year: 2017
|
title: 04. What If (Interlude)
|
||||||
Alfa Mist - Nocturne [Full Album]/05 - 05. No Peace (Feat. Tom Misch).mp3
|
track: 4
|
||||||
From Chapter Split:
|
year: 2017
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
05 - 05. No Peace (Feat. Tom Misch).mp3
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
From Chapter Split:
|
||||||
Segment: 9:35 - 13:19
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 9:35 - 13:19
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 05. No Peace (Feat. Tom Misch)
|
artist: Proved Records
|
||||||
track: 5
|
genre: Unset
|
||||||
year: 2017
|
title: 05. No Peace (Feat. Tom Misch)
|
||||||
Alfa Mist - Nocturne [Full Album]/06 - 06. Closer (Feat. Lester Duval).mp3
|
track: 5
|
||||||
From Chapter Split:
|
year: 2017
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
06 - 06. Closer (Feat. Lester Duval).mp3
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
From Chapter Split:
|
||||||
Segment: 13:19 - 17:57
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 13:19 - 17:57
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 06. Closer (Feat. Lester Duval)
|
artist: Proved Records
|
||||||
track: 6
|
genre: Unset
|
||||||
year: 2017
|
title: 06. Closer (Feat. Lester Duval)
|
||||||
Alfa Mist - Nocturne [Full Album]/07 - 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
track: 6
|
||||||
From Chapter Split:
|
year: 2017
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
07 - 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
From Chapter Split:
|
||||||
Segment: 17:57 - 20:05
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 17:57 - 20:05
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
artist: Proved Records
|
||||||
track: 7
|
genre: Unset
|
||||||
year: 2017
|
title: 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
||||||
Alfa Mist - Nocturne [Full Album]/08 - 08. Dreams (Feat. Carmody).mp3
|
track: 7
|
||||||
From Chapter Split:
|
year: 2017
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
08 - 08. Dreams (Feat. Carmody).mp3
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
From Chapter Split:
|
||||||
Segment: 20:05 - 23:58
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 20:05 - 23:58
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 08. Dreams (Feat. Carmody)
|
artist: Proved Records
|
||||||
track: 8
|
genre: Unset
|
||||||
year: 2017
|
title: 08. Dreams (Feat. Carmody)
|
||||||
Alfa Mist - Nocturne [Full Album]/09 - 09. Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
track: 8
|
||||||
From Chapter Split:
|
year: 2017
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
09 - 09. Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
From Chapter Split:
|
||||||
Segment: 23:58 - 24:45
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 23:58 - 24:45
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 09. Dreaming (Interlude) (Feat. Racheal Ofori)
|
artist: Proved Records
|
||||||
track: 9
|
genre: Unset
|
||||||
year: 2017
|
title: 09. Dreaming (Interlude) (Feat. Racheal Ofori)
|
||||||
Alfa Mist - Nocturne [Full Album]/10 - 10. Hopeful (Feat. Jordan Rakei).mp3
|
track: 9
|
||||||
From Chapter Split:
|
year: 2017
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
10 - 10. Hopeful (Feat. Jordan Rakei).mp3
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
From Chapter Split:
|
||||||
Segment: 24:45 - 28:53
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 24:45 - 28:53
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 10. Hopeful (Feat. Jordan Rakei)
|
artist: Proved Records
|
||||||
track: 10
|
genre: Unset
|
||||||
year: 2017
|
title: 10. Hopeful (Feat. Jordan Rakei)
|
||||||
Alfa Mist - Nocturne [Full Album]/11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3
|
track: 10
|
||||||
From Chapter Split:
|
year: 2017
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
From Chapter Split:
|
||||||
Segment: 28:53 - 31:43
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 28:53 - 31:43
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 11. Sunrise (Pillows) (Feat. Emmavie)
|
artist: Proved Records
|
||||||
track: 11
|
genre: Unset
|
||||||
year: 2017
|
title: 11. Sunrise (Pillows) (Feat. Emmavie)
|
||||||
Alfa Mist - Nocturne [Full Album]/folder.jpg
|
track: 11
|
||||||
|
year: 2017
|
||||||
|
folder.jpg
|
||||||
|
|
@ -1,146 +1,148 @@
|
||||||
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
|
||||||
From Chapter Split:
|
{output_directory}/Alfa Mist - Nocturne [Full Album]
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
01 - 01. Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||||
Segment: 0:00 - 2:06
|
From Chapter Split:
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 0:00 - 2:06
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 01. Intro (Feat. Racheal Ofori & Barney Artist)
|
artist: Proved Records
|
||||||
track: 1
|
genre: Unset
|
||||||
year: 2017
|
title: 01. Intro (Feat. Racheal Ofori & Barney Artist)
|
||||||
Alfa Mist - Nocturne [Full Album]/02 - 02. Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
track: 1
|
||||||
From Chapter Split:
|
year: 2017
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
02 - 02. Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||||
Segment: 2:06 - 5:40
|
From Chapter Split:
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 2:06 - 5:40
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 02. Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
artist: Proved Records
|
||||||
track: 2
|
genre: Unset
|
||||||
year: 2017
|
title: 02. Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
||||||
Alfa Mist - Nocturne [Full Album]/03 - 03. Blaze (Feat. Kaya Thomas - Dyke).mp3
|
track: 2
|
||||||
From Chapter Split:
|
year: 2017
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
03 - 03. Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||||
Segment: 5:40 - 8:11
|
From Chapter Split:
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 5:40 - 8:11
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 03. Blaze (Feat. Kaya Thomas - Dyke)
|
artist: Proved Records
|
||||||
track: 3
|
genre: Unset
|
||||||
year: 2017
|
title: 03. Blaze (Feat. Kaya Thomas - Dyke)
|
||||||
Alfa Mist - Nocturne [Full Album]/04 - 04. What If (Interlude).mp3
|
track: 3
|
||||||
From Chapter Split:
|
year: 2017
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
04 - 04. What If (Interlude).mp3
|
||||||
Segment: 8:11 - 9:35
|
From Chapter Split:
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 8:11 - 9:35
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 04. What If (Interlude)
|
artist: Proved Records
|
||||||
track: 4
|
genre: Unset
|
||||||
year: 2017
|
title: 04. What If (Interlude)
|
||||||
Alfa Mist - Nocturne [Full Album]/05 - 05. No Peace (Feat. Tom Misch).mp3
|
track: 4
|
||||||
From Chapter Split:
|
year: 2017
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
05 - 05. No Peace (Feat. Tom Misch).mp3
|
||||||
Segment: 9:35 - 13:19
|
From Chapter Split:
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 9:35 - 13:19
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 05. No Peace (Feat. Tom Misch)
|
artist: Proved Records
|
||||||
track: 5
|
genre: Unset
|
||||||
year: 2017
|
title: 05. No Peace (Feat. Tom Misch)
|
||||||
Alfa Mist - Nocturne [Full Album]/06 - 06. Closer (Feat. Lester Duval).mp3
|
track: 5
|
||||||
From Chapter Split:
|
year: 2017
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
06 - 06. Closer (Feat. Lester Duval).mp3
|
||||||
Segment: 13:19 - 17:57
|
From Chapter Split:
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 13:19 - 17:57
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 06. Closer (Feat. Lester Duval)
|
artist: Proved Records
|
||||||
track: 6
|
genre: Unset
|
||||||
year: 2017
|
title: 06. Closer (Feat. Lester Duval)
|
||||||
Alfa Mist - Nocturne [Full Album]/07 - 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
track: 6
|
||||||
From Chapter Split:
|
year: 2017
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
07 - 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
Segment: 17:57 - 20:05
|
From Chapter Split:
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 17:57 - 20:05
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
artist: Proved Records
|
||||||
track: 7
|
genre: Unset
|
||||||
year: 2017
|
title: 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
||||||
Alfa Mist - Nocturne [Full Album]/08 - 08. Dreams (Feat. Carmody).mp3
|
track: 7
|
||||||
From Chapter Split:
|
year: 2017
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
08 - 08. Dreams (Feat. Carmody).mp3
|
||||||
Segment: 20:05 - 23:58
|
From Chapter Split:
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 20:05 - 23:58
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 08. Dreams (Feat. Carmody)
|
artist: Proved Records
|
||||||
track: 8
|
genre: Unset
|
||||||
year: 2017
|
title: 08. Dreams (Feat. Carmody)
|
||||||
Alfa Mist - Nocturne [Full Album]/09 - 09. Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
track: 8
|
||||||
From Chapter Split:
|
year: 2017
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
09 - 09. Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
Segment: 23:58 - 24:45
|
From Chapter Split:
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 23:58 - 24:45
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 09. Dreaming (Interlude) (Feat. Racheal Ofori)
|
artist: Proved Records
|
||||||
track: 9
|
genre: Unset
|
||||||
year: 2017
|
title: 09. Dreaming (Interlude) (Feat. Racheal Ofori)
|
||||||
Alfa Mist - Nocturne [Full Album]/10 - 10. Hopeful (Feat. Jordan Rakei).mp3
|
track: 9
|
||||||
From Chapter Split:
|
year: 2017
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
10 - 10. Hopeful (Feat. Jordan Rakei).mp3
|
||||||
Segment: 24:45 - 28:53
|
From Chapter Split:
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 24:45 - 28:53
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 10. Hopeful (Feat. Jordan Rakei)
|
artist: Proved Records
|
||||||
track: 10
|
genre: Unset
|
||||||
year: 2017
|
title: 10. Hopeful (Feat. Jordan Rakei)
|
||||||
Alfa Mist - Nocturne [Full Album]/11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3
|
track: 10
|
||||||
From Chapter Split:
|
year: 2017
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||||
Segment: 28:53 - 31:43
|
From Chapter Split:
|
||||||
Music Tags:
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
Segment: 28:53 - 31:43
|
||||||
albumartist: Proved Records
|
Music Tags:
|
||||||
artist: Proved Records
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
genre: Unset
|
albumartist: Proved Records
|
||||||
title: 11. Sunrise (Pillows) (Feat. Emmavie)
|
artist: Proved Records
|
||||||
track: 11
|
genre: Unset
|
||||||
year: 2017
|
title: 11. Sunrise (Pillows) (Feat. Emmavie)
|
||||||
Alfa Mist - Nocturne [Full Album]/folder.jpg
|
track: 11
|
||||||
|
year: 2017
|
||||||
|
folder.jpg
|
||||||
|
|
@ -1,13 +1,15 @@
|
||||||
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
|
||||||
Music Tags:
|
{output_directory}/Oblivion Mod "Falcor" p.1
|
||||||
album: Oblivion Mod "Falcor" p.1
|
01 - Oblivion Mod "Falcor" p.1.mp3
|
||||||
albumartist: Project Zombie
|
Music Tags:
|
||||||
artist: Project Zombie
|
album: Oblivion Mod "Falcor" p.1
|
||||||
genre: Unset
|
albumartist: Project Zombie
|
||||||
title: Oblivion Mod "Falcor" p.1
|
artist: Project Zombie
|
||||||
track: 1
|
genre: Unset
|
||||||
year: 2010
|
title: Oblivion Mod "Falcor" p.1
|
||||||
Oblivion Mod "Falcor" p.1/folder.jpg
|
track: 1
|
||||||
|
year: 2010
|
||||||
|
folder.jpg
|
||||||
|
|
@ -1,157 +1,159 @@
|
||||||
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
|
||||||
From Chapter Split:
|
Sunrise (Pillows) (Feat. Emmavie).info.json
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
What If (Interlude).info.json
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
{output_directory}/Nocturne
|
||||||
Segment: 0:00 - 2:06
|
01 - Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||||
Music Tags:
|
From Chapter Split:
|
||||||
album: Nocturne
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 0:00 - 2:06
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Intro (Feat. Racheal Ofori & Barney Artist)
|
album: Nocturne
|
||||||
track: 1
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
genre: Unset
|
||||||
From Chapter Split:
|
title: Intro (Feat. Racheal Ofori & Barney Artist)
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
track: 1
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
year: 2017
|
||||||
Segment: 2:06 - 5:40
|
02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||||
Music Tags:
|
From Chapter Split:
|
||||||
album: Nocturne
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 2:06 - 5:40
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
album: Nocturne
|
||||||
track: 2
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
genre: Unset
|
||||||
From Chapter Split:
|
title: Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
track: 2
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
year: 2017
|
||||||
Segment: 5:40 - 8:11
|
03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||||
Music Tags:
|
From Chapter Split:
|
||||||
album: Nocturne
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 5:40 - 8:11
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Blaze (Feat. Kaya Thomas - Dyke)
|
album: Nocturne
|
||||||
track: 3
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/04 - What If (Interlude).mp3
|
genre: Unset
|
||||||
From Chapter Split:
|
title: Blaze (Feat. Kaya Thomas - Dyke)
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
track: 3
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
year: 2017
|
||||||
Segment: 8:11 - 9:35
|
04 - What If (Interlude).mp3
|
||||||
Music Tags:
|
From Chapter Split:
|
||||||
album: Nocturne
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 8:11 - 9:35
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: What If (Interlude)
|
album: Nocturne
|
||||||
track: 4
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/05 - No Peace (Feat. Tom Misch).mp3
|
genre: Unset
|
||||||
From Chapter Split:
|
title: What If (Interlude)
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
track: 4
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
year: 2017
|
||||||
Segment: 9:35 - 13:19
|
05 - No Peace (Feat. Tom Misch).mp3
|
||||||
Music Tags:
|
From Chapter Split:
|
||||||
album: Nocturne
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 9:35 - 13:19
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: No Peace (Feat. Tom Misch)
|
album: Nocturne
|
||||||
track: 5
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/06 - Closer (Feat. Lester Duval).mp3
|
genre: Unset
|
||||||
From Chapter Split:
|
title: No Peace (Feat. Tom Misch)
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
track: 5
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
year: 2017
|
||||||
Segment: 13:19 - 17:57
|
06 - Closer (Feat. Lester Duval).mp3
|
||||||
Music Tags:
|
From Chapter Split:
|
||||||
album: Nocturne
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 13:19 - 17:57
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Closer (Feat. Lester Duval)
|
album: Nocturne
|
||||||
track: 6
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
genre: Unset
|
||||||
From Chapter Split:
|
title: Closer (Feat. Lester Duval)
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
track: 6
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
year: 2017
|
||||||
Segment: 17:57 - 20:05
|
07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
Music Tags:
|
From Chapter Split:
|
||||||
album: Nocturne
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 17:57 - 20:05
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
album: Nocturne
|
||||||
track: 7
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/08 - Dreams (Feat. Carmody).mp3
|
genre: Unset
|
||||||
From Chapter Split:
|
title: Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
track: 7
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
year: 2017
|
||||||
Segment: 20:05 - 23:58
|
08 - Dreams (Feat. Carmody).mp3
|
||||||
Music Tags:
|
From Chapter Split:
|
||||||
album: Nocturne
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 20:05 - 23:58
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Dreams (Feat. Carmody)
|
album: Nocturne
|
||||||
track: 8
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
genre: Unset
|
||||||
From Chapter Split:
|
title: Dreams (Feat. Carmody)
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
track: 8
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
year: 2017
|
||||||
Segment: 23:58 - 24:45
|
09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
Music Tags:
|
From Chapter Split:
|
||||||
album: Nocturne
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 23:58 - 24:45
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Dreaming (Interlude) (Feat. Racheal Ofori)
|
album: Nocturne
|
||||||
track: 9
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/10 - Hopeful (Feat. Jordan Rakei).mp3
|
genre: Unset
|
||||||
From Chapter Split:
|
title: Dreaming (Interlude) (Feat. Racheal Ofori)
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
track: 9
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
year: 2017
|
||||||
Segment: 24:45 - 28:53
|
10 - Hopeful (Feat. Jordan Rakei).mp3
|
||||||
Music Tags:
|
From Chapter Split:
|
||||||
album: Nocturne
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 24:45 - 28:53
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Hopeful (Feat. Jordan Rakei)
|
album: Nocturne
|
||||||
track: 10
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
genre: Unset
|
||||||
From Chapter Split:
|
title: Hopeful (Feat. Jordan Rakei)
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
track: 10
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
year: 2017
|
||||||
Segment: 28:53 - 31:43
|
11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||||
Music Tags:
|
From Chapter Split:
|
||||||
album: Nocturne
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 28:53 - 31:43
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Sunrise (Pillows) (Feat. Emmavie)
|
album: Nocturne
|
||||||
track: 11
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/folder.jpg
|
genre: Unset
|
||||||
Sunrise (Pillows) (Feat. Emmavie).info.json
|
title: Sunrise (Pillows) (Feat. Emmavie)
|
||||||
What If (Interlude).info.json
|
track: 11
|
||||||
|
year: 2017
|
||||||
|
folder.jpg
|
||||||
|
|
@ -1,146 +1,148 @@
|
||||||
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
|
||||||
From Chapter Split:
|
Sunrise (Pillows) (Feat. Emmavie).info.json
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
What If (Interlude).info.json
|
||||||
Segment: 0:00 - 2:06
|
{output_directory}/Nocturne
|
||||||
Music Tags:
|
01 - Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||||
album: Nocturne
|
From Chapter Split:
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 0:00 - 2:06
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Intro (Feat. Racheal Ofori & Barney Artist)
|
album: Nocturne
|
||||||
track: 1
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
genre: Unset
|
||||||
From Chapter Split:
|
title: Intro (Feat. Racheal Ofori & Barney Artist)
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
track: 1
|
||||||
Segment: 2:06 - 5:40
|
year: 2017
|
||||||
Music Tags:
|
02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||||
album: Nocturne
|
From Chapter Split:
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 2:06 - 5:40
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
album: Nocturne
|
||||||
track: 2
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
genre: Unset
|
||||||
From Chapter Split:
|
title: Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
track: 2
|
||||||
Segment: 5:40 - 8:11
|
year: 2017
|
||||||
Music Tags:
|
03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||||
album: Nocturne
|
From Chapter Split:
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 5:40 - 8:11
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Blaze (Feat. Kaya Thomas - Dyke)
|
album: Nocturne
|
||||||
track: 3
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/04 - What If (Interlude).mp3
|
genre: Unset
|
||||||
From Chapter Split:
|
title: Blaze (Feat. Kaya Thomas - Dyke)
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
track: 3
|
||||||
Segment: 8:11 - 9:35
|
year: 2017
|
||||||
Music Tags:
|
04 - What If (Interlude).mp3
|
||||||
album: Nocturne
|
From Chapter Split:
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 8:11 - 9:35
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: What If (Interlude)
|
album: Nocturne
|
||||||
track: 4
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/05 - No Peace (Feat. Tom Misch).mp3
|
genre: Unset
|
||||||
From Chapter Split:
|
title: What If (Interlude)
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
track: 4
|
||||||
Segment: 9:35 - 13:19
|
year: 2017
|
||||||
Music Tags:
|
05 - No Peace (Feat. Tom Misch).mp3
|
||||||
album: Nocturne
|
From Chapter Split:
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 9:35 - 13:19
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: No Peace (Feat. Tom Misch)
|
album: Nocturne
|
||||||
track: 5
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/06 - Closer (Feat. Lester Duval).mp3
|
genre: Unset
|
||||||
From Chapter Split:
|
title: No Peace (Feat. Tom Misch)
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
track: 5
|
||||||
Segment: 13:19 - 17:57
|
year: 2017
|
||||||
Music Tags:
|
06 - Closer (Feat. Lester Duval).mp3
|
||||||
album: Nocturne
|
From Chapter Split:
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 13:19 - 17:57
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Closer (Feat. Lester Duval)
|
album: Nocturne
|
||||||
track: 6
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
genre: Unset
|
||||||
From Chapter Split:
|
title: Closer (Feat. Lester Duval)
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
track: 6
|
||||||
Segment: 17:57 - 20:05
|
year: 2017
|
||||||
Music Tags:
|
07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
album: Nocturne
|
From Chapter Split:
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 17:57 - 20:05
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
album: Nocturne
|
||||||
track: 7
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/08 - Dreams (Feat. Carmody).mp3
|
genre: Unset
|
||||||
From Chapter Split:
|
title: Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
track: 7
|
||||||
Segment: 20:05 - 23:58
|
year: 2017
|
||||||
Music Tags:
|
08 - Dreams (Feat. Carmody).mp3
|
||||||
album: Nocturne
|
From Chapter Split:
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 20:05 - 23:58
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Dreams (Feat. Carmody)
|
album: Nocturne
|
||||||
track: 8
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
genre: Unset
|
||||||
From Chapter Split:
|
title: Dreams (Feat. Carmody)
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
track: 8
|
||||||
Segment: 23:58 - 24:45
|
year: 2017
|
||||||
Music Tags:
|
09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
album: Nocturne
|
From Chapter Split:
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 23:58 - 24:45
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Dreaming (Interlude) (Feat. Racheal Ofori)
|
album: Nocturne
|
||||||
track: 9
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/10 - Hopeful (Feat. Jordan Rakei).mp3
|
genre: Unset
|
||||||
From Chapter Split:
|
title: Dreaming (Interlude) (Feat. Racheal Ofori)
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
track: 9
|
||||||
Segment: 24:45 - 28:53
|
year: 2017
|
||||||
Music Tags:
|
10 - Hopeful (Feat. Jordan Rakei).mp3
|
||||||
album: Nocturne
|
From Chapter Split:
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 24:45 - 28:53
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Hopeful (Feat. Jordan Rakei)
|
album: Nocturne
|
||||||
track: 10
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
genre: Unset
|
||||||
From Chapter Split:
|
title: Hopeful (Feat. Jordan Rakei)
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
track: 10
|
||||||
Segment: 28:53 - 31:43
|
year: 2017
|
||||||
Music Tags:
|
11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||||
album: Nocturne
|
From Chapter Split:
|
||||||
albumartist: Alfa Mist
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
artist: Alfa Mist
|
Segment: 28:53 - 31:43
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Sunrise (Pillows) (Feat. Emmavie)
|
album: Nocturne
|
||||||
track: 11
|
albumartist: Alfa Mist
|
||||||
year: 2017
|
artist: Alfa Mist
|
||||||
Nocturne/folder.jpg
|
genre: Unset
|
||||||
Sunrise (Pillows) (Feat. Emmavie).info.json
|
title: Sunrise (Pillows) (Feat. Emmavie)
|
||||||
What If (Interlude).info.json
|
track: 11
|
||||||
|
year: 2017
|
||||||
|
folder.jpg
|
||||||
|
|
@ -1,32 +1,33 @@
|
||||||
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
|
||||||
Music Tags:
|
Jesse's Minecraft Server [Trailer - Feb.1].ogg
|
||||||
album: Singles
|
Music Tags:
|
||||||
albumartist: Project Zombie
|
album: Singles
|
||||||
artist: Project Zombie
|
albumartist: Project Zombie
|
||||||
genre: Unset
|
artist: Project Zombie
|
||||||
title: Jesse's Minecraft Server [Trailer - Feb.1]
|
genre: Unset
|
||||||
track: 3
|
title: Jesse's Minecraft Server [Trailer - Feb.1]
|
||||||
year: 2011
|
track: 3
|
||||||
Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
year: 2011
|
||||||
Jesse's Minecraft Server [Trailer - Feb.27].ogg
|
Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
||||||
Music Tags:
|
Jesse's Minecraft Server [Trailer - Feb.27].ogg
|
||||||
album: Singles
|
Music Tags:
|
||||||
albumartist: Project Zombie
|
album: Singles
|
||||||
artist: Project Zombie
|
albumartist: Project Zombie
|
||||||
genre: Unset
|
artist: Project Zombie
|
||||||
title: Jesse's Minecraft Server [Trailer - Feb.27]
|
genre: Unset
|
||||||
track: 2
|
title: Jesse's Minecraft Server [Trailer - Feb.27]
|
||||||
year: 2011
|
track: 2
|
||||||
Jesse's Minecraft Server [Trailer - Mar.21].info.json
|
year: 2011
|
||||||
Jesse's Minecraft Server [Trailer - Mar.21].ogg
|
Jesse's Minecraft Server [Trailer - Mar.21].info.json
|
||||||
Music Tags:
|
Jesse's Minecraft Server [Trailer - Mar.21].ogg
|
||||||
album: Singles
|
Music Tags:
|
||||||
albumartist: Project Zombie
|
album: Singles
|
||||||
artist: Project Zombie
|
albumartist: Project Zombie
|
||||||
genre: Unset
|
artist: Project Zombie
|
||||||
title: Jesse's Minecraft Server [Trailer - Mar.21]
|
genre: Unset
|
||||||
track: 1
|
title: Jesse's Minecraft Server [Trailer - Mar.21]
|
||||||
year: 2011
|
track: 1
|
||||||
|
year: 2011
|
||||||
|
|
@ -1,12 +1,13 @@
|
||||||
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
|
||||||
Music Tags:
|
YouTube Rewind 2019: For the Record | #YouTubeRewind.mp3
|
||||||
album: Singles
|
Music Tags:
|
||||||
albumartist: YouTube
|
album: Singles
|
||||||
artist: YouTube
|
albumartist: YouTube
|
||||||
genre: Unset
|
artist: YouTube
|
||||||
title: YouTube Rewind 2019: For the Record | #YouTubeRewind
|
genre: Unset
|
||||||
track: 1
|
title: YouTube Rewind 2019: For the Record | #YouTubeRewind
|
||||||
year: 2019
|
track: 1
|
||||||
|
year: 2019
|
||||||
|
|
@ -1,24 +1,25 @@
|
||||||
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
|
||||||
Chapters embedded from timestamp file:
|
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.mp4
|
||||||
0:00: Intro
|
Chapters embedded from timestamp file:
|
||||||
0:10: Part 1
|
0:00: Intro
|
||||||
0:20: Part 2
|
0:10: Part 1
|
||||||
0:30: Part 3
|
0:20: Part 2
|
||||||
0:40: Part 4
|
0:30: Part 3
|
||||||
1:01: Part 5
|
0:40: Part 4
|
||||||
Embedded subtitles with lang(s) en, de
|
1:01: Part 5
|
||||||
Video Tags:
|
Embedded subtitles with lang(s) en, de
|
||||||
description:
|
Video Tags:
|
||||||
🎸 / ' "
|
description:
|
||||||
newline?
|
🎸 / ' "
|
||||||
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.nfo
|
newline?
|
||||||
NFO tags:
|
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.nfo
|
||||||
musicvideo:
|
NFO tags:
|
||||||
album: Music Videos
|
musicvideo:
|
||||||
artist: JMC
|
album: Music Videos
|
||||||
title: This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case
|
artist: JMC
|
||||||
year: 2021
|
title: This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case
|
||||||
|
year: 2021
|
||||||
|
|
@ -1,20 +1,21 @@
|
||||||
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
|
||||||
Embedded Chapters:
|
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.mp4
|
||||||
Removed Chapter(s): Intro, Outro
|
Embedded Chapters:
|
||||||
Removed SponsorBlock Category Count(s):
|
Removed Chapter(s): Intro, Outro
|
||||||
Sponsor: 2
|
Removed SponsorBlock Category Count(s):
|
||||||
Endcards/Credits: 1
|
Sponsor: 2
|
||||||
Intermission/Intro Animation: 1
|
Endcards/Credits: 1
|
||||||
Unpaid/Self Promotion: 1
|
Intermission/Intro Animation: 1
|
||||||
Embedded subtitles with lang(s) en, de
|
Unpaid/Self Promotion: 1
|
||||||
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.nfo
|
Embedded subtitles with lang(s) en, de
|
||||||
NFO tags:
|
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.nfo
|
||||||
musicvideo:
|
NFO tags:
|
||||||
album: Music Videos
|
musicvideo:
|
||||||
artist: JMC
|
album: Music Videos
|
||||||
title: This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case
|
artist: JMC
|
||||||
year: 2021
|
title: This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case
|
||||||
|
year: 2021
|
||||||
|
|
@ -1,37 +1,38 @@
|
||||||
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
|
||||||
NFO tags:
|
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.1].nfo
|
||||||
musicvideo:
|
NFO tags:
|
||||||
album: Music Videos
|
musicvideo:
|
||||||
artist: Project Zombie
|
album: Music Videos
|
||||||
desc_cap: www.jesseminecraft.webs
|
artist: Project Zombie
|
||||||
override_with_capture_variable: contains Trailer
|
desc_cap: www.jesseminecraft.webs
|
||||||
override_with_capture_variable_sanitized: contains Trailer
|
override_with_capture_variable: contains Trailer
|
||||||
title: Jesse's Minecraft Server [Trailer - Feb.1]
|
override_with_capture_variable_sanitized: contains Trailer
|
||||||
title_cap_1: Trailer
|
title: Jesse's Minecraft Server [Trailer - Feb.1]
|
||||||
title_cap_1_sanitized: Trailer
|
title_cap_1: Trailer
|
||||||
title_cap_2: Feb.1
|
title_cap_1_sanitized: Trailer
|
||||||
upload_date_both_caps: First and Second containing in regex default
|
title_cap_2: Feb.1
|
||||||
year: 2011
|
upload_date_both_caps: First and Second containing in regex default
|
||||||
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27]-thumb.jpg
|
year: 2011
|
||||||
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27]-thumb.jpg
|
||||||
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27].mp4
|
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
||||||
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27].nfo
|
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27].mp4
|
||||||
NFO tags:
|
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27].nfo
|
||||||
musicvideo:
|
NFO tags:
|
||||||
album: Music Videos
|
musicvideo:
|
||||||
artist: Project Zombie
|
album: Music Videos
|
||||||
desc_cap: jesseminecraft.webs
|
artist: Project Zombie
|
||||||
override_with_capture_variable: contains Trailer
|
desc_cap: jesseminecraft.webs
|
||||||
override_with_capture_variable_sanitized: contains Trailer
|
override_with_capture_variable: contains Trailer
|
||||||
title: Jesse's Minecraft Server [Trailer - Feb.27]
|
override_with_capture_variable_sanitized: contains Trailer
|
||||||
title_cap_1: Trailer
|
title: Jesse's Minecraft Server [Trailer - Feb.27]
|
||||||
title_cap_1_sanitized: Trailer
|
title_cap_1: Trailer
|
||||||
title_cap_2: Feb.27
|
title_cap_1_sanitized: Trailer
|
||||||
upload_date_both_caps: 2011 and 02
|
title_cap_2: Feb.27
|
||||||
year: 2011
|
upload_date_both_caps: 2011 and 02
|
||||||
|
year: 2011
|
||||||
|
|
@ -1,13 +1,14 @@
|
||||||
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
|
||||||
Embedded subtitles with lang(s) en, de
|
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.mp4
|
||||||
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.nfo
|
Embedded subtitles with lang(s) en, de
|
||||||
NFO tags:
|
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.nfo
|
||||||
musicvideo:
|
NFO tags:
|
||||||
album: Music Videos
|
musicvideo:
|
||||||
artist: JMC
|
album: Music Videos
|
||||||
title: YouTube Rewind 2019: For the Record | #YouTubeRewind
|
artist: JMC
|
||||||
year: 2019
|
title: YouTube Rewind 2019: For the Record | #YouTubeRewind
|
||||||
|
year: 2019
|
||||||
|
|
@ -1,15 +1,16 @@
|
||||||
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
|
||||||
Embedded subtitles with lang(s) en, de
|
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.mp4
|
||||||
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.nfo
|
Embedded subtitles with lang(s) en, de
|
||||||
NFO tags:
|
JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.nfo
|
||||||
musicvideo:
|
NFO tags:
|
||||||
album: Music Videos
|
musicvideo:
|
||||||
artist: JMC
|
album: Music Videos
|
||||||
title: YouTube Rewind 2019: For the Record | #YouTubeRewind
|
artist: JMC
|
||||||
year: 2019
|
title: YouTube Rewind 2019: For the Record | #YouTubeRewind
|
||||||
|
year: 2019
|
||||||
|
|
@ -1,136 +1,140 @@
|
||||||
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
|
||||||
Music Tags:
|
01 - Baby Santana's Dorian Groove.info.json
|
||||||
album: Baby Santana's Dorian Groove
|
01 - Baby Santana's Dorian Groove.mp3
|
||||||
albumartist: j_b
|
Music Tags:
|
||||||
artist: j_b
|
album: Baby Santana's Dorian Groove
|
||||||
genre: Unset
|
albumartist: j_b
|
||||||
title: Baby Santana's Dorian Groove
|
artist: j_b
|
||||||
track: 1
|
genre: Unset
|
||||||
year: 2021
|
title: Baby Santana's Dorian Groove
|
||||||
j_b/[2021] Baby Santana's Dorian Groove/folder.jpg
|
track: 1
|
||||||
j_b/[2021] Purple Clouds/01 - Purple Clouds.info.json
|
year: 2021
|
||||||
j_b/[2021] Purple Clouds/01 - Purple Clouds.mp3
|
folder.jpg
|
||||||
Music Tags:
|
{output_directory}/j_b/[2021] Purple Clouds
|
||||||
album: Purple Clouds
|
01 - Purple Clouds.info.json
|
||||||
albumartist: j_b
|
01 - Purple Clouds.mp3
|
||||||
artist: j_b
|
Music Tags:
|
||||||
genre: Unset
|
album: Purple Clouds
|
||||||
title: Purple Clouds
|
albumartist: j_b
|
||||||
track: 1
|
artist: j_b
|
||||||
year: 2021
|
genre: Unset
|
||||||
j_b/[2021] Purple Clouds/folder.jpg
|
title: Purple Clouds
|
||||||
j_b/[2022] Acoustic Treats/01 - 20160426 184214.info.json
|
track: 1
|
||||||
j_b/[2022] Acoustic Treats/01 - 20160426 184214.mp3
|
year: 2021
|
||||||
Music Tags:
|
folder.jpg
|
||||||
album: Acoustic Treats
|
{output_directory}/j_b/[2022] Acoustic Treats
|
||||||
albumartist: j_b
|
01 - 20160426 184214.info.json
|
||||||
artist: j_b
|
01 - 20160426 184214.mp3
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: 20160426 184214
|
album: Acoustic Treats
|
||||||
track: 1
|
albumartist: j_b
|
||||||
year: 2022
|
artist: j_b
|
||||||
j_b/[2022] Acoustic Treats/02 - 20160502 123150.info.json
|
genre: Unset
|
||||||
j_b/[2022] Acoustic Treats/02 - 20160502 123150.mp3
|
title: 20160426 184214
|
||||||
Music Tags:
|
track: 1
|
||||||
album: Acoustic Treats
|
year: 2022
|
||||||
albumartist: j_b
|
02 - 20160502 123150.info.json
|
||||||
artist: j_b
|
02 - 20160502 123150.mp3
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: 20160502 123150
|
album: Acoustic Treats
|
||||||
track: 2
|
albumartist: j_b
|
||||||
year: 2022
|
artist: j_b
|
||||||
j_b/[2022] Acoustic Treats/03 - 20160504 143832.info.json
|
genre: Unset
|
||||||
j_b/[2022] Acoustic Treats/03 - 20160504 143832.mp3
|
title: 20160502 123150
|
||||||
Music Tags:
|
track: 2
|
||||||
album: Acoustic Treats
|
year: 2022
|
||||||
albumartist: j_b
|
03 - 20160504 143832.info.json
|
||||||
artist: j_b
|
03 - 20160504 143832.mp3
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: 20160504 143832
|
album: Acoustic Treats
|
||||||
track: 3
|
albumartist: j_b
|
||||||
year: 2022
|
artist: j_b
|
||||||
j_b/[2022] Acoustic Treats/04 - 20160601 221234.info.json
|
genre: Unset
|
||||||
j_b/[2022] Acoustic Treats/04 - 20160601 221234.mp3
|
title: 20160504 143832
|
||||||
Music Tags:
|
track: 3
|
||||||
album: Acoustic Treats
|
year: 2022
|
||||||
albumartist: j_b
|
04 - 20160601 221234.info.json
|
||||||
artist: j_b
|
04 - 20160601 221234.mp3
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: 20160601 221234
|
album: Acoustic Treats
|
||||||
track: 4
|
albumartist: j_b
|
||||||
year: 2022
|
artist: j_b
|
||||||
j_b/[2022] Acoustic Treats/05 - 20160601 222440.info.json
|
genre: Unset
|
||||||
j_b/[2022] Acoustic Treats/05 - 20160601 222440.mp3
|
title: 20160601 221234
|
||||||
Music Tags:
|
track: 4
|
||||||
album: Acoustic Treats
|
year: 2022
|
||||||
albumartist: j_b
|
05 - 20160601 222440.info.json
|
||||||
artist: j_b
|
05 - 20160601 222440.mp3
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: 20160601 222440
|
album: Acoustic Treats
|
||||||
track: 5
|
albumartist: j_b
|
||||||
year: 2022
|
artist: j_b
|
||||||
j_b/[2022] Acoustic Treats/06 - 20170604 190236.info.json
|
genre: Unset
|
||||||
j_b/[2022] Acoustic Treats/06 - 20170604 190236.mp3
|
title: 20160601 222440
|
||||||
Music Tags:
|
track: 5
|
||||||
album: Acoustic Treats
|
year: 2022
|
||||||
albumartist: j_b
|
06 - 20170604 190236.info.json
|
||||||
artist: j_b
|
06 - 20170604 190236.mp3
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: 20170604 190236
|
album: Acoustic Treats
|
||||||
track: 6
|
albumartist: j_b
|
||||||
year: 2022
|
artist: j_b
|
||||||
j_b/[2022] Acoustic Treats/07 - 20170612 193646.info.json
|
genre: Unset
|
||||||
j_b/[2022] Acoustic Treats/07 - 20170612 193646.mp3
|
title: 20170604 190236
|
||||||
Music Tags:
|
track: 6
|
||||||
album: Acoustic Treats
|
year: 2022
|
||||||
albumartist: j_b
|
07 - 20170612 193646.info.json
|
||||||
artist: j_b
|
07 - 20170612 193646.mp3
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: 20170612 193646
|
album: Acoustic Treats
|
||||||
track: 7
|
albumartist: j_b
|
||||||
year: 2022
|
artist: j_b
|
||||||
j_b/[2022] Acoustic Treats/08 - 20170628 215206.info.json
|
genre: Unset
|
||||||
j_b/[2022] Acoustic Treats/08 - 20170628 215206.mp3
|
title: 20170612 193646
|
||||||
Music Tags:
|
track: 7
|
||||||
album: Acoustic Treats
|
year: 2022
|
||||||
albumartist: j_b
|
08 - 20170628 215206.info.json
|
||||||
artist: j_b
|
08 - 20170628 215206.mp3
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: 20170628 215206
|
album: Acoustic Treats
|
||||||
track: 8
|
albumartist: j_b
|
||||||
year: 2022
|
artist: j_b
|
||||||
j_b/[2022] Acoustic Treats/09 - Finding Home.info.json
|
genre: Unset
|
||||||
j_b/[2022] Acoustic Treats/09 - Finding Home.mp3
|
title: 20170628 215206
|
||||||
Music Tags:
|
track: 8
|
||||||
album: Acoustic Treats
|
year: 2022
|
||||||
albumartist: j_b
|
09 - Finding Home.info.json
|
||||||
artist: j_b
|
09 - Finding Home.mp3
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Finding Home
|
album: Acoustic Treats
|
||||||
track: 9
|
albumartist: j_b
|
||||||
year: 2022
|
artist: j_b
|
||||||
j_b/[2022] Acoustic Treats/10 - Shallow Water WIP.info.json
|
genre: Unset
|
||||||
j_b/[2022] Acoustic Treats/10 - Shallow Water WIP.mp3
|
title: Finding Home
|
||||||
Music Tags:
|
track: 9
|
||||||
album: Acoustic Treats
|
year: 2022
|
||||||
albumartist: j_b
|
10 - Shallow Water WIP.info.json
|
||||||
artist: j_b
|
10 - Shallow Water WIP.mp3
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Shallow Water WIP
|
album: Acoustic Treats
|
||||||
track: 10
|
albumartist: j_b
|
||||||
year: 2022
|
artist: j_b
|
||||||
j_b/[2022] Acoustic Treats/11 - Untold History.info.json
|
genre: Unset
|
||||||
j_b/[2022] Acoustic Treats/11 - Untold History.mp3
|
title: Shallow Water WIP
|
||||||
Music Tags:
|
track: 10
|
||||||
album: Acoustic Treats
|
year: 2022
|
||||||
albumartist: j_b
|
11 - Untold History.info.json
|
||||||
artist: j_b
|
11 - Untold History.mp3
|
||||||
genre: Unset
|
Music Tags:
|
||||||
title: Untold History
|
album: Acoustic Treats
|
||||||
track: 11
|
albumartist: j_b
|
||||||
year: 2022
|
artist: j_b
|
||||||
j_b/[2022] Acoustic Treats/folder.jpg
|
genre: Unset
|
||||||
|
title: Untold History
|
||||||
|
track: 11
|
||||||
|
year: 2022
|
||||||
|
folder.jpg
|
||||||
|
|
@ -1,312 +1,318 @@
|
||||||
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:
|
NFO tags:
|
||||||
episodedetails:
|
tvshow:
|
||||||
aired: 2010-08-13
|
plot: Plugin and map updates for the server Project Zombie.
|
||||||
episode: 813
|
source_uploader: Project Zombie
|
||||||
playlist_count: 13
|
title: Project / Zombie
|
||||||
playlist_index: 13
|
{output_directory}/Season 2010
|
||||||
plot:
|
s2010.e0813 - Oblivion Mod "Falcor" p.1-thumb.jpg
|
||||||
PLEASE WATCH IN HD!
|
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
|
||||||
|
episode: 813
|
||||||
|
playlist_count: 13
|
||||||
|
playlist_index: 13
|
||||||
|
plot:
|
||||||
|
PLEASE WATCH IN HD!
|
||||||
|
|
||||||
This is the castle in the mod "Falcor" which we are currently working on.
|
This is the castle in the mod "Falcor" which we are currently working on.
|
||||||
You can find some more information about the mod @ http://www.oblivionfalcormod.webs.com/
|
You can find some more information about the mod @ http://www.oblivionfalcormod.webs.com/
|
||||||
|
|
||||||
This is the first time I've really used the editor, and the beginning of our first mod. Hope you enjoy.
|
This is the first time I've really used the editor, and the beginning of our first mod. Hope you enjoy.
|
||||||
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
|
||||||
episode: 1202
|
episode: 1202
|
||||||
playlist_count: 13
|
playlist_count: 13
|
||||||
playlist_index: 12
|
playlist_index: 12
|
||||||
plot:
|
plot:
|
||||||
PLEASE WATCH IN HD.
|
PLEASE WATCH IN HD.
|
||||||
|
|
||||||
Download Link:
|
Download Link:
|
||||||
http://www.tesnexus.com/downloads/file.php?id=36306
|
http://www.tesnexus.com/downloads/file.php?id=36306
|
||||||
|
|
||||||
Please keep in mind that the mod is not complete, so you'll see some blank areas during the video. I haven't made LOD (Level of Distance) yet either, so areas far away will not appear.
|
Please keep in mind that the mod is not complete, so you'll see some blank areas during the video. I haven't made LOD (Level of Distance) yet either, so areas far away will not appear.
|
||||||
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
|
||||||
NFO tags:
|
s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].nfo
|
||||||
episodedetails:
|
NFO tags:
|
||||||
aired: 2011-02-01
|
episodedetails:
|
||||||
episode: 201
|
aired: 2011-02-01
|
||||||
playlist_count: 13
|
episode: 201
|
||||||
playlist_index: 11
|
playlist_count: 13
|
||||||
plot:
|
playlist_index: 11
|
||||||
To join the server, you must apply at:
|
plot:
|
||||||
http://www.jesseminecraft.webs.com/
|
To join the server, you must apply at:
|
||||||
|
http://www.jesseminecraft.webs.com/
|
||||||
|
|
||||||
This is just a brief video of the server as of Feb. 1, 2011.
|
This is just a brief video of the server as of Feb. 1, 2011.
|
||||||
|
|
||||||
Texture Pack I Use:
|
Texture Pack I Use:
|
||||||
http://www.minecraftforum.net/viewtopic.php?f=25&t=29164
|
http://www.minecraftforum.net/viewtopic.php?f=25&t=29164
|
||||||
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
|
||||||
episode: 227
|
episode: 227
|
||||||
playlist_count: 13
|
playlist_count: 13
|
||||||
playlist_index: 10
|
playlist_index: 10
|
||||||
plot:
|
plot:
|
||||||
Website Link:
|
Website Link:
|
||||||
http://jesseminecraft.webs.com/
|
http://jesseminecraft.webs.com/
|
||||||
|
|
||||||
All you have to do is read the rules, and fill out a quick, little application to join the Server so we know you read them. We do this to keep the griefers/newbs out, it only takes three minutes, it's not that big of a deal.
|
All you have to do is read the rules, and fill out a quick, little application to join the Server so we know you read them. We do this to keep the griefers/newbs out, it only takes three minutes, it's not that big of a deal.
|
||||||
|
|
||||||
Jesse's Minecraft Server is a City Roleplay/Survival Server, there is a currency, public transportation, strict rules for immersive gameplay, and has a decent size population. Over 750 people have logged onto the server. It is very important you read the rules, we don't tolerate idiots.
|
Jesse's Minecraft Server is a City Roleplay/Survival Server, there is a currency, public transportation, strict rules for immersive gameplay, and has a decent size population. Over 750 people have logged onto the server. It is very important you read the rules, we don't tolerate idiots.
|
||||||
|
|
||||||
There are over 200 empty properties that are ready for anyone to own! Join now!
|
There are over 200 empty properties that are ready for anyone to own! Join now!
|
||||||
|
|
||||||
This is the server state as of Feb. 27, 2011.
|
This is the server state as of Feb. 27, 2011.
|
||||||
----------------------------------------------------------------------------------
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
Texture Pack:
|
Texture Pack:
|
||||||
http://www.minecraftforum.net/viewtopic.php?f=25&t=29164
|
http://www.minecraftforum.net/viewtopic.php?f=25&t=29164
|
||||||
|
|
||||||
Recording Software:
|
Recording Software:
|
||||||
http://www.fraps.com/download.php
|
http://www.fraps.com/download.php
|
||||||
|
|
||||||
Video Editing Software:
|
Video Editing Software:
|
||||||
http://explore.live.com/windows-live-movie-maker?os=other
|
http://explore.live.com/windows-live-movie-maker?os=other
|
||||||
|
|
||||||
Song:
|
Song:
|
||||||
Given to Fly - Pearl Jam
|
Given to Fly - Pearl Jam
|
||||||
(Off of the 'Yield' album)
|
(Off of the 'Yield' album)
|
||||||
|
|
||||||
I claim no ownership of this song, all the credit goes to Pearl Jam and their producers.
|
I claim no ownership of this song, all the credit goes to Pearl Jam and their producers.
|
||||||
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
|
||||||
episode: 321
|
episode: 321
|
||||||
playlist_count: 13
|
playlist_count: 13
|
||||||
playlist_index: 9
|
playlist_index: 9
|
||||||
plot:
|
plot:
|
||||||
Website Link:
|
Website Link:
|
||||||
http://jesseminecraft.webs.com/
|
http://jesseminecraft.webs.com/
|
||||||
|
|
||||||
To get on the whitelist, please look at the website linked above (^^^). Due to the overwhelming amount of people trying to join, I've made it so it costs $2 to become a member through paypal. All of it is explained on the website.
|
To get on the whitelist, please look at the website linked above (^^^). Due to the overwhelming amount of people trying to join, I've made it so it costs $2 to become a member through paypal. All of it is explained on the website.
|
||||||
|
|
||||||
Jesse's Minecraft Server is a City Roleplay/Survival Server, there is a currency, public transportation, strict rules for immersive gameplay, and has a decent size population. Over 1000 people have logged onto the server. It is very important you read the rules, we don't tolerate idiots.
|
Jesse's Minecraft Server is a City Roleplay/Survival Server, there is a currency, public transportation, strict rules for immersive gameplay, and has a decent size population. Over 1000 people have logged onto the server. It is very important you read the rules, we don't tolerate idiots.
|
||||||
|
|
||||||
There are over 300 empty properties that are ready for anyone to own! Join now!
|
There are over 300 empty properties that are ready for anyone to own! Join now!
|
||||||
|
|
||||||
This is the server state as of Mar. 21, 2011.
|
This is the server state as of Mar. 21, 2011.
|
||||||
----------------------------------------------------------------------------------
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
Texture Pack:
|
Texture Pack:
|
||||||
http://www.minecraftforum.net/viewtopic.php?f=25&t=29164
|
http://www.minecraftforum.net/viewtopic.php?f=25&t=29164
|
||||||
|
|
||||||
Recording Software:
|
Recording Software:
|
||||||
http://www.fraps.com/download.php
|
http://www.fraps.com/download.php
|
||||||
|
|
||||||
Video Editing Software:
|
Video Editing Software:
|
||||||
http://explore.live.com/windows-live-movie-maker?os=other
|
http://explore.live.com/windows-live-movie-maker?os=other
|
||||||
|
|
||||||
Song:
|
Song:
|
||||||
Indifference - Pearl Jam
|
Indifference - Pearl Jam
|
||||||
(Off of the 'Vs.' album)
|
(Off of the 'Vs.' album)
|
||||||
|
|
||||||
I claim no ownership of this song, all the credit goes to Pearl Jam and their producers.
|
I claim no ownership of this song, all the credit goes to Pearl Jam and their producers.
|
||||||
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
|
||||||
episode: 529
|
episode: 529
|
||||||
playlist_count: 13
|
playlist_count: 13
|
||||||
playlist_index: 8
|
playlist_index: 8
|
||||||
plot:
|
plot:
|
||||||
Currently in alpha testing.
|
Currently in alpha testing.
|
||||||
http://www.projectzombie.net/
|
http://www.projectzombie.net/
|
||||||
|
|
||||||
Credits:
|
Credits:
|
||||||
-Master_Queef (Jesse)
|
-Master_Queef (Jesse)
|
||||||
-Cheeseducksg
|
-Cheeseducksg
|
||||||
-Vsalaka
|
-Vsalaka
|
||||||
-Edwingsd
|
-Edwingsd
|
||||||
-All Members on my Roleplay Server
|
-All Members on my Roleplay Server
|
||||||
-All Mercenaries in Project Zombie
|
-All Mercenaries in Project Zombie
|
||||||
|
|
||||||
Song:
|
Song:
|
||||||
Johnny Cash - God's Gonna Cut You Down
|
Johnny Cash - God's Gonna Cut You Down
|
||||||
|
|
||||||
Texture Pack:
|
Texture Pack:
|
||||||
http://www.minecraftforum.net/topic/26727-johnsmith-texture-pack-v73-32x32-16x-with-customizer/
|
http://www.minecraftforum.net/topic/26727-johnsmith-texture-pack-v73-32x32-16x-with-customizer/
|
||||||
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
|
||||||
episode: 630
|
episode: 630
|
||||||
playlist_count: 13
|
playlist_count: 13
|
||||||
playlist_index: 7
|
playlist_index: 7
|
||||||
plot:
|
plot:
|
||||||
Twas a good run while it lasted. If you're still interested in playing PZ, you can join my Roleplay Server, yes, Project Zombie is completely imported onto that one:
|
Twas a good run while it lasted. If you're still interested in playing PZ, you can join my Roleplay Server, yes, Project Zombie is completely imported onto that one:
|
||||||
http://www.jesseminecraft.webs.com/
|
http://www.jesseminecraft.webs.com/
|
||||||
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
|
||||||
episode: 1121
|
episode: 1121
|
||||||
playlist_count: 13
|
playlist_count: 13
|
||||||
playlist_index: 6
|
playlist_index: 6
|
||||||
plot:
|
plot:
|
||||||
Mods I have used:
|
Mods I have used:
|
||||||
http://skyrimnexus.com/downloads/file.php?id=329
|
http://skyrimnexus.com/downloads/file.php?id=329
|
||||||
http://skyrimnexus.com/downloads/file.php?id=607
|
http://skyrimnexus.com/downloads/file.php?id=607
|
||||||
http://skyrimnexus.com/downloads/file.php?id=711
|
http://skyrimnexus.com/downloads/file.php?id=711
|
||||||
http://skyrimnexus.com/downloads/file.php?id=302
|
http://skyrimnexus.com/downloads/file.php?id=302
|
||||||
http://skyrimnexus.com/downloads/file.php?id=141
|
http://skyrimnexus.com/downloads/file.php?id=141
|
||||||
http://skyrimnexus.com/downloads/file.php?id=131
|
http://skyrimnexus.com/downloads/file.php?id=131
|
||||||
http://skyrimnexus.com/downloads/file.php?id=85
|
http://skyrimnexus.com/downloads/file.php?id=85
|
||||||
http://skyrimnexus.com/downloads/file.php?id=191
|
http://skyrimnexus.com/downloads/file.php?id=191
|
||||||
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
|
||||||
NFO tags:
|
s2012.e0123 - Project Zombie |Map Trailer|.nfo
|
||||||
episodedetails:
|
NFO tags:
|
||||||
aired: 2012-01-23
|
episodedetails:
|
||||||
episode: 123
|
aired: 2012-01-23
|
||||||
playlist_count: 13
|
episode: 123
|
||||||
playlist_index: 4
|
playlist_count: 13
|
||||||
plot:
|
playlist_index: 4
|
||||||
Faction Server IP: 72.9.157.88:25652
|
plot:
|
||||||
Project Zombie IP: mc.projectzombie.beastnode.net
|
Faction Server IP: 72.9.157.88:25652
|
||||||
Project Zombie Map: http://tinyurl.com/projectzombie1
|
Project Zombie IP: mc.projectzombie.beastnode.net
|
||||||
Website: http://jesseminecraft.webs.com/
|
Project Zombie Map: http://tinyurl.com/projectzombie1
|
||||||
Map Download: http://www.planetminecraft.com/project/project-zombie-511865/
|
Website: http://jesseminecraft.webs.com/
|
||||||
|
Map Download: http://www.planetminecraft.com/project/project-zombie-511865/
|
||||||
|
|
||||||
A few little mistakes, but awh well, the dynamic shadows look boss.
|
A few little mistakes, but awh well, the dynamic shadows look boss.
|
||||||
|
|
||||||
And the song is Comfortably Numb by Pink Floyd. If you didn't know that after the first 10 seconds of listening to it then you may need some help.
|
And the song is Comfortably Numb by Pink Floyd. If you didn't know that after the first 10 seconds of listening to it then you may need some help.
|
||||||
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
|
||||||
NFO tags:
|
s2013.e0719 - Project Zombie Rewind |Trailer|.nfo
|
||||||
episodedetails:
|
NFO tags:
|
||||||
aired: 2013-07-19
|
episodedetails:
|
||||||
episode: 719
|
aired: 2013-07-19
|
||||||
playlist_count: 13
|
episode: 719
|
||||||
playlist_index: 3
|
playlist_count: 13
|
||||||
plot:
|
playlist_index: 3
|
||||||
IP: 172.245.24.118
|
plot:
|
||||||
http://www.projectzombie.net/
|
IP: 172.245.24.118
|
||||||
|
http://www.projectzombie.net/
|
||||||
|
|
||||||
With almost a year of downtime, Project Zombie rises from its ashes. Rewind back to May 2011 and immerse yourself in the original Project Zombie with expansions. Open July 20th, 2013.
|
With almost a year of downtime, Project Zombie rises from its ashes. Rewind back to May 2011 and immerse yourself in the original Project Zombie with expansions. Open July 20th, 2013.
|
||||||
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
|
||||||
NFO tags:
|
s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.nfo
|
||||||
episodedetails:
|
NFO tags:
|
||||||
aired: 2018-10-29
|
episodedetails:
|
||||||
episode: 1029
|
aired: 2018-10-29
|
||||||
playlist_count: 13
|
episode: 1029
|
||||||
playlist_index: 2
|
playlist_count: 13
|
||||||
plot:
|
playlist_index: 2
|
||||||
See the full trailer here: https://youtu.be/LN2e6idGluI
|
plot:
|
||||||
Discord: https://discord.gg/BQN7SSe
|
See the full trailer here: https://youtu.be/LN2e6idGluI
|
||||||
Website: https://www.projectzombie.net/
|
Discord: https://discord.gg/BQN7SSe
|
||||||
|
Website: https://www.projectzombie.net/
|
||||||
|
|
||||||
It has been about six years since the glory days of the original RP server. Hope to see many familiar faces in the revival of our great server.
|
It has been about six years since the glory days of the original RP server. Hope to see many familiar faces in the revival of our great server.
|
||||||
|
|
||||||
Credits:
|
Credits:
|
||||||
ALISON - Space Echo
|
ALISON - Space Echo
|
||||||
https://www.youtube.com/watch?v=lPldcjlv3_Y
|
https://www.youtube.com/watch?v=lPldcjlv3_Y
|
||||||
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
|
||||||
episode: 1102
|
episode: 1102
|
||||||
playlist_count: 13
|
playlist_count: 13
|
||||||
playlist_index: 1
|
playlist_index: 1
|
||||||
plot:
|
plot:
|
||||||
IP: mc.jesse.id
|
IP: mc.jesse.id
|
||||||
Live Map: http://mc.jesse.id:8123
|
Live Map: http://mc.jesse.id:8123
|
||||||
Discord: https://discord.gg/BQN7SSe
|
Discord: https://discord.gg/BQN7SSe
|
||||||
Website: https://www.projectzombie.net/
|
Website: https://www.projectzombie.net/
|
||||||
|
|
||||||
It has been about six years since the glory days of the original RP server. Hope to see many familiar faces in the revival of our great server.
|
It has been about six years since the glory days of the original RP server. Hope to see many familiar faces in the revival of our great server.
|
||||||
|
|
||||||
The MC version is 1.13.x AND/OR 1.12.x
|
The MC version is 1.13.x AND/OR 1.12.x
|
||||||
|
|
||||||
Credits:
|
Credits:
|
||||||
ALISON - Space Echo
|
ALISON - Space Echo
|
||||||
https://www.youtube.com/watch?v=lPldcjlv3_Y
|
https://www.youtube.com/watch?v=lPldcjlv3_Y
|
||||||
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,16 +1,17 @@
|
||||||
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
|
||||||
Timestamps of playlist videos in the merged file:
|
JMC - Jesse's Minecraft Server.mkv
|
||||||
0:00: Jesse's Minecraft Server [Trailer - Mar.21]
|
Timestamps of playlist videos in the merged file:
|
||||||
5:00: Jesse's Minecraft Server [Trailer - Feb.27]
|
0:00: Jesse's Minecraft Server [Trailer - Mar.21]
|
||||||
9:00: Jesse's Minecraft Server [Trailer - Feb.1]
|
5:00: Jesse's Minecraft Server [Trailer - Feb.27]
|
||||||
JMC - Jesse's Minecraft Server.nfo
|
9:00: Jesse's Minecraft Server [Trailer - Feb.1]
|
||||||
NFO tags:
|
JMC - Jesse's Minecraft Server.nfo
|
||||||
musicvideo:
|
NFO tags:
|
||||||
album: Music Videos
|
musicvideo:
|
||||||
artist: JMC
|
album: Music Videos
|
||||||
title: Jesse's Minecraft Server
|
artist: JMC
|
||||||
year: 2011
|
title: Jesse's Minecraft Server
|
||||||
|
year: 2011
|
||||||
|
|
@ -1,46 +1,47 @@
|
||||||
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
|
||||||
NFO tags:
|
JMC - Jesse's Minecraft Server [Trailer - Feb.1].nfo
|
||||||
musicvideo:
|
NFO tags:
|
||||||
album: Music Videos
|
musicvideo:
|
||||||
artist: JMC
|
album: Music Videos
|
||||||
playlist_count: 3
|
artist: JMC
|
||||||
playlist_index: 3
|
playlist_count: 3
|
||||||
title: Jesse's Minecraft Server [Trailer - Feb.1]
|
playlist_index: 3
|
||||||
year: 2011
|
title: Jesse's Minecraft Server [Trailer - Feb.1]
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Feb.27]-thumb.jpg
|
year: 2011
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
JMC - Jesse's Minecraft Server [Trailer - Feb.27]-thumb.jpg
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Feb.27].mp4
|
JMC - Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Feb.27].nfo
|
JMC - Jesse's Minecraft Server [Trailer - Feb.27].mp4
|
||||||
NFO tags:
|
JMC - Jesse's Minecraft Server [Trailer - Feb.27].nfo
|
||||||
musicvideo:
|
NFO tags:
|
||||||
album: Music Videos
|
musicvideo:
|
||||||
artist: JMC
|
album: Music Videos
|
||||||
playlist_count: 3
|
artist: JMC
|
||||||
playlist_index: 2
|
playlist_count: 3
|
||||||
title: Jesse's Minecraft Server [Trailer - Feb.27]
|
playlist_index: 2
|
||||||
year: 2011
|
title: Jesse's Minecraft Server [Trailer - Feb.27]
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Mar.21]-thumb.jpg
|
year: 2011
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Mar.21].info.json
|
JMC - Jesse's Minecraft Server [Trailer - Mar.21]-thumb.jpg
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Mar.21].mp4
|
JMC - Jesse's Minecraft Server [Trailer - Mar.21].info.json
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Mar.21].nfo
|
JMC - Jesse's Minecraft Server [Trailer - Mar.21].mp4
|
||||||
NFO tags:
|
JMC - Jesse's Minecraft Server [Trailer - Mar.21].nfo
|
||||||
musicvideo:
|
NFO tags:
|
||||||
album: Music Videos
|
musicvideo:
|
||||||
artist: JMC
|
album: Music Videos
|
||||||
playlist_count: 3
|
artist: JMC
|
||||||
playlist_index: 1
|
playlist_count: 3
|
||||||
title: Jesse's Minecraft Server [Trailer - Mar.21]
|
playlist_index: 1
|
||||||
year: 2011
|
title: Jesse's Minecraft Server [Trailer - Mar.21]
|
||||||
poster.jpg
|
year: 2011
|
||||||
tvshow.nfo
|
poster.jpg
|
||||||
NFO tags:
|
tvshow.nfo
|
||||||
test:
|
NFO tags:
|
||||||
playlist_description: Trailers, Updates, etc
|
test:
|
||||||
playlist_title: Jesse's Minecraft Server
|
playlist_description: Trailers, Updates, etc
|
||||||
playlist_uploader: Project Zombie
|
playlist_title: Jesse's Minecraft Server
|
||||||
|
playlist_uploader: Project Zombie
|
||||||
|
|
@ -1,14 +1,15 @@
|
||||||
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
|
||||||
Video Tags:
|
JMC - Oblivion Mod "Falcor" p.1.mp4
|
||||||
title: Oblivion Mod "Falcor" p.1
|
Video Tags:
|
||||||
JMC - Oblivion Mod "Falcor" p.1.nfo
|
|
||||||
NFO tags:
|
|
||||||
musicvideo:
|
|
||||||
album: Music Videos
|
|
||||||
artist: JMC
|
|
||||||
title: Oblivion Mod "Falcor" p.1
|
title: Oblivion Mod "Falcor" p.1
|
||||||
year: 2010
|
JMC - Oblivion Mod "Falcor" p.1.nfo
|
||||||
|
NFO tags:
|
||||||
|
musicvideo:
|
||||||
|
album: Music Videos
|
||||||
|
artist: JMC
|
||||||
|
title: Oblivion Mod "Falcor" p.1
|
||||||
|
year: 2010
|
||||||
Loading…
Reference in a new issue