split with regex working
This commit is contained in:
parent
846913a7ae
commit
7592ccbab6
10 changed files with 580 additions and 469 deletions
|
|
@ -9,7 +9,7 @@ presets:
|
|||
|
||||
output_options:
|
||||
output_directory: "{music_directory}"
|
||||
file_name: "{title_sanitized}.{ext}"
|
||||
file_name: "{custom_track_name_sanitized}.{ext}"
|
||||
|
||||
audio_extract:
|
||||
codec: "mp3"
|
||||
|
|
@ -17,16 +17,20 @@ presets:
|
|||
|
||||
music_tags:
|
||||
tags:
|
||||
artist: "{artist}"
|
||||
albumartist: "{artist}"
|
||||
title: "{title}"
|
||||
album: "Singles"
|
||||
track: "1"
|
||||
artist: "{custom_artist_name}"
|
||||
albumartist: "{custom_artist_name}"
|
||||
title: "{custom_track_name}"
|
||||
album: "{custom_album_name}"
|
||||
track: "{custom_track_number}"
|
||||
year: "{upload_year}"
|
||||
genre: "Unset"
|
||||
|
||||
overrides:
|
||||
music_directory: "/path/to/music"
|
||||
custom_track_name: "{title}"
|
||||
custom_album_name: "Singles"
|
||||
custom_artist_name: "{artist}"
|
||||
custom_track_number: "1"
|
||||
|
||||
# TODO: make a playlist of individual songs into an album. Need playlist_title
|
||||
# yt_album_as_playlist:
|
||||
|
|
@ -51,12 +55,7 @@ presets:
|
|||
split_by_chapters:
|
||||
when_no_chapters: "pass"
|
||||
|
||||
music_tags:
|
||||
tags:
|
||||
title: "{custom_track_name}"
|
||||
album: "{custom_album_name}"
|
||||
track: "{chapter_index}"
|
||||
|
||||
overrides:
|
||||
custom_track_name: "{chapter_title}"
|
||||
custom_album_name: "{title}" # Have the video name be the album
|
||||
custom_album_name: "{title}" # Have the video name be the album
|
||||
custom_track_number: "{chapter_index}"
|
||||
|
|
|
|||
|
|
@ -160,7 +160,8 @@ class Preset(StrictDictValidator):
|
|||
return downloader, download_options
|
||||
|
||||
def __validate_and_get_plugins(self) -> PresetPlugins:
|
||||
plugins = PresetPlugins()
|
||||
preset_plugins = PresetPlugins()
|
||||
source_variables = copy.deepcopy(self._source_variables)
|
||||
|
||||
for key in self._keys:
|
||||
if key not in PluginMapping.plugins():
|
||||
|
|
@ -168,13 +169,22 @@ class Preset(StrictDictValidator):
|
|||
|
||||
plugin = PluginMapping.get(plugin=key)
|
||||
plugin_options = self._validate_key(key=key, validator=plugin.plugin_options_type)
|
||||
|
||||
preset_plugins.add(plugin_type=plugin, plugin_options=plugin_options)
|
||||
|
||||
for plugin, plugin_options in sorted(
|
||||
preset_plugins.zipped(),
|
||||
key=lambda _plugin_and_options: _plugin_and_options[0].priority.modify_entry,
|
||||
):
|
||||
# Validate current plugin using source + added plugin variables
|
||||
plugin_options.validate_with_variables(
|
||||
source_variables=self._source_variables, override_variables=self.overrides.keys
|
||||
source_variables=source_variables, override_variables=self.overrides.keys
|
||||
)
|
||||
|
||||
plugins.add(plugin_type=plugin, plugin_options=plugin_options)
|
||||
# Extend existing source variables with ones created from this plugin
|
||||
source_variables.extend(plugin_options.added_source_variables())
|
||||
|
||||
return plugins
|
||||
return preset_plugins
|
||||
|
||||
def __validate_override_string_formatter_validator(
|
||||
self,
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ from ytdl_sub.downloaders.youtube.abc import YoutubeDownloader
|
|||
from ytdl_sub.downloaders.youtube.video import YoutubeVideoDownloaderOptions
|
||||
from ytdl_sub.entries.youtube import YoutubePlaylistVideo
|
||||
from ytdl_sub.entries.youtube import YoutubeVideo
|
||||
from ytdl_sub.plugins.split_by_chapters import _split_video_ffmpeg_cmd
|
||||
from ytdl_sub.utils.chapters import Chapters
|
||||
from ytdl_sub.utils.chapters import Timestamp
|
||||
from ytdl_sub.utils.ffmpeg import FFMPEG
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
import mergedeep
|
||||
import pytest
|
||||
from e2e.expected_download import assert_expected_downloads
|
||||
from e2e.expected_transaction_log import assert_transaction_log_matches
|
||||
|
|
@ -9,7 +10,7 @@ from ytdl_sub.subscriptions.subscription import Subscription
|
|||
def yt_album_as_chapters_preset_dict(output_directory):
|
||||
return {
|
||||
"preset": "yt_album_as_chapters",
|
||||
"youtube": {"video_url": "youtube.com/watch?v=wtg7AetxuWo"},
|
||||
"youtube": {"video_url": "https://www.youtube.com/watch?v=zeR2_YjlXWA"},
|
||||
# override the output directory with our fixture-generated dir
|
||||
"output_options": {"output_directory": output_directory},
|
||||
# download the worst format so it is fast
|
||||
|
|
@ -20,8 +21,45 @@ def yt_album_as_chapters_preset_dict(output_directory):
|
|||
}
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def yt_album_as_chapters_with_regex_preset_dict(yt_album_as_chapters_preset_dict):
|
||||
mergedeep.merge(
|
||||
yt_album_as_chapters_preset_dict,
|
||||
{
|
||||
"regex": {
|
||||
"from": {
|
||||
"chapter_title": {
|
||||
"match": r"\d+\. (.+)",
|
||||
"capture_group_names": "captured_chapter_title",
|
||||
"capture_group_defaults": "{chapter_title}",
|
||||
},
|
||||
"title": {
|
||||
"match": [
|
||||
"(.+) - (.+) [-[\\(\\{].+",
|
||||
"(.+) - (.+)",
|
||||
],
|
||||
"capture_group_names": [
|
||||
"captured_artist",
|
||||
"captured_album",
|
||||
],
|
||||
"capture_group_defaults": [
|
||||
"{artist}",
|
||||
"{title}",
|
||||
],
|
||||
},
|
||||
}
|
||||
},
|
||||
"overrides": {
|
||||
"custom_track_name": "{captured_chapter_title}",
|
||||
"custom_album_name": "{captured_album}",
|
||||
"custom_artist_name": "{captured_artist}",
|
||||
},
|
||||
},
|
||||
)
|
||||
return yt_album_as_chapters_preset_dict
|
||||
|
||||
|
||||
class TestSplitByChapters:
|
||||
# TODO: fix dry run
|
||||
@pytest.mark.parametrize("dry_run", [True, False])
|
||||
def test_video_with_chapters(
|
||||
self,
|
||||
|
|
@ -49,3 +87,31 @@ class TestSplitByChapters:
|
|||
expected_download_summary_file_name="plugins/split_by_chapters_video.json",
|
||||
regenerate_expected_download_summary=True,
|
||||
)
|
||||
|
||||
@pytest.mark.parametrize("dry_run", [True, False])
|
||||
def test_video_with_chapters_and_regex(
|
||||
self,
|
||||
youtube_audio_config,
|
||||
yt_album_as_chapters_with_regex_preset_dict,
|
||||
output_directory,
|
||||
dry_run,
|
||||
):
|
||||
subscription = Subscription.from_dict(
|
||||
config=youtube_audio_config,
|
||||
preset_name="split_by_chapters_with_regex_video",
|
||||
preset_dict=yt_album_as_chapters_with_regex_preset_dict,
|
||||
)
|
||||
|
||||
transaction_log = subscription.download(dry_run=dry_run)
|
||||
assert_transaction_log_matches(
|
||||
output_directory=output_directory,
|
||||
transaction_log=transaction_log,
|
||||
transaction_log_summary_file_name=f"plugins/split_by_chapters_with_regex_video{'-dry-run' if dry_run else ''}.txt",
|
||||
regenerate_transaction_log=True,
|
||||
)
|
||||
assert_expected_downloads(
|
||||
output_directory=output_directory,
|
||||
dry_run=dry_run,
|
||||
expected_download_summary_file_name="plugins/split_by_chapters_with_regex_video.json",
|
||||
regenerate_expected_download_summary=True,
|
||||
)
|
||||
|
|
|
|||
|
|
@ -1,24 +1,14 @@
|
|||
{
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/01 - 一 Journey to the West.mp3": "90b5a53e5b3e3eb93c4249f8c67fd6ed",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/02 - 二 Land of the Samurai.mp3": "97e558eacbbce2a4bb2b2461a27f2bc3",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/03 - 三 Tsunami Sky.mp3": "7b894b54d623c67a51a65bc62e755b63",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/04 - 四 Sleeping on the Susuki Grasslands.mp3": "9c76af1690da9d401e117d8b44b7fb06",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/05 - 五 Gomenasai I.mp3": "4d1284a4fada2a7af35a3bacb83927a2",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/06 - 六 Sakura III.mp3": "d1a33513bccd0686facee51acc284f86",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/07 - 七 Grand Dojo.mp3": "12791dce3bc18aea3e9c7b25f07b73e3",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/08 - 八 Kumite.mp3": "311d47990a5d6a23a992d67435bb8cce",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/09 - 九 Memoirs of a Geisha.mp3": "c10b4903cdd8474c5094ed66f44b3cf9",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/10 - 十 Gomenasai II.mp3": "84fb9b4e9d4d80ab9efd2058272f0004",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/11 - 十一 A conversation with the blacksmith.mp3": "1ac1b8145f8658685b696bdf3c3e197f",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/12 - 十二 The Forest of a Thousand Blades.mp3": "9687187b3b309d96061d0ac933ef6a18",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/13 - 十三 Oath.mp3": "8261796fe47cfd652661bcade765f671",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/14 - 十四 Mysterious Ronin.mp3": "66a79f47b92bc0ce9babe6d9362fbad9",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/15 - 十五 Gomenasai III.mp3": "05f12eb3e248d140ea1e023c988a84a9",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/16 - 十六 Amaya village.mp3": "1ac2799ca4d1cb17e9b9df0c8aeee9e8",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/17 - 十七 Kenjutsu water style.mp3": "870ed84a00e90b2ffaf9216b19a963ad",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/18 - 十八 Tea House.mp3": "b9b449137f5970a354fdbfca599f8d1e",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/19 - 十九 Icarus.mp3": "f9310de8b715550974d7ff55c82a5cfe",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/20 - 二十 6am Snowfall.mp3": "5f9210e8d2b4a2b686bc933a1842acd7",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/21 - 二十一 Silence.mp3": "cfb12c750e316b11a105e2c650c403fe",
|
||||
"Elijah Nang - Gaijin 外人 LP - [ Full LP ]/folder.jpg": "bd3b80bff8cfc58d4c35c2a2d52aca12"
|
||||
"Alfa Mist - Nocturne [Full Album]/01 - 01. Intro (Feat. Racheal Ofori & Barney Artist).mp3": "9313382b938547fa9cc02c708068ae42",
|
||||
"Alfa Mist - Nocturne [Full Album]/02 - 02. Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3": "c38c7186eb52e89246ed8c79be8485e7",
|
||||
"Alfa Mist - Nocturne [Full Album]/03 - 03. Blaze (Feat. Kaya Thomas - Dyke).mp3": "3d873907e61d4af8e20539961913d486",
|
||||
"Alfa Mist - Nocturne [Full Album]/04 - 04. What If (Interlude).mp3": "846898842d60b7d1d3b455dfa44821bd",
|
||||
"Alfa Mist - Nocturne [Full Album]/05 - 05. No Peace (Feat. Tom Misch).mp3": "23e40cccc86e106ea576dc78dc8e6376",
|
||||
"Alfa Mist - Nocturne [Full Album]/06 - 06. Closer (Feat. Lester Duval).mp3": "cf0fe6eea473f64bbeedc3ee82d91e17",
|
||||
"Alfa Mist - Nocturne [Full Album]/07 - 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3": "d9eae099a8b25f603c0491c9184092da",
|
||||
"Alfa Mist - Nocturne [Full Album]/08 - 08. Dreams (Feat. Carmody).mp3": "e07de2c95fb2561540048948f1478c25",
|
||||
"Alfa Mist - Nocturne [Full Album]/09 - 09. Dreaming (Interlude) (Feat. Racheal Ofori).mp3": "218386492a03e912a29dfa1a56fd983c",
|
||||
"Alfa Mist - Nocturne [Full Album]/10 - 10. Hopeful (Feat. Jordan Rakei).mp3": "0fb815e3648ad55c62328a3621aadd88",
|
||||
"Alfa Mist - Nocturne [Full Album]/11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3": "860154a2aa2b0b0b31daca0a481ceb87",
|
||||
"Alfa Mist - Nocturne [Full Album]/folder.jpg": "13be3c1a9ba600f7cab82a042cffbf72"
|
||||
}
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"Nocturne/01 - Intro (Feat. Racheal Ofori & Barney Artist).mp3": "75e53ffa551ab9aebe5d25a7d7bc6757",
|
||||
"Nocturne/02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3": "76f5e0a03e0984ed959809721ad2ae4a",
|
||||
"Nocturne/03 - Blaze (Feat. Kaya Thomas - Dyke).mp3": "bd6495ad5b46ee7e46215e5687ac7e7a",
|
||||
"Nocturne/04 - What If (Interlude).mp3": "928a7668b9e0d653cba66cb4f9e3474a",
|
||||
"Nocturne/05 - No Peace (Feat. Tom Misch).mp3": "563d0416c1c9b1eeedb3bd6fdc9f648a",
|
||||
"Nocturne/06 - Closer (Feat. Lester Duval).mp3": "eb36390ef7064ee0145b4b42e6745a1e",
|
||||
"Nocturne/07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3": "9cba05a39738aadf2cd36d7941484a02",
|
||||
"Nocturne/08 - Dreams (Feat. Carmody).mp3": "6833e149f8ec0c98dbd0c3b3caf9362c",
|
||||
"Nocturne/09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3": "2bce7f06baadb6c9cc9742e2a0288c6b",
|
||||
"Nocturne/10 - Hopeful (Feat. Jordan Rakei).mp3": "2e359012ffa86e231ec6694508da1455",
|
||||
"Nocturne/11 - Sunrise (Pillows) (Feat. Emmavie).mp3": "dded786c10aade8bb0821507225b9bd2",
|
||||
"Nocturne/folder.jpg": "13be3c1a9ba600f7cab82a042cffbf72"
|
||||
}
|
||||
|
|
@ -1,276 +1,146 @@
|
|||
Files created in '{output_directory}'
|
||||
----------------------------------------
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/01 - 一 Journey to the West.mp3
|
||||
Alfa Mist - Nocturne [Full Album]/01 - 01. Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 0:00 - 3:08
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 0:00 - 2:06
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 一 Journey to the West
|
||||
title: 01. Intro (Feat. Racheal Ofori & Barney Artist)
|
||||
track: 1
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/02 - 二 Land of the Samurai.mp3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/02 - 02. Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 3:08 - 8:23
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 2:06 - 5:40
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 二 Land of the Samurai
|
||||
title: 02. Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
||||
track: 2
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/03 - 三 Tsunami Sky.mp3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/03 - 03. Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 8:23 - 12:10
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 5:40 - 8:11
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 三 Tsunami Sky
|
||||
title: 03. Blaze (Feat. Kaya Thomas - Dyke)
|
||||
track: 3
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/04 - 四 Sleeping on the Susuki Grasslands.mp3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/04 - 04. What If (Interlude).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 12:10 - 16:22
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 8:11 - 9:35
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 四 Sleeping on the Susuki Grasslands
|
||||
title: 04. What If (Interlude)
|
||||
track: 4
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/05 - 五 Gomenasai I.mp3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/05 - 05. No Peace (Feat. Tom Misch).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 16:22 - 20:39
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 9:35 - 13:19
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 五 Gomenasai I
|
||||
title: 05. No Peace (Feat. Tom Misch)
|
||||
track: 5
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/06 - 六 Sakura III.mp3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/06 - 06. Closer (Feat. Lester Duval).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 20:39 - 25:17
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 13:19 - 17:57
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 六 Sakura III
|
||||
title: 06. Closer (Feat. Lester Duval)
|
||||
track: 6
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/07 - 七 Grand Dojo.mp3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/07 - 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 25:17 - 28:30
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 17:57 - 20:05
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 七 Grand Dojo
|
||||
title: 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
||||
track: 7
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/08 - 八 Kumite.mp3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/08 - 08. Dreams (Feat. Carmody).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 28:30 - 32:38
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 20:05 - 23:58
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 八 Kumite
|
||||
title: 08. Dreams (Feat. Carmody)
|
||||
track: 8
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/09 - 九 Memoirs of a Geisha.mp3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/09 - 09. Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 32:38 - 36:26
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 23:58 - 24:45
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 九 Memoirs of a Geisha
|
||||
title: 09. Dreaming (Interlude) (Feat. Racheal Ofori)
|
||||
track: 9
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/10 - 十 Gomenasai II.mp3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/10 - 10. Hopeful (Feat. Jordan Rakei).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 36:26 - 40:53
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 24:45 - 28:53
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 十 Gomenasai II
|
||||
title: 10. Hopeful (Feat. Jordan Rakei)
|
||||
track: 10
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/11 - 十一 A conversation with the blacksmith.mp3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 40:53 - 45:13
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 28:53 - 31:43
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 十一 A conversation with the blacksmith
|
||||
title: 11. Sunrise (Pillows) (Feat. Emmavie)
|
||||
track: 11
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/12 - 十二 The Forest of a Thousand Blades.mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 45:13 - 49:04
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
genre: Unset
|
||||
title: 十二 The Forest of a Thousand Blades
|
||||
track: 12
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/13 - 十三 Oath.mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 49:04 - 52:32
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
genre: Unset
|
||||
title: 十三 Oath
|
||||
track: 13
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/14 - 十四 Mysterious Ronin.mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 52:32 - 56:39
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
genre: Unset
|
||||
title: 十四 Mysterious Ronin
|
||||
track: 14
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/15 - 十五 Gomenasai III.mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 56:39 - 58:57
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
genre: Unset
|
||||
title: 十五 Gomenasai III
|
||||
track: 15
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/16 - 十六 Amaya village.mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 58:57 - 1:02:24
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
genre: Unset
|
||||
title: 十六 Amaya village
|
||||
track: 16
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/17 - 十七 Kenjutsu water style.mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 1:02:24 - 1:05:06
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
genre: Unset
|
||||
title: 十七 Kenjutsu water style
|
||||
track: 17
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/18 - 十八 Tea House.mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 1:05:06 - 1:08:40
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
genre: Unset
|
||||
title: 十八 Tea House
|
||||
track: 18
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/19 - 十九 Icarus.mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 1:08:40 - 1:11:26
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
genre: Unset
|
||||
title: 十九 Icarus
|
||||
track: 19
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/20 - 二十 6am Snowfall.mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 1:11:26 - 1:15:33
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
genre: Unset
|
||||
title: 二十 6am Snowfall
|
||||
track: 20
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/21 - 二十一 Silence.mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 1:15:33 - 1:19:04
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
genre: Unset
|
||||
title: 二十一 Silence
|
||||
track: 21
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/folder.jpg
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/folder.jpg
|
||||
|
|
@ -1,255 +1,135 @@
|
|||
Files created in '{output_directory}'
|
||||
----------------------------------------
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/01 - 一 Journey to the West.mp3
|
||||
Alfa Mist - Nocturne [Full Album]/01 - 01. Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 0:00 - 3:08
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 0:00 - 2:06
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 一 Journey to the West
|
||||
title: 01. Intro (Feat. Racheal Ofori & Barney Artist)
|
||||
track: 1
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/02 - 二 Land of the Samurai.mp3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/02 - 02. Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 3:08 - 8:23
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 2:06 - 5:40
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 二 Land of the Samurai
|
||||
title: 02. Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
||||
track: 2
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/03 - 三 Tsunami Sky.mp3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/03 - 03. Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 8:23 - 12:10
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 5:40 - 8:11
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 三 Tsunami Sky
|
||||
title: 03. Blaze (Feat. Kaya Thomas - Dyke)
|
||||
track: 3
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/04 - 四 Sleeping on the Susuki Grasslands.mp3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/04 - 04. What If (Interlude).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 12:10 - 16:22
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 8:11 - 9:35
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 四 Sleeping on the Susuki Grasslands
|
||||
title: 04. What If (Interlude)
|
||||
track: 4
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/05 - 五 Gomenasai I.mp3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/05 - 05. No Peace (Feat. Tom Misch).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 16:22 - 20:39
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 9:35 - 13:19
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 五 Gomenasai I
|
||||
title: 05. No Peace (Feat. Tom Misch)
|
||||
track: 5
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/06 - 六 Sakura III.mp3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/06 - 06. Closer (Feat. Lester Duval).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 20:39 - 25:17
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 13:19 - 17:57
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 六 Sakura III
|
||||
title: 06. Closer (Feat. Lester Duval)
|
||||
track: 6
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/07 - 七 Grand Dojo.mp3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/07 - 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 25:17 - 28:30
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 17:57 - 20:05
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 七 Grand Dojo
|
||||
title: 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
||||
track: 7
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/08 - 八 Kumite.mp3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/08 - 08. Dreams (Feat. Carmody).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 28:30 - 32:38
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 20:05 - 23:58
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 八 Kumite
|
||||
title: 08. Dreams (Feat. Carmody)
|
||||
track: 8
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/09 - 九 Memoirs of a Geisha.mp3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/09 - 09. Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 32:38 - 36:26
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 23:58 - 24:45
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 九 Memoirs of a Geisha
|
||||
title: 09. Dreaming (Interlude) (Feat. Racheal Ofori)
|
||||
track: 9
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/10 - 十 Gomenasai II.mp3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/10 - 10. Hopeful (Feat. Jordan Rakei).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 36:26 - 40:53
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 24:45 - 28:53
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 十 Gomenasai II
|
||||
title: 10. Hopeful (Feat. Jordan Rakei)
|
||||
track: 10
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/11 - 十一 A conversation with the blacksmith.mp3
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 40:53 - 45:13
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 28:53 - 31:43
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
album: Alfa Mist - Nocturne [Full Album]
|
||||
albumartist: Proved Records
|
||||
artist: Proved Records
|
||||
genre: Unset
|
||||
title: 十一 A conversation with the blacksmith
|
||||
title: 11. Sunrise (Pillows) (Feat. Emmavie)
|
||||
track: 11
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/12 - 十二 The Forest of a Thousand Blades.mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 45:13 - 49:04
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
genre: Unset
|
||||
title: 十二 The Forest of a Thousand Blades
|
||||
track: 12
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/13 - 十三 Oath.mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 49:04 - 52:32
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
genre: Unset
|
||||
title: 十三 Oath
|
||||
track: 13
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/14 - 十四 Mysterious Ronin.mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 52:32 - 56:39
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
genre: Unset
|
||||
title: 十四 Mysterious Ronin
|
||||
track: 14
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/15 - 十五 Gomenasai III.mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 56:39 - 58:57
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
genre: Unset
|
||||
title: 十五 Gomenasai III
|
||||
track: 15
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/16 - 十六 Amaya village.mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 58:57 - 1:02:24
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
genre: Unset
|
||||
title: 十六 Amaya village
|
||||
track: 16
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/17 - 十七 Kenjutsu water style.mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 1:02:24 - 1:05:06
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
genre: Unset
|
||||
title: 十七 Kenjutsu water style
|
||||
track: 17
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/18 - 十八 Tea House.mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 1:05:06 - 1:08:40
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
genre: Unset
|
||||
title: 十八 Tea House
|
||||
track: 18
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/19 - 十九 Icarus.mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 1:08:40 - 1:11:26
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
genre: Unset
|
||||
title: 十九 Icarus
|
||||
track: 19
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/20 - 二十 6am Snowfall.mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 1:11:26 - 1:15:33
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
genre: Unset
|
||||
title: 二十 6am Snowfall
|
||||
track: 20
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/21 - 二十一 Silence.mp3
|
||||
From Chapter Split:
|
||||
Source Title: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
Segment: 1:15:33 - 1:19:04
|
||||
Music Tags:
|
||||
album: Elijah Nang - Gaijin 外人 LP - [ Full LP ]
|
||||
albumartist: Elijah Nang TV
|
||||
artist: Elijah Nang TV
|
||||
genre: Unset
|
||||
title: 二十一 Silence
|
||||
track: 21
|
||||
year: 2019
|
||||
Elijah Nang - Gaijin 外人 LP - [ Full LP ]/folder.jpg
|
||||
year: 2017
|
||||
Alfa Mist - Nocturne [Full Album]/folder.jpg
|
||||
|
|
@ -0,0 +1,146 @@
|
|||
Files created in '{output_directory}'
|
||||
----------------------------------------
|
||||
Nocturne/01 - Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 0:00 - 2:06
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: Intro (Feat. Racheal Ofori & Barney Artist)
|
||||
track: 1
|
||||
year: 2017
|
||||
Nocturne/02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 2:06 - 5:40
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
||||
track: 2
|
||||
year: 2017
|
||||
Nocturne/03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 5:40 - 8:11
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: Blaze (Feat. Kaya Thomas - Dyke)
|
||||
track: 3
|
||||
year: 2017
|
||||
Nocturne/04 - What If (Interlude).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 8:11 - 9:35
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: What If (Interlude)
|
||||
track: 4
|
||||
year: 2017
|
||||
Nocturne/05 - No Peace (Feat. Tom Misch).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 9:35 - 13:19
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: No Peace (Feat. Tom Misch)
|
||||
track: 5
|
||||
year: 2017
|
||||
Nocturne/06 - Closer (Feat. Lester Duval).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 13:19 - 17:57
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: Closer (Feat. Lester Duval)
|
||||
track: 6
|
||||
year: 2017
|
||||
Nocturne/07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 17:57 - 20:05
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
||||
track: 7
|
||||
year: 2017
|
||||
Nocturne/08 - Dreams (Feat. Carmody).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 20:05 - 23:58
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: Dreams (Feat. Carmody)
|
||||
track: 8
|
||||
year: 2017
|
||||
Nocturne/09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 23:58 - 24:45
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: Dreaming (Interlude) (Feat. Racheal Ofori)
|
||||
track: 9
|
||||
year: 2017
|
||||
Nocturne/10 - Hopeful (Feat. Jordan Rakei).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 24:45 - 28:53
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: Hopeful (Feat. Jordan Rakei)
|
||||
track: 10
|
||||
year: 2017
|
||||
Nocturne/11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||
From Chapter Split:
|
||||
Warning: Dry-run assumes embedded chapters with no modifications
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 28:53 - 31:43
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: Sunrise (Pillows) (Feat. Emmavie)
|
||||
track: 11
|
||||
year: 2017
|
||||
Nocturne/folder.jpg
|
||||
|
|
@ -0,0 +1,135 @@
|
|||
Files created in '{output_directory}'
|
||||
----------------------------------------
|
||||
Nocturne/01 - Intro (Feat. Racheal Ofori & Barney Artist).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 0:00 - 2:06
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: Intro (Feat. Racheal Ofori & Barney Artist)
|
||||
track: 1
|
||||
year: 2017
|
||||
Nocturne/02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 2:06 - 5:40
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: Answers (Feat. Rick David & Kaya Thomas - Dyke)
|
||||
track: 2
|
||||
year: 2017
|
||||
Nocturne/03 - Blaze (Feat. Kaya Thomas - Dyke).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 5:40 - 8:11
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: Blaze (Feat. Kaya Thomas - Dyke)
|
||||
track: 3
|
||||
year: 2017
|
||||
Nocturne/04 - What If (Interlude).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 8:11 - 9:35
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: What If (Interlude)
|
||||
track: 4
|
||||
year: 2017
|
||||
Nocturne/05 - No Peace (Feat. Tom Misch).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 9:35 - 13:19
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: No Peace (Feat. Tom Misch)
|
||||
track: 5
|
||||
year: 2017
|
||||
Nocturne/06 - Closer (Feat. Lester Duval).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 13:19 - 17:57
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: Closer (Feat. Lester Duval)
|
||||
track: 6
|
||||
year: 2017
|
||||
Nocturne/07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 17:57 - 20:05
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: Delusions: Rumination (Interlude) (Feat. Racheal Ofori)
|
||||
track: 7
|
||||
year: 2017
|
||||
Nocturne/08 - Dreams (Feat. Carmody).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 20:05 - 23:58
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: Dreams (Feat. Carmody)
|
||||
track: 8
|
||||
year: 2017
|
||||
Nocturne/09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 23:58 - 24:45
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: Dreaming (Interlude) (Feat. Racheal Ofori)
|
||||
track: 9
|
||||
year: 2017
|
||||
Nocturne/10 - Hopeful (Feat. Jordan Rakei).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 24:45 - 28:53
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: Hopeful (Feat. Jordan Rakei)
|
||||
track: 10
|
||||
year: 2017
|
||||
Nocturne/11 - Sunrise (Pillows) (Feat. Emmavie).mp3
|
||||
From Chapter Split:
|
||||
Source Title: Alfa Mist - Nocturne [Full Album]
|
||||
Segment: 28:53 - 31:43
|
||||
Music Tags:
|
||||
album: Nocturne
|
||||
albumartist: Alfa Mist
|
||||
artist: Alfa Mist
|
||||
genre: Unset
|
||||
title: Sunrise (Pillows) (Feat. Emmavie)
|
||||
track: 11
|
||||
year: 2017
|
||||
Nocturne/folder.jpg
|
||||
Loading…
Reference in a new issue