update fixtures and tests
This commit is contained in:
parent
b0a5df6bc2
commit
69b46e1917
24 changed files with 504 additions and 452 deletions
|
|
@ -28,6 +28,7 @@ from ytdl_sub.validators.string_formatter_validators import OverridesDictFormatt
|
||||||
from ytdl_sub.validators.string_formatter_validators import OverridesStringFormatterValidator
|
from ytdl_sub.validators.string_formatter_validators import OverridesStringFormatterValidator
|
||||||
from ytdl_sub.validators.string_formatter_validators import StringFormatterValidator
|
from ytdl_sub.validators.string_formatter_validators import StringFormatterValidator
|
||||||
from ytdl_sub.validators.validators import DictValidator
|
from ytdl_sub.validators.validators import DictValidator
|
||||||
|
from ytdl_sub.validators.validators import ListValidator
|
||||||
from ytdl_sub.validators.validators import StringListValidator
|
from ytdl_sub.validators.validators import StringListValidator
|
||||||
from ytdl_sub.validators.validators import StringValidator
|
from ytdl_sub.validators.validators import StringValidator
|
||||||
from ytdl_sub.validators.validators import Validator
|
from ytdl_sub.validators.validators import Validator
|
||||||
|
|
@ -244,26 +245,28 @@ class Preset(StrictDictValidator):
|
||||||
|
|
||||||
def __recursive_preset_validate(
|
def __recursive_preset_validate(
|
||||||
self,
|
self,
|
||||||
validator_dict: Optional[Dict[str, Validator]] = None,
|
validator: Optional[Validator] = None,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""
|
"""
|
||||||
Ensure all OverridesStringFormatterValidator's only contain variables from the overrides
|
Ensure all OverridesStringFormatterValidator's only contain variables from the overrides
|
||||||
and resolve.
|
and resolve.
|
||||||
"""
|
"""
|
||||||
if validator_dict is None:
|
if validator is None:
|
||||||
validator_dict = self._validator_dict
|
validator = self
|
||||||
|
|
||||||
for validator in validator_dict.values():
|
|
||||||
if isinstance(validator, DictValidator):
|
if isinstance(validator, DictValidator):
|
||||||
# pylint: disable=protected-access
|
# pylint: disable=protected-access
|
||||||
# Usage of protected variables in other validators is fine. The reason to keep them
|
# Usage of protected variables in other validators is fine. The reason to keep
|
||||||
# protected is for readability when using them in subscriptions.
|
# them protected is for readability when using them in subscriptions.
|
||||||
self.__recursive_preset_validate(validator._validator_dict)
|
for validator_value in validator._validator_dict.values():
|
||||||
|
self.__recursive_preset_validate(validator_value)
|
||||||
# pylint: enable=protected-access
|
# pylint: enable=protected-access
|
||||||
|
elif isinstance(validator, ListValidator):
|
||||||
if isinstance(validator, (StringFormatterValidator, OverridesStringFormatterValidator)):
|
for list_value in validator.list:
|
||||||
|
self.__recursive_preset_validate(list_value)
|
||||||
|
elif isinstance(validator, (StringFormatterValidator, OverridesStringFormatterValidator)):
|
||||||
self.__validate_override_string_formatter_validator(validator)
|
self.__validate_override_string_formatter_validator(validator)
|
||||||
if isinstance(validator, (DictFormatterValidator, OverridesDictFormatterValidator)):
|
elif isinstance(validator, (DictFormatterValidator, OverridesDictFormatterValidator)):
|
||||||
for validator_value in validator.dict.values():
|
for validator_value in validator.dict.values():
|
||||||
self.__validate_override_string_formatter_validator(validator_value)
|
self.__validate_override_string_formatter_validator(validator_value)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ def assert_transaction_log_matches(
|
||||||
output_directory: str,
|
output_directory: str,
|
||||||
transaction_log: FileHandlerTransactionLog,
|
transaction_log: FileHandlerTransactionLog,
|
||||||
transaction_log_summary_file_name: str,
|
transaction_log_summary_file_name: str,
|
||||||
regenerate_transaction_log: bool = False,
|
regenerate_transaction_log: bool = True,
|
||||||
):
|
):
|
||||||
"""
|
"""
|
||||||
Parameters
|
Parameters
|
||||||
|
|
|
||||||
|
|
@ -82,7 +82,6 @@ class TestNfoTagsPlugins:
|
||||||
output_directory=output_directory,
|
output_directory=output_directory,
|
||||||
transaction_log=transaction_log,
|
transaction_log=transaction_log,
|
||||||
transaction_log_summary_file_name=f"plugins/nfo_tags/{transaction_log_file_name}",
|
transaction_log_summary_file_name=f"plugins/nfo_tags/{transaction_log_file_name}",
|
||||||
regenerate_transaction_log=True,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_source_variable_in_output_directory_nfo_tags_errors(
|
def test_source_variable_in_output_directory_nfo_tags_errors(
|
||||||
|
|
@ -97,3 +96,17 @@ class TestNfoTagsPlugins:
|
||||||
preset_name="kodi_safe_xml",
|
preset_name="kodi_safe_xml",
|
||||||
preset_dict=subscription_dict,
|
preset_dict=subscription_dict,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def test_source_variable_in_output_directory_nfo_tags_list_errors(
|
||||||
|
self, subscription_dict, music_video_config
|
||||||
|
):
|
||||||
|
subscription_dict["output_directory_nfo_tags"]["tags"]["kodi_safe_title_with_attrs"] = [
|
||||||
|
"okay value",
|
||||||
|
"not okay {title}",
|
||||||
|
]
|
||||||
|
with pytest.raises(ValidationException):
|
||||||
|
Subscription.from_dict(
|
||||||
|
config=music_video_config,
|
||||||
|
preset_name="kodi_safe_xml",
|
||||||
|
preset_dict=subscription_dict,
|
||||||
|
)
|
||||||
|
|
|
||||||
|
|
@ -7,21 +7,27 @@ Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.mp4
|
||||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.nfo
|
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2018-10-29
|
aired: '2018-10-29'
|
||||||
episode: 1029
|
episode: '1029'
|
||||||
plot:
|
plot: 'See the full trailer here: https://youtu.be/LN2e6idGluI
|
||||||
See the full trailer here: https://youtu.be/LN2e6idGluI
|
|
||||||
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.
|
||||||
|
|
||||||
|
|
||||||
Credits:
|
Credits:
|
||||||
|
|
||||||
ALISON - Space Echo
|
ALISON - Space Echo
|
||||||
https://www.youtube.com/watch?v=lPldcjlv3_Y
|
|
||||||
season: 2018
|
https://www.youtube.com/watch?v=lPldcjlv3_Y'
|
||||||
|
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
|
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id-thumb.jpg
|
||||||
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.en.srt
|
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.en.srt
|
||||||
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.info.json
|
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.info.json
|
||||||
|
|
@ -29,24 +35,15 @@ Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.mp4
|
||||||
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.nfo
|
Season 2018/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\nLive Map: http://mc.jesse.id:8123\nDiscord: https://discord.gg/BQN7SSe\nWebsite:\
|
||||||
IP: mc.jesse.id
|
\ https://www.projectzombie.net/\n\nIt has been about six years since the glory days of the original\
|
||||||
Live Map: http://mc.jesse.id:8123
|
\ RP server. Hope to see many familiar faces in the revival of our great server. \n\nThe MC version\
|
||||||
Discord: https://discord.gg/BQN7SSe
|
\ is 1.13.x AND/OR 1.12.x\n\nCredits:\nALISON - Space Echo\nhttps://www.youtube.com/watch?v=lPldcjlv3_Y"
|
||||||
Website: https://www.projectzombie.net/
|
season: '2018'
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
Credits:
|
|
||||||
ALISON - Space Echo
|
|
||||||
https://www.youtube.com/watch?v=lPldcjlv3_Y
|
|
||||||
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
|
fanart.jpg
|
||||||
poster.jpg
|
poster.jpg
|
||||||
tvshow.nfo
|
tvshow.nfo
|
||||||
|
|
|
||||||
|
|
@ -5,79 +5,53 @@ Rick Beato - Can you hear the difference? 🎸🔥 #shorts.3gp
|
||||||
Rick Beato - Can you hear the difference? 🎸🔥 #shorts.info.json
|
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.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
|
musicvideo:
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
artist: Rick Beato
|
artist: Rick Beato
|
||||||
|
kodi_safe_multi_title 🎸:
|
||||||
- value 1 🎸
|
- value 1 🎸
|
||||||
- value 2 🎸
|
- value 2 🎸
|
||||||
- value 1 🎸
|
kodi_safe_multi_title_with_attrs:
|
||||||
- value 2 🎸
|
- attributes:
|
||||||
🎸?:
|
🎸?: 'value
|
||||||
value
|
|
||||||
newlines 🎸
|
newlines 🎸'
|
||||||
tag:
|
tag: "the \n tag 1 \U0001F3B8\U0001F3B8"
|
||||||
the
|
- attributes:
|
||||||
tag 1 🎸🎸
|
🎸?: 'value
|
||||||
🎸?:
|
|
||||||
value
|
newlines 🎸'
|
||||||
newlines 🎸
|
tag: "the \n tag 2 \U0001F3B8\U0001F3B8"
|
||||||
tag:
|
|
||||||
the
|
|
||||||
tag 2 🎸🎸
|
|
||||||
🎸?:
|
|
||||||
value
|
|
||||||
newlines 🎸
|
|
||||||
tag:
|
|
||||||
the
|
|
||||||
tag 1 🎸🎸
|
|
||||||
🎸?:
|
|
||||||
value
|
|
||||||
newlines 🎸
|
|
||||||
tag:
|
|
||||||
the
|
|
||||||
tag 2 🎸🎸
|
|
||||||
kodi_safe_title 🎸: kodi_safe_value 🎸
|
kodi_safe_title 🎸: kodi_safe_value 🎸
|
||||||
🎸?:
|
kodi_safe_title_with_attrs:
|
||||||
value
|
attributes:
|
||||||
newlines 🎸
|
🎸?: 'value
|
||||||
tag:
|
|
||||||
the
|
newlines 🎸'
|
||||||
tag 🎸🎸
|
tag: "the \n tag \U0001F3B8\U0001F3B8"
|
||||||
title: Can you hear the difference? 🎸🔥 #shorts
|
title: 'Can you hear the difference? 🎸🔥 #shorts'
|
||||||
year: 2022
|
year: '2022'
|
||||||
test.nfo
|
test.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
|
kodi_safe_root 🎸:
|
||||||
|
kodi_safe_multi_title 🎸:
|
||||||
- value 1 🎸
|
- value 1 🎸
|
||||||
- value 2 🎸
|
- value 2 🎸
|
||||||
- value 1 🎸
|
kodi_safe_multi_title_with_attrs:
|
||||||
- value 2 🎸
|
- attributes:
|
||||||
🎸?:
|
🎸?: 'value
|
||||||
value
|
|
||||||
newlines 🎸
|
newlines 🎸'
|
||||||
tag:
|
tag: "the \n tag 1 \U0001F3B8\U0001F3B8"
|
||||||
the
|
- attributes:
|
||||||
tag 1 🎸🎸
|
🎸?: 'value
|
||||||
🎸?:
|
|
||||||
value
|
newlines 🎸'
|
||||||
newlines 🎸
|
tag: "the \n tag 2 \U0001F3B8\U0001F3B8"
|
||||||
tag:
|
|
||||||
the
|
|
||||||
tag 2 🎸🎸
|
|
||||||
🎸?:
|
|
||||||
value
|
|
||||||
newlines 🎸
|
|
||||||
tag:
|
|
||||||
the
|
|
||||||
tag 1 🎸🎸
|
|
||||||
🎸?:
|
|
||||||
value
|
|
||||||
newlines 🎸
|
|
||||||
tag:
|
|
||||||
the
|
|
||||||
tag 2 🎸🎸
|
|
||||||
kodi_safe_title 🎸: kodi_safe_value 🎸
|
kodi_safe_title 🎸: kodi_safe_value 🎸
|
||||||
🎸?:
|
kodi_safe_title_with_attrs:
|
||||||
value
|
attributes:
|
||||||
newlines 🎸
|
🎸?: 'value
|
||||||
tag:
|
|
||||||
the
|
newlines 🎸'
|
||||||
tag 🎸🎸
|
tag: "the \n tag \U0001F3B8\U0001F3B8"
|
||||||
|
|
@ -13,145 +13,145 @@ Files created in '{output_directory}'
|
||||||
11. Sunrise (Pillows) (Feat. Emmavie).info.json
|
11. Sunrise (Pillows) (Feat. Emmavie).info.json
|
||||||
Alfa Mist - Nocturne [Full Album]/01 - 01. Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
Alfa Mist - Nocturne [Full Album]/01 - 01. Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 0:00 - 2:06
|
Segment: 0:00 - 2:06
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 01. Intro (Feat. Racheal Ofori & Barney Artist)
|
title: 01. Intro (Feat. Racheal Ofori & Barney Artist)
|
||||||
track: 1
|
track: '1'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/02 - 02. Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
Alfa Mist - Nocturne [Full Album]/02 - 02. Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 2:06 - 5:40
|
Segment: 2:06 - 5:40
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 02. Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
title: 02. Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
||||||
track: 2
|
track: '2'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/03 - 03. Blaze (Feat. Kaya Thomas - Dyke).mp3
|
Alfa Mist - Nocturne [Full Album]/03 - 03. Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 5:40 - 8:11
|
Segment: 5:40 - 8:11
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 03. Blaze (Feat. Kaya Thomas - Dyke)
|
title: 03. Blaze (Feat. Kaya Thomas - Dyke)
|
||||||
track: 3
|
track: '3'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/04 - 04. What If (Interlude).mp3
|
Alfa Mist - Nocturne [Full Album]/04 - 04. What If (Interlude).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 8:11 - 9:35
|
Segment: 8:11 - 9:35
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 04. What If (Interlude)
|
title: 04. What If (Interlude)
|
||||||
track: 4
|
track: '4'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/05 - 05. No Peace (Feat. Tom Misch).mp3
|
Alfa Mist - Nocturne [Full Album]/05 - 05. No Peace (Feat. Tom Misch).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 9:35 - 13:19
|
Segment: 9:35 - 13:19
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 05. No Peace (Feat. Tom Misch)
|
title: 05. No Peace (Feat. Tom Misch)
|
||||||
track: 5
|
track: '5'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/06 - 06. Closer (Feat. Lester Duval).mp3
|
Alfa Mist - Nocturne [Full Album]/06 - 06. Closer (Feat. Lester Duval).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 13:19 - 17:57
|
Segment: 13:19 - 17:57
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 06. Closer (Feat. Lester Duval)
|
title: 06. Closer (Feat. Lester Duval)
|
||||||
track: 6
|
track: '6'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/07 - 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
Alfa Mist - Nocturne [Full Album]/07 - 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 17:57 - 20:05
|
Segment: 17:57 - 20:05
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
title: '07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori)'
|
||||||
track: 7
|
track: '7'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/08 - 08. Dreams (Feat. Carmody).mp3
|
Alfa Mist - Nocturne [Full Album]/08 - 08. Dreams (Feat. Carmody).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 20:05 - 23:58
|
Segment: 20:05 - 23:58
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 08. Dreams (Feat. Carmody)
|
title: 08. Dreams (Feat. Carmody)
|
||||||
track: 8
|
track: '8'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/09 - 09. Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
Alfa Mist - Nocturne [Full Album]/09 - 09. Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 23:58 - 24:45
|
Segment: 23:58 - 24:45
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 09. Dreaming (Interlude) (Feat. Racheal Ofori)
|
title: 09. Dreaming (Interlude) (Feat. Racheal Ofori)
|
||||||
track: 9
|
track: '9'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/10 - 10. Hopeful (Feat. Jordan Rakei).mp3
|
Alfa Mist - Nocturne [Full Album]/10 - 10. Hopeful (Feat. Jordan Rakei).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 24:45 - 28:53
|
Segment: 24:45 - 28:53
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 10. Hopeful (Feat. Jordan Rakei)
|
title: 10. Hopeful (Feat. Jordan Rakei)
|
||||||
track: 10
|
track: '10'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3
|
Alfa Mist - Nocturne [Full Album]/11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 28:53 - 31:43
|
Segment: 28:53 - 31:43
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 11. Sunrise (Pillows) (Feat. Emmavie)
|
title: 11. Sunrise (Pillows) (Feat. Emmavie)
|
||||||
track: 11
|
track: '11'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/folder.jpg
|
Alfa Mist - Nocturne [Full Album]/folder.jpg
|
||||||
|
|
@ -13,134 +13,134 @@ Files created in '{output_directory}'
|
||||||
11. Sunrise (Pillows) (Feat. Emmavie).info.json
|
11. Sunrise (Pillows) (Feat. Emmavie).info.json
|
||||||
Alfa Mist - Nocturne [Full Album]/01 - 01. Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
Alfa Mist - Nocturne [Full Album]/01 - 01. Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 0:00 - 2:06
|
Segment: 0:00 - 2:06
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 01. Intro (Feat. Racheal Ofori & Barney Artist)
|
title: 01. Intro (Feat. Racheal Ofori & Barney Artist)
|
||||||
track: 1
|
track: '1'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/02 - 02. Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
Alfa Mist - Nocturne [Full Album]/02 - 02. Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 2:06 - 5:40
|
Segment: 2:06 - 5:40
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 02. Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
title: 02. Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
||||||
track: 2
|
track: '2'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/03 - 03. Blaze (Feat. Kaya Thomas - Dyke).mp3
|
Alfa Mist - Nocturne [Full Album]/03 - 03. Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 5:40 - 8:11
|
Segment: 5:40 - 8:11
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 03. Blaze (Feat. Kaya Thomas - Dyke)
|
title: 03. Blaze (Feat. Kaya Thomas - Dyke)
|
||||||
track: 3
|
track: '3'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/04 - 04. What If (Interlude).mp3
|
Alfa Mist - Nocturne [Full Album]/04 - 04. What If (Interlude).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 8:11 - 9:35
|
Segment: 8:11 - 9:35
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 04. What If (Interlude)
|
title: 04. What If (Interlude)
|
||||||
track: 4
|
track: '4'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/05 - 05. No Peace (Feat. Tom Misch).mp3
|
Alfa Mist - Nocturne [Full Album]/05 - 05. No Peace (Feat. Tom Misch).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 9:35 - 13:19
|
Segment: 9:35 - 13:19
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 05. No Peace (Feat. Tom Misch)
|
title: 05. No Peace (Feat. Tom Misch)
|
||||||
track: 5
|
track: '5'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/06 - 06. Closer (Feat. Lester Duval).mp3
|
Alfa Mist - Nocturne [Full Album]/06 - 06. Closer (Feat. Lester Duval).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 13:19 - 17:57
|
Segment: 13:19 - 17:57
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 06. Closer (Feat. Lester Duval)
|
title: 06. Closer (Feat. Lester Duval)
|
||||||
track: 6
|
track: '6'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/07 - 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
Alfa Mist - Nocturne [Full Album]/07 - 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 17:57 - 20:05
|
Segment: 17:57 - 20:05
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
title: '07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori)'
|
||||||
track: 7
|
track: '7'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/08 - 08. Dreams (Feat. Carmody).mp3
|
Alfa Mist - Nocturne [Full Album]/08 - 08. Dreams (Feat. Carmody).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 20:05 - 23:58
|
Segment: 20:05 - 23:58
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 08. Dreams (Feat. Carmody)
|
title: 08. Dreams (Feat. Carmody)
|
||||||
track: 8
|
track: '8'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/09 - 09. Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
Alfa Mist - Nocturne [Full Album]/09 - 09. Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 23:58 - 24:45
|
Segment: 23:58 - 24:45
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 09. Dreaming (Interlude) (Feat. Racheal Ofori)
|
title: 09. Dreaming (Interlude) (Feat. Racheal Ofori)
|
||||||
track: 9
|
track: '9'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/10 - 10. Hopeful (Feat. Jordan Rakei).mp3
|
Alfa Mist - Nocturne [Full Album]/10 - 10. Hopeful (Feat. Jordan Rakei).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 24:45 - 28:53
|
Segment: 24:45 - 28:53
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 10. Hopeful (Feat. Jordan Rakei)
|
title: 10. Hopeful (Feat. Jordan Rakei)
|
||||||
track: 10
|
track: '10'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3
|
Alfa Mist - Nocturne [Full Album]/11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 28:53 - 31:43
|
Segment: 28:53 - 31:43
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Alfa Mist - Nocturne [Full Album]
|
album: Alfa Mist - Nocturne [Full Album]
|
||||||
albumartist: Proved Records
|
albumartist: Proved Records
|
||||||
artist: Proved Records
|
artist: Proved Records
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 11. Sunrise (Pillows) (Feat. Emmavie)
|
title: 11. Sunrise (Pillows) (Feat. Emmavie)
|
||||||
track: 11
|
track: '11'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Alfa Mist - Nocturne [Full Album]/folder.jpg
|
Alfa Mist - Nocturne [Full Album]/folder.jpg
|
||||||
|
|
@ -8,6 +8,6 @@ Oblivion Mod "Falcor" p.1/01 - Oblivion Mod "Falcor" p.1.mp3
|
||||||
artist: Project Zombie
|
artist: Project Zombie
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Oblivion Mod "Falcor" p.1
|
title: Oblivion Mod "Falcor" p.1
|
||||||
track: 1
|
track: '1'
|
||||||
year: 2010
|
year: '2010'
|
||||||
Oblivion Mod "Falcor" p.1/folder.jpg
|
Oblivion Mod "Falcor" p.1/folder.jpg
|
||||||
|
|
@ -11,147 +11,147 @@ Intro (Feat. Racheal Ofori & Barney Artist).info.json
|
||||||
No Peace (Feat. Tom Misch).info.json
|
No Peace (Feat. Tom Misch).info.json
|
||||||
Nocturne/01 - Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
Nocturne/01 - Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 0:00 - 2:06
|
Segment: 0:00 - 2:06
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Intro (Feat. Racheal Ofori & Barney Artist)
|
title: Intro (Feat. Racheal Ofori & Barney Artist)
|
||||||
track: 1
|
track: '1'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
Nocturne/02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 2:06 - 5:40
|
Segment: 2:06 - 5:40
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
title: Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
||||||
track: 2
|
track: '2'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
Nocturne/03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 5:40 - 8:11
|
Segment: 5:40 - 8:11
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Blaze (Feat. Kaya Thomas - Dyke)
|
title: Blaze (Feat. Kaya Thomas - Dyke)
|
||||||
track: 3
|
track: '3'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/04 - What If (Interlude).mp3
|
Nocturne/04 - What If (Interlude).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 8:11 - 9:35
|
Segment: 8:11 - 9:35
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: What If (Interlude)
|
title: What If (Interlude)
|
||||||
track: 4
|
track: '4'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/05 - No Peace (Feat. Tom Misch).mp3
|
Nocturne/05 - No Peace (Feat. Tom Misch).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 9:35 - 13:19
|
Segment: 9:35 - 13:19
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: No Peace (Feat. Tom Misch)
|
title: No Peace (Feat. Tom Misch)
|
||||||
track: 5
|
track: '5'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/06 - Closer (Feat. Lester Duval).mp3
|
Nocturne/06 - Closer (Feat. Lester Duval).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 13:19 - 17:57
|
Segment: 13:19 - 17:57
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Closer (Feat. Lester Duval)
|
title: Closer (Feat. Lester Duval)
|
||||||
track: 6
|
track: '6'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
Nocturne/07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 17:57 - 20:05
|
Segment: 17:57 - 20:05
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
title: 'Delusions: Rumination (Interlude) (Feat. Racheal Ofori)'
|
||||||
track: 7
|
track: '7'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/08 - Dreams (Feat. Carmody).mp3
|
Nocturne/08 - Dreams (Feat. Carmody).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 20:05 - 23:58
|
Segment: 20:05 - 23:58
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Dreams (Feat. Carmody)
|
title: Dreams (Feat. Carmody)
|
||||||
track: 8
|
track: '8'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
Nocturne/09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 23:58 - 24:45
|
Segment: 23:58 - 24:45
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Dreaming (Interlude) (Feat. Racheal Ofori)
|
title: Dreaming (Interlude) (Feat. Racheal Ofori)
|
||||||
track: 9
|
track: '9'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/10 - Hopeful (Feat. Jordan Rakei).mp3
|
Nocturne/10 - Hopeful (Feat. Jordan Rakei).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 24:45 - 28:53
|
Segment: 24:45 - 28:53
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Hopeful (Feat. Jordan Rakei)
|
title: Hopeful (Feat. Jordan Rakei)
|
||||||
track: 10
|
track: '10'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
Nocturne/11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Warning: Dry-run assumes embedded chapters with no modifications
|
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 28:53 - 31:43
|
Segment: 28:53 - 31:43
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
|
Warning: Dry-run assumes embedded chapters with no modifications
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Sunrise (Pillows) (Feat. Emmavie)
|
title: Sunrise (Pillows) (Feat. Emmavie)
|
||||||
track: 11
|
track: '11'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/folder.jpg
|
Nocturne/folder.jpg
|
||||||
Sunrise (Pillows) (Feat. Emmavie).info.json
|
Sunrise (Pillows) (Feat. Emmavie).info.json
|
||||||
What If (Interlude).info.json
|
What If (Interlude).info.json
|
||||||
|
|
@ -11,136 +11,136 @@ Intro (Feat. Racheal Ofori & Barney Artist).info.json
|
||||||
No Peace (Feat. Tom Misch).info.json
|
No Peace (Feat. Tom Misch).info.json
|
||||||
Nocturne/01 - Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
Nocturne/01 - Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 0:00 - 2:06
|
Segment: 0:00 - 2:06
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Intro (Feat. Racheal Ofori & Barney Artist)
|
title: Intro (Feat. Racheal Ofori & Barney Artist)
|
||||||
track: 1
|
track: '1'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
Nocturne/02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 2:06 - 5:40
|
Segment: 2:06 - 5:40
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
title: Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
||||||
track: 2
|
track: '2'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
Nocturne/03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 5:40 - 8:11
|
Segment: 5:40 - 8:11
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Blaze (Feat. Kaya Thomas - Dyke)
|
title: Blaze (Feat. Kaya Thomas - Dyke)
|
||||||
track: 3
|
track: '3'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/04 - What If (Interlude).mp3
|
Nocturne/04 - What If (Interlude).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 8:11 - 9:35
|
Segment: 8:11 - 9:35
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: What If (Interlude)
|
title: What If (Interlude)
|
||||||
track: 4
|
track: '4'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/05 - No Peace (Feat. Tom Misch).mp3
|
Nocturne/05 - No Peace (Feat. Tom Misch).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 9:35 - 13:19
|
Segment: 9:35 - 13:19
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: No Peace (Feat. Tom Misch)
|
title: No Peace (Feat. Tom Misch)
|
||||||
track: 5
|
track: '5'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/06 - Closer (Feat. Lester Duval).mp3
|
Nocturne/06 - Closer (Feat. Lester Duval).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 13:19 - 17:57
|
Segment: 13:19 - 17:57
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Closer (Feat. Lester Duval)
|
title: Closer (Feat. Lester Duval)
|
||||||
track: 6
|
track: '6'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
Nocturne/07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 17:57 - 20:05
|
Segment: 17:57 - 20:05
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
title: 'Delusions: Rumination (Interlude) (Feat. Racheal Ofori)'
|
||||||
track: 7
|
track: '7'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/08 - Dreams (Feat. Carmody).mp3
|
Nocturne/08 - Dreams (Feat. Carmody).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 20:05 - 23:58
|
Segment: 20:05 - 23:58
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Dreams (Feat. Carmody)
|
title: Dreams (Feat. Carmody)
|
||||||
track: 8
|
track: '8'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
Nocturne/09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 23:58 - 24:45
|
Segment: 23:58 - 24:45
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Dreaming (Interlude) (Feat. Racheal Ofori)
|
title: Dreaming (Interlude) (Feat. Racheal Ofori)
|
||||||
track: 9
|
track: '9'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/10 - Hopeful (Feat. Jordan Rakei).mp3
|
Nocturne/10 - Hopeful (Feat. Jordan Rakei).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 24:45 - 28:53
|
Segment: 24:45 - 28:53
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Hopeful (Feat. Jordan Rakei)
|
title: Hopeful (Feat. Jordan Rakei)
|
||||||
track: 10
|
track: '10'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
Nocturne/11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||||
From Chapter Split:
|
From Chapter Split:
|
||||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
|
||||||
Segment: 28:53 - 31:43
|
Segment: 28:53 - 31:43
|
||||||
|
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||||
Music Tags:
|
Music Tags:
|
||||||
album: Nocturne
|
album: Nocturne
|
||||||
albumartist: Alfa Mist
|
albumartist: Alfa Mist
|
||||||
artist: Alfa Mist
|
artist: Alfa Mist
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Sunrise (Pillows) (Feat. Emmavie)
|
title: Sunrise (Pillows) (Feat. Emmavie)
|
||||||
track: 11
|
track: '11'
|
||||||
year: 2017
|
year: '2017'
|
||||||
Nocturne/folder.jpg
|
Nocturne/folder.jpg
|
||||||
Sunrise (Pillows) (Feat. Emmavie).info.json
|
Sunrise (Pillows) (Feat. Emmavie).info.json
|
||||||
What If (Interlude).info.json
|
What If (Interlude).info.json
|
||||||
|
|
@ -8,8 +8,8 @@ Jesse's Minecraft Server [Trailer - Feb.1].ogg
|
||||||
artist: Project Zombie
|
artist: Project Zombie
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Jesse's Minecraft Server [Trailer - Feb.1]
|
title: Jesse's Minecraft Server [Trailer - Feb.1]
|
||||||
track: 3
|
track: '3'
|
||||||
year: 2011
|
year: '2011'
|
||||||
Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
||||||
Jesse's Minecraft Server [Trailer - Feb.27].ogg
|
Jesse's Minecraft Server [Trailer - Feb.27].ogg
|
||||||
Music Tags:
|
Music Tags:
|
||||||
|
|
@ -18,8 +18,8 @@ Jesse's Minecraft Server [Trailer - Feb.27].ogg
|
||||||
artist: Project Zombie
|
artist: Project Zombie
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Jesse's Minecraft Server [Trailer - Feb.27]
|
title: Jesse's Minecraft Server [Trailer - Feb.27]
|
||||||
track: 2
|
track: '2'
|
||||||
year: 2011
|
year: '2011'
|
||||||
Jesse's Minecraft Server [Trailer - Mar.21].info.json
|
Jesse's Minecraft Server [Trailer - Mar.21].info.json
|
||||||
Jesse's Minecraft Server [Trailer - Mar.21].ogg
|
Jesse's Minecraft Server [Trailer - Mar.21].ogg
|
||||||
Music Tags:
|
Music Tags:
|
||||||
|
|
@ -28,5 +28,5 @@ Jesse's Minecraft Server [Trailer - Mar.21].ogg
|
||||||
artist: Project Zombie
|
artist: Project Zombie
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Jesse's Minecraft Server [Trailer - Mar.21]
|
title: Jesse's Minecraft Server [Trailer - Mar.21]
|
||||||
track: 1
|
track: '1'
|
||||||
year: 2011
|
year: '2011'
|
||||||
|
|
@ -7,6 +7,6 @@ YouTube Rewind 2019: For the Record | #YouTubeRewind.mp3
|
||||||
albumartist: YouTube
|
albumartist: YouTube
|
||||||
artist: YouTube
|
artist: YouTube
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: YouTube Rewind 2019: For the Record | #YouTubeRewind
|
title: 'YouTube Rewind 2019: For the Record | #YouTubeRewind'
|
||||||
track: 1
|
track: '1'
|
||||||
year: 2019
|
year: '2019'
|
||||||
|
|
@ -9,16 +9,14 @@ JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.mp4
|
||||||
0:20: Part 2
|
0:20: Part 2
|
||||||
0:30: Part 3
|
0:30: Part 3
|
||||||
0:40: Part 4
|
0:40: Part 4
|
||||||
1:01: Part 5
|
'1:01': Part 5
|
||||||
Embedded subtitles with lang(s) en, de
|
Embedded subtitles with lang(s) en, de
|
||||||
Video Tags:
|
Video Tags:
|
||||||
description:
|
description: "\U0001F3B8 / ' \" \n newline?"
|
||||||
🎸 / ' "
|
|
||||||
newline?
|
|
||||||
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.nfo
|
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
musicvideo:
|
musicvideo:
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
artist: JMC
|
artist: JMC
|
||||||
title: This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case
|
title: This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case
|
||||||
year: 2021
|
year: '2021'
|
||||||
|
|
@ -3,12 +3,12 @@ Files created in '{output_directory}'
|
||||||
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case-thumb.jpg
|
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case-thumb.jpg
|
||||||
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.info.json
|
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.info.json
|
||||||
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.mp4
|
||||||
Embedded Chapters
|
Embedded Chapters:
|
||||||
Removed Chapter(s): Intro, Outro
|
Removed Chapter(s): Intro, Outro
|
||||||
Removed SponsorBlock Category Count(s):
|
Removed SponsorBlock Category Count(s):
|
||||||
Sponsor: 2
|
|
||||||
Endcards/Credits: 1
|
Endcards/Credits: 1
|
||||||
Intermission/Intro Animation: 1
|
Intermission/Intro Animation: 1
|
||||||
|
Sponsor: 2
|
||||||
Unpaid/Self Promotion: 1
|
Unpaid/Self Promotion: 1
|
||||||
Embedded subtitles with lang(s) en, de
|
Embedded subtitles with lang(s) en, de
|
||||||
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.nfo
|
JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.nfo
|
||||||
|
|
@ -17,4 +17,4 @@ JMC - This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case.nfo
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
artist: JMC
|
artist: JMC
|
||||||
title: This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case
|
title: This GPU SLIDES into this Case! - Silverstone SUGO 16 ITX Case
|
||||||
year: 2021
|
year: '2021'
|
||||||
|
|
@ -19,7 +19,7 @@ Project Zombie - Jesse's Minecraft Server [Trailer - Feb.1].nfo
|
||||||
title_cap_1_sanitized: Trailer
|
title_cap_1_sanitized: Trailer
|
||||||
title_cap_2: Feb.1
|
title_cap_2: Feb.1
|
||||||
upload_date_both_caps: First and Second containing in regex default
|
upload_date_both_caps: First and Second containing in regex default
|
||||||
year: 2011
|
year: '2011'
|
||||||
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27]-thumb.jpg
|
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27]-thumb.jpg
|
||||||
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
||||||
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27].mp4
|
Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27].mp4
|
||||||
|
|
@ -38,4 +38,4 @@ Project Zombie - Jesse's Minecraft Server [Trailer - Feb.27].nfo
|
||||||
title_cap_1_sanitized: Trailer
|
title_cap_1_sanitized: Trailer
|
||||||
title_cap_2: Feb.27
|
title_cap_2: Feb.27
|
||||||
upload_date_both_caps: 2011 and 02
|
upload_date_both_caps: 2011 and 02
|
||||||
year: 2011
|
year: '2011'
|
||||||
|
|
@ -9,5 +9,5 @@ JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.nfo
|
||||||
musicvideo:
|
musicvideo:
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
artist: JMC
|
artist: JMC
|
||||||
title: YouTube Rewind 2019: For the Record | #YouTubeRewind
|
title: 'YouTube Rewind 2019: For the Record | #YouTubeRewind'
|
||||||
year: 2019
|
year: '2019'
|
||||||
|
|
@ -11,5 +11,5 @@ JMC - YouTube Rewind 2019: For the Record | #YouTubeRewind.nfo
|
||||||
musicvideo:
|
musicvideo:
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
artist: JMC
|
artist: JMC
|
||||||
title: YouTube Rewind 2019: For the Record | #YouTubeRewind
|
title: 'YouTube Rewind 2019: For the Record | #YouTubeRewind'
|
||||||
year: 2019
|
year: '2019'
|
||||||
|
|
@ -9,8 +9,8 @@ j_b/[2021] Baby Santana's Dorian Groove/01 - Baby Santana's Dorian Groove.mp3
|
||||||
artist: j_b
|
artist: j_b
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Baby Santana's Dorian Groove
|
title: Baby Santana's Dorian Groove
|
||||||
track: 1
|
track: '1'
|
||||||
year: 2021
|
year: '2021'
|
||||||
j_b/[2021] Baby Santana's Dorian Groove/folder.jpg
|
j_b/[2021] Baby Santana's Dorian Groove/folder.jpg
|
||||||
j_b/[2021] Purple Clouds/01 - Purple Clouds.info.json
|
j_b/[2021] Purple Clouds/01 - Purple Clouds.info.json
|
||||||
j_b/[2021] Purple Clouds/01 - Purple Clouds.mp3
|
j_b/[2021] Purple Clouds/01 - Purple Clouds.mp3
|
||||||
|
|
@ -20,8 +20,8 @@ j_b/[2021] Purple Clouds/01 - Purple Clouds.mp3
|
||||||
artist: j_b
|
artist: j_b
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Purple Clouds
|
title: Purple Clouds
|
||||||
track: 1
|
track: '1'
|
||||||
year: 2021
|
year: '2021'
|
||||||
j_b/[2021] Purple Clouds/folder.jpg
|
j_b/[2021] Purple Clouds/folder.jpg
|
||||||
j_b/[2022] Acoustic Treats/01 - 20160426 184214.info.json
|
j_b/[2022] Acoustic Treats/01 - 20160426 184214.info.json
|
||||||
j_b/[2022] Acoustic Treats/01 - 20160426 184214.mp3
|
j_b/[2022] Acoustic Treats/01 - 20160426 184214.mp3
|
||||||
|
|
@ -31,8 +31,8 @@ j_b/[2022] Acoustic Treats/01 - 20160426 184214.mp3
|
||||||
artist: j_b
|
artist: j_b
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 20160426 184214
|
title: 20160426 184214
|
||||||
track: 1
|
track: '1'
|
||||||
year: 2022
|
year: '2022'
|
||||||
j_b/[2022] Acoustic Treats/02 - 20160502 123150.info.json
|
j_b/[2022] Acoustic Treats/02 - 20160502 123150.info.json
|
||||||
j_b/[2022] Acoustic Treats/02 - 20160502 123150.mp3
|
j_b/[2022] Acoustic Treats/02 - 20160502 123150.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
|
|
@ -41,8 +41,8 @@ j_b/[2022] Acoustic Treats/02 - 20160502 123150.mp3
|
||||||
artist: j_b
|
artist: j_b
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 20160502 123150
|
title: 20160502 123150
|
||||||
track: 2
|
track: '2'
|
||||||
year: 2022
|
year: '2022'
|
||||||
j_b/[2022] Acoustic Treats/03 - 20160504 143832.info.json
|
j_b/[2022] Acoustic Treats/03 - 20160504 143832.info.json
|
||||||
j_b/[2022] Acoustic Treats/03 - 20160504 143832.mp3
|
j_b/[2022] Acoustic Treats/03 - 20160504 143832.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
|
|
@ -51,8 +51,8 @@ j_b/[2022] Acoustic Treats/03 - 20160504 143832.mp3
|
||||||
artist: j_b
|
artist: j_b
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 20160504 143832
|
title: 20160504 143832
|
||||||
track: 3
|
track: '3'
|
||||||
year: 2022
|
year: '2022'
|
||||||
j_b/[2022] Acoustic Treats/04 - 20160601 221234.info.json
|
j_b/[2022] Acoustic Treats/04 - 20160601 221234.info.json
|
||||||
j_b/[2022] Acoustic Treats/04 - 20160601 221234.mp3
|
j_b/[2022] Acoustic Treats/04 - 20160601 221234.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
|
|
@ -61,8 +61,8 @@ j_b/[2022] Acoustic Treats/04 - 20160601 221234.mp3
|
||||||
artist: j_b
|
artist: j_b
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 20160601 221234
|
title: 20160601 221234
|
||||||
track: 4
|
track: '4'
|
||||||
year: 2022
|
year: '2022'
|
||||||
j_b/[2022] Acoustic Treats/05 - 20160601 222440.info.json
|
j_b/[2022] Acoustic Treats/05 - 20160601 222440.info.json
|
||||||
j_b/[2022] Acoustic Treats/05 - 20160601 222440.mp3
|
j_b/[2022] Acoustic Treats/05 - 20160601 222440.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
|
|
@ -71,8 +71,8 @@ j_b/[2022] Acoustic Treats/05 - 20160601 222440.mp3
|
||||||
artist: j_b
|
artist: j_b
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 20160601 222440
|
title: 20160601 222440
|
||||||
track: 5
|
track: '5'
|
||||||
year: 2022
|
year: '2022'
|
||||||
j_b/[2022] Acoustic Treats/06 - 20170604 190236.info.json
|
j_b/[2022] Acoustic Treats/06 - 20170604 190236.info.json
|
||||||
j_b/[2022] Acoustic Treats/06 - 20170604 190236.mp3
|
j_b/[2022] Acoustic Treats/06 - 20170604 190236.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
|
|
@ -81,8 +81,8 @@ j_b/[2022] Acoustic Treats/06 - 20170604 190236.mp3
|
||||||
artist: j_b
|
artist: j_b
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 20170604 190236
|
title: 20170604 190236
|
||||||
track: 6
|
track: '6'
|
||||||
year: 2022
|
year: '2022'
|
||||||
j_b/[2022] Acoustic Treats/07 - 20170612 193646.info.json
|
j_b/[2022] Acoustic Treats/07 - 20170612 193646.info.json
|
||||||
j_b/[2022] Acoustic Treats/07 - 20170612 193646.mp3
|
j_b/[2022] Acoustic Treats/07 - 20170612 193646.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
|
|
@ -91,8 +91,8 @@ j_b/[2022] Acoustic Treats/07 - 20170612 193646.mp3
|
||||||
artist: j_b
|
artist: j_b
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 20170612 193646
|
title: 20170612 193646
|
||||||
track: 7
|
track: '7'
|
||||||
year: 2022
|
year: '2022'
|
||||||
j_b/[2022] Acoustic Treats/08 - 20170628 215206.info.json
|
j_b/[2022] Acoustic Treats/08 - 20170628 215206.info.json
|
||||||
j_b/[2022] Acoustic Treats/08 - 20170628 215206.mp3
|
j_b/[2022] Acoustic Treats/08 - 20170628 215206.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
|
|
@ -101,8 +101,8 @@ j_b/[2022] Acoustic Treats/08 - 20170628 215206.mp3
|
||||||
artist: j_b
|
artist: j_b
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: 20170628 215206
|
title: 20170628 215206
|
||||||
track: 8
|
track: '8'
|
||||||
year: 2022
|
year: '2022'
|
||||||
j_b/[2022] Acoustic Treats/09 - Finding Home.info.json
|
j_b/[2022] Acoustic Treats/09 - Finding Home.info.json
|
||||||
j_b/[2022] Acoustic Treats/09 - Finding Home.mp3
|
j_b/[2022] Acoustic Treats/09 - Finding Home.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
|
|
@ -111,8 +111,8 @@ j_b/[2022] Acoustic Treats/09 - Finding Home.mp3
|
||||||
artist: j_b
|
artist: j_b
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Finding Home
|
title: Finding Home
|
||||||
track: 9
|
track: '9'
|
||||||
year: 2022
|
year: '2022'
|
||||||
j_b/[2022] Acoustic Treats/10 - Shallow Water WIP.info.json
|
j_b/[2022] Acoustic Treats/10 - Shallow Water WIP.info.json
|
||||||
j_b/[2022] Acoustic Treats/10 - Shallow Water WIP.mp3
|
j_b/[2022] Acoustic Treats/10 - Shallow Water WIP.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
|
|
@ -121,8 +121,8 @@ j_b/[2022] Acoustic Treats/10 - Shallow Water WIP.mp3
|
||||||
artist: j_b
|
artist: j_b
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Shallow Water WIP
|
title: Shallow Water WIP
|
||||||
track: 10
|
track: '10'
|
||||||
year: 2022
|
year: '2022'
|
||||||
j_b/[2022] Acoustic Treats/11 - Untold History.info.json
|
j_b/[2022] Acoustic Treats/11 - Untold History.info.json
|
||||||
j_b/[2022] Acoustic Treats/11 - Untold History.mp3
|
j_b/[2022] Acoustic Treats/11 - Untold History.mp3
|
||||||
Music Tags:
|
Music Tags:
|
||||||
|
|
@ -131,6 +131,6 @@ j_b/[2022] Acoustic Treats/11 - Untold History.mp3
|
||||||
artist: j_b
|
artist: j_b
|
||||||
genre: Unset
|
genre: Unset
|
||||||
title: Untold History
|
title: Untold History
|
||||||
track: 11
|
track: '11'
|
||||||
year: 2022
|
year: '2022'
|
||||||
j_b/[2022] Acoustic Treats/folder.jpg
|
j_b/[2022] Acoustic Treats/folder.jpg
|
||||||
|
|
@ -7,252 +7,326 @@ Season 2010/s2010.e0813 - Oblivion Mod "Falcor" p.1.mp4
|
||||||
Season 2010/s2010.e0813 - Oblivion Mod "Falcor" p.1.nfo
|
Season 2010/s2010.e0813 - Oblivion Mod "Falcor" p.1.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2010-08-13
|
aired: '2010-08-13'
|
||||||
episode: 813
|
episode: '813'
|
||||||
plot:
|
plot: "PLEASE WATCH IN HD!\r\n\r\nThis is the castle in the mod \"Falcor\" which we are currently\
|
||||||
PLEASE WATCH IN HD!
|
\ working on.\r\nYou can find some more information about the mod @ http://www.oblivionfalcormod.webs.com/\r\
|
||||||
|
\n\r\nThis is the first time I've really used the editor, and the beginning of our first mod. Hope\
|
||||||
This is the castle in the mod "Falcor" which we are currently working on.
|
\ you enjoy."
|
||||||
You can find some more information about the mod @ http://www.oblivionfalcormod.webs.com/
|
season: '2010'
|
||||||
|
|
||||||
This is the first time I've really used the editor, and the beginning of our first mod. Hope you enjoy.
|
|
||||||
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
|
Season 2010/s2010.e1202 - Oblivion Mod "Falcor" p.2-thumb.jpg
|
||||||
Season 2010/s2010.e1202 - Oblivion Mod "Falcor" p.2.info.json
|
Season 2010/s2010.e1202 - Oblivion Mod "Falcor" p.2.info.json
|
||||||
Season 2010/s2010.e1202 - Oblivion Mod "Falcor" p.2.mp4
|
Season 2010/s2010.e1202 - Oblivion Mod "Falcor" p.2.mp4
|
||||||
Season 2010/s2010.e1202 - Oblivion Mod "Falcor" p.2.nfo
|
Season 2010/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'
|
||||||
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.
|
|
||||||
season: 2010
|
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'
|
||||||
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
|
Season 2011/s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1]-thumb.jpg
|
||||||
Season 2011/s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].info.json
|
Season 2011/s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].info.json
|
||||||
Season 2011/s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].mp4
|
Season 2011/s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].mp4
|
||||||
Season 2011/s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].nfo
|
Season 2011/s2011.e0201 - Jesse's Minecraft Server [Trailer - Feb.1].nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2011-02-01
|
aired: '2011-02-01'
|
||||||
episode: 201
|
episode: '201'
|
||||||
plot:
|
plot: 'To join the server, you must apply at:
|
||||||
To join the server, you must apply at:
|
|
||||||
http://www.jesseminecraft.webs.com/
|
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
|
|
||||||
season: 2011
|
http://www.minecraftforum.net/viewtopic.php?f=25&t=29164'
|
||||||
|
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
|
Season 2011/s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27]-thumb.jpg
|
||||||
Season 2011/s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
Season 2011/s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
||||||
Season 2011/s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27].mp4
|
Season 2011/s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27].mp4
|
||||||
Season 2011/s2011.e0227 - Jesse's Minecraft Server [Trailer - Feb.27].nfo
|
Season 2011/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'
|
||||||
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.
|
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
|
|
||||||
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:
|
|
||||||
Given to Fly - Pearl Jam
|
|
||||||
(Off of the 'Yield' album)
|
|
||||||
|
|
||||||
I claim no ownership of this song, all the credit goes to Pearl Jam and their producers.
|
Song:
|
||||||
season: 2011
|
|
||||||
|
Given to Fly - Pearl Jam
|
||||||
|
|
||||||
|
(Off of the ''Yield'' album)
|
||||||
|
|
||||||
|
|
||||||
|
I claim no ownership of this song, all the credit goes to Pearl Jam and their producers.'
|
||||||
|
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
|
Season 2011/s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21]-thumb.jpg
|
||||||
Season 2011/s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21].info.json
|
Season 2011/s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21].info.json
|
||||||
Season 2011/s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21].mp4
|
Season 2011/s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21].mp4
|
||||||
Season 2011/s2011.e0321 - Jesse's Minecraft Server [Trailer - Mar.21].nfo
|
Season 2011/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'
|
||||||
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.
|
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
|
|
||||||
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:
|
|
||||||
Indifference - Pearl Jam
|
|
||||||
(Off of the 'Vs.' album)
|
|
||||||
|
|
||||||
I claim no ownership of this song, all the credit goes to Pearl Jam and their producers.
|
Song:
|
||||||
season: 2011
|
|
||||||
|
Indifference - Pearl Jam
|
||||||
|
|
||||||
|
(Off of the ''Vs.'' album)
|
||||||
|
|
||||||
|
|
||||||
|
I claim no ownership of this song, all the credit goes to Pearl Jam and their producers.'
|
||||||
|
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
|
Season 2011/s2011.e0529 - Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net)-thumb.jpg
|
||||||
Season 2011/s2011.e0529 - Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net).info.json
|
Season 2011/s2011.e0529 - Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net).info.json
|
||||||
Season 2011/s2011.e0529 - Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net).mp4
|
Season 2011/s2011.e0529 - Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net).mp4
|
||||||
Season 2011/s2011.e0529 - Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net).nfo
|
Season 2011/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'
|
||||||
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/
|
|
||||||
season: 2011
|
http://www.minecraftforum.net/topic/26727-johnsmith-texture-pack-v73-32x32-16x-with-customizer/'
|
||||||
title: Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net)
|
season: '2011'
|
||||||
year: 2011
|
title: 'Project Zombie |Official Trailer| (IP: mc.projectzombie.beastnode.net)'
|
||||||
|
year: '2011'
|
||||||
Season 2011/s2011.e0630 - Project Zombie |Fin|-thumb.jpg
|
Season 2011/s2011.e0630 - Project Zombie |Fin|-thumb.jpg
|
||||||
Season 2011/s2011.e0630 - Project Zombie |Fin|.info.json
|
Season 2011/s2011.e0630 - Project Zombie |Fin|.info.json
|
||||||
Season 2011/s2011.e0630 - Project Zombie |Fin|.mp4
|
Season 2011/s2011.e0630 - Project Zombie |Fin|.mp4
|
||||||
Season 2011/s2011.e0630 - Project Zombie |Fin|.nfo
|
Season 2011/s2011.e0630 - Project Zombie |Fin|.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2011-06-30
|
aired: '2011-06-30'
|
||||||
episode: 630
|
episode: '630'
|
||||||
plot:
|
plot: 'Twas a good run while it lasted. If you''re still interested in playing PZ, you can join my
|
||||||
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:
|
Roleplay Server, yes, Project Zombie is completely imported onto that one:
|
||||||
http://www.jesseminecraft.webs.com/
|
|
||||||
season: 2011
|
http://www.jesseminecraft.webs.com/'
|
||||||
|
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
|
Season 2011/s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC]-thumb.jpg
|
||||||
Season 2011/s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC].info.json
|
Season 2011/s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC].info.json
|
||||||
Season 2011/s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC].mp4
|
Season 2011/s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC].mp4
|
||||||
Season 2011/s2011.e1121 - Skyrim 'Ultra HD w⧸Mods' [PC].nfo
|
Season 2011/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'
|
||||||
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
|
|
||||||
season: 2011
|
http://skyrimnexus.com/downloads/file.php?id=191'
|
||||||
|
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
|
Season 2012/s2012.e0123 - Project Zombie |Map Trailer|-thumb.jpg
|
||||||
Season 2012/s2012.e0123 - Project Zombie |Map Trailer|.info.json
|
Season 2012/s2012.e0123 - Project Zombie |Map Trailer|.info.json
|
||||||
Season 2012/s2012.e0123 - Project Zombie |Map Trailer|.mp4
|
Season 2012/s2012.e0123 - Project Zombie |Map Trailer|.mp4
|
||||||
Season 2012/s2012.e0123 - Project Zombie |Map Trailer|.nfo
|
Season 2012/s2012.e0123 - Project Zombie |Map Trailer|.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2012-01-23
|
aired: '2012-01-23'
|
||||||
episode: 123
|
episode: '123'
|
||||||
plot:
|
plot: 'Faction Server IP: 72.9.157.88:25652
|
||||||
Faction Server IP: 72.9.157.88:25652
|
|
||||||
Project Zombie IP: mc.projectzombie.beastnode.net
|
Project Zombie IP: mc.projectzombie.beastnode.net
|
||||||
|
|
||||||
Project Zombie Map: http://tinyurl.com/projectzombie1
|
Project Zombie Map: http://tinyurl.com/projectzombie1
|
||||||
|
|
||||||
Website: http://jesseminecraft.webs.com/
|
Website: http://jesseminecraft.webs.com/
|
||||||
|
|
||||||
Map Download: http://www.planetminecraft.com/project/project-zombie-511865/
|
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.
|
|
||||||
season: 2012
|
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'
|
||||||
title: Project Zombie |Map Trailer|
|
title: Project Zombie |Map Trailer|
|
||||||
year: 2012
|
year: '2012'
|
||||||
Season 2013/s2013.e0719 - Project Zombie Rewind |Trailer|-thumb.jpg
|
Season 2013/s2013.e0719 - Project Zombie Rewind |Trailer|-thumb.jpg
|
||||||
Season 2013/s2013.e0719 - Project Zombie Rewind |Trailer|.info.json
|
Season 2013/s2013.e0719 - Project Zombie Rewind |Trailer|.info.json
|
||||||
Season 2013/s2013.e0719 - Project Zombie Rewind |Trailer|.mp4
|
Season 2013/s2013.e0719 - Project Zombie Rewind |Trailer|.mp4
|
||||||
Season 2013/s2013.e0719 - Project Zombie Rewind |Trailer|.nfo
|
Season 2013/s2013.e0719 - Project Zombie Rewind |Trailer|.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2013-07-19
|
aired: '2013-07-19'
|
||||||
episode: 719
|
episode: '719'
|
||||||
plot:
|
plot: 'IP: 172.245.24.118
|
||||||
IP: 172.245.24.118
|
|
||||||
http://www.projectzombie.net/
|
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.
|
|
||||||
season: 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'
|
||||||
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
|
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer-thumb.jpg
|
||||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.info.json
|
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.info.json
|
||||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.mp4
|
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.mp4
|
||||||
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.nfo
|
Season 2018/s2018.e1029 - Jesse's Minecraft Server | Teaser Trailer.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
episodedetails:
|
episodedetails:
|
||||||
aired: 2018-10-29
|
aired: '2018-10-29'
|
||||||
episode: 1029
|
episode: '1029'
|
||||||
plot:
|
plot: 'See the full trailer here: https://youtu.be/LN2e6idGluI
|
||||||
See the full trailer here: https://youtu.be/LN2e6idGluI
|
|
||||||
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.
|
||||||
|
|
||||||
|
|
||||||
Credits:
|
Credits:
|
||||||
|
|
||||||
ALISON - Space Echo
|
ALISON - Space Echo
|
||||||
https://www.youtube.com/watch?v=lPldcjlv3_Y
|
|
||||||
season: 2018
|
https://www.youtube.com/watch?v=lPldcjlv3_Y'
|
||||||
|
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
|
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id-thumb.jpg
|
||||||
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.en.srt
|
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.en.srt
|
||||||
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.info.json
|
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.info.json
|
||||||
|
|
@ -260,24 +334,15 @@ Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.mp4
|
||||||
Season 2018/s2018.e1102 - Jesse's Minecraft Server | IP mc.jesse.id.nfo
|
Season 2018/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\nLive Map: http://mc.jesse.id:8123\nDiscord: https://discord.gg/BQN7SSe\nWebsite:\
|
||||||
IP: mc.jesse.id
|
\ https://www.projectzombie.net/\n\nIt has been about six years since the glory days of the original\
|
||||||
Live Map: http://mc.jesse.id:8123
|
\ RP server. Hope to see many familiar faces in the revival of our great server. \n\nThe MC version\
|
||||||
Discord: https://discord.gg/BQN7SSe
|
\ is 1.13.x AND/OR 1.12.x\n\nCredits:\nALISON - Space Echo\nhttps://www.youtube.com/watch?v=lPldcjlv3_Y"
|
||||||
Website: https://www.projectzombie.net/
|
season: '2018'
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
Credits:
|
|
||||||
ALISON - Space Echo
|
|
||||||
https://www.youtube.com/watch?v=lPldcjlv3_Y
|
|
||||||
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
|
fanart.jpg
|
||||||
poster.jpg
|
poster.jpg
|
||||||
tvshow.nfo
|
tvshow.nfo
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,12 @@ JMC - Jesse's Minecraft Server.info.json
|
||||||
JMC - Jesse's Minecraft Server.mkv
|
JMC - Jesse's Minecraft Server.mkv
|
||||||
Timestamps of playlist videos in the merged file:
|
Timestamps of playlist videos in the merged file:
|
||||||
0:00: Jesse's Minecraft Server [Trailer - Mar.21]
|
0:00: Jesse's Minecraft Server [Trailer - Mar.21]
|
||||||
5:00: Jesse's Minecraft Server [Trailer - Feb.27]
|
'5:00': Jesse's Minecraft Server [Trailer - Feb.27]
|
||||||
9:00: Jesse's Minecraft Server [Trailer - Feb.1]
|
'9:00': Jesse's Minecraft Server [Trailer - Feb.1]
|
||||||
JMC - Jesse's Minecraft Server.nfo
|
JMC - Jesse's Minecraft Server.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
musicvideo:
|
musicvideo:
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
artist: JMC
|
artist: JMC
|
||||||
title: Jesse's Minecraft Server
|
title: Jesse's Minecraft Server
|
||||||
year: 2011
|
year: '2011'
|
||||||
|
|
@ -10,7 +10,7 @@ JMC - Jesse's Minecraft Server [Trailer - Feb.1].nfo
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
artist: JMC
|
artist: JMC
|
||||||
title: Jesse's Minecraft Server [Trailer - Feb.1]
|
title: Jesse's Minecraft Server [Trailer - Feb.1]
|
||||||
year: 2011
|
year: '2011'
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Feb.27]-thumb.jpg
|
JMC - Jesse's Minecraft Server [Trailer - Feb.27]-thumb.jpg
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
JMC - Jesse's Minecraft Server [Trailer - Feb.27].info.json
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Feb.27].mp4
|
JMC - Jesse's Minecraft Server [Trailer - Feb.27].mp4
|
||||||
|
|
@ -20,7 +20,7 @@ JMC - Jesse's Minecraft Server [Trailer - Feb.27].nfo
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
artist: JMC
|
artist: JMC
|
||||||
title: Jesse's Minecraft Server [Trailer - Feb.27]
|
title: Jesse's Minecraft Server [Trailer - Feb.27]
|
||||||
year: 2011
|
year: '2011'
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Mar.21]-thumb.jpg
|
JMC - Jesse's Minecraft Server [Trailer - Mar.21]-thumb.jpg
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Mar.21].info.json
|
JMC - Jesse's Minecraft Server [Trailer - Mar.21].info.json
|
||||||
JMC - Jesse's Minecraft Server [Trailer - Mar.21].mp4
|
JMC - Jesse's Minecraft Server [Trailer - Mar.21].mp4
|
||||||
|
|
@ -30,7 +30,7 @@ JMC - Jesse's Minecraft Server [Trailer - Mar.21].nfo
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
artist: JMC
|
artist: JMC
|
||||||
title: Jesse's Minecraft Server [Trailer - Mar.21]
|
title: Jesse's Minecraft Server [Trailer - Mar.21]
|
||||||
year: 2011
|
year: '2011'
|
||||||
tvshow.nfo
|
tvshow.nfo
|
||||||
NFO tags:
|
NFO tags:
|
||||||
test:
|
test:
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ Project Zombie - Intro.nfo
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
artist: Project Zombie
|
artist: Project Zombie
|
||||||
title: Intro
|
title: Intro
|
||||||
year: 2010
|
year: '2010'
|
||||||
Project Zombie - Part 1-thumb.jpg
|
Project Zombie - Part 1-thumb.jpg
|
||||||
Project Zombie - Part 1.info.json
|
Project Zombie - Part 1.info.json
|
||||||
Project Zombie - Part 1.nfo
|
Project Zombie - Part 1.nfo
|
||||||
|
|
@ -29,7 +29,7 @@ Project Zombie - Part 1.nfo
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
artist: Project Zombie
|
artist: Project Zombie
|
||||||
title: Part 1
|
title: Part 1
|
||||||
year: 2010
|
year: '2010'
|
||||||
Project Zombie - Part 2-thumb.jpg
|
Project Zombie - Part 2-thumb.jpg
|
||||||
Project Zombie - Part 2.info.json
|
Project Zombie - Part 2.info.json
|
||||||
Project Zombie - Part 2.nfo
|
Project Zombie - Part 2.nfo
|
||||||
|
|
@ -38,7 +38,7 @@ Project Zombie - Part 2.nfo
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
artist: Project Zombie
|
artist: Project Zombie
|
||||||
title: Part 2
|
title: Part 2
|
||||||
year: 2010
|
year: '2010'
|
||||||
Project Zombie - Part 3-thumb.jpg
|
Project Zombie - Part 3-thumb.jpg
|
||||||
Project Zombie - Part 3.info.json
|
Project Zombie - Part 3.info.json
|
||||||
Project Zombie - Part 3.nfo
|
Project Zombie - Part 3.nfo
|
||||||
|
|
@ -47,7 +47,7 @@ Project Zombie - Part 3.nfo
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
artist: Project Zombie
|
artist: Project Zombie
|
||||||
title: Part 3
|
title: Part 3
|
||||||
year: 2010
|
year: '2010'
|
||||||
Project Zombie - Part 4-thumb.jpg
|
Project Zombie - Part 4-thumb.jpg
|
||||||
Project Zombie - Part 4.info.json
|
Project Zombie - Part 4.info.json
|
||||||
Project Zombie - Part 4.nfo
|
Project Zombie - Part 4.nfo
|
||||||
|
|
@ -56,7 +56,7 @@ Project Zombie - Part 4.nfo
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
artist: Project Zombie
|
artist: Project Zombie
|
||||||
title: Part 4
|
title: Part 4
|
||||||
year: 2010
|
year: '2010'
|
||||||
Project Zombie - Part 5-thumb.jpg
|
Project Zombie - Part 5-thumb.jpg
|
||||||
Project Zombie - Part 5.info.json
|
Project Zombie - Part 5.info.json
|
||||||
Project Zombie - Part 5.nfo
|
Project Zombie - Part 5.nfo
|
||||||
|
|
@ -65,4 +65,4 @@ Project Zombie - Part 5.nfo
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
artist: Project Zombie
|
artist: Project Zombie
|
||||||
title: Part 5
|
title: Part 5
|
||||||
year: 2010
|
year: '2010'
|
||||||
|
|
@ -11,4 +11,4 @@ JMC - Oblivion Mod "Falcor" p.1.nfo
|
||||||
album: Music Videos
|
album: Music Videos
|
||||||
artist: JMC
|
artist: JMC
|
||||||
title: Oblivion Mod "Falcor" p.1
|
title: Oblivion Mod "Falcor" p.1
|
||||||
year: 2010
|
year: '2010'
|
||||||
|
|
@ -107,7 +107,8 @@ class TestPreset:
|
||||||
|
|
||||||
nfo_options: NfoTagsOptions = preset.plugins.get(NfoTagsOptions)
|
nfo_options: NfoTagsOptions = preset.plugins.get(NfoTagsOptions)
|
||||||
tags_string_dict = {
|
tags_string_dict = {
|
||||||
key: formatter.format_string for key, formatter in nfo_options.tags.string_tags.items()
|
key: formatter[0].format_string
|
||||||
|
for key, formatter in nfo_options.tags.string_tags.items()
|
||||||
}
|
}
|
||||||
|
|
||||||
assert tags_string_dict == {"key-1": "preset_0", "key-2": "this-preset"}
|
assert tags_string_dict == {"key-1": "preset_0", "key-2": "this-preset"}
|
||||||
|
|
@ -126,7 +127,8 @@ class TestPreset:
|
||||||
|
|
||||||
nfo_options: NfoTagsOptions = preset.plugins.get(NfoTagsOptions)
|
nfo_options: NfoTagsOptions = preset.plugins.get(NfoTagsOptions)
|
||||||
tags_string_dict = {
|
tags_string_dict = {
|
||||||
key: formatter.format_string for key, formatter in nfo_options.tags.string_tags.items()
|
key: formatter[0].format_string
|
||||||
|
for key, formatter in nfo_options.tags.string_tags.items()
|
||||||
}
|
}
|
||||||
|
|
||||||
assert tags_string_dict == {
|
assert tags_string_dict == {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue