diff --git a/examples/music_audio_from_videos.yaml b/examples/music_audio_from_videos.yaml index 801e018d..153a9034 100644 --- a/examples/music_audio_from_videos.yaml +++ b/examples/music_audio_from_videos.yaml @@ -20,7 +20,9 @@ presets: embed_thumbnail: False # Set to True to embed album art tags: artist: "{custom_artist_name}" + artists: "{custom_artist_name}" albumartist: "{custom_artist_name}" + albumartists: "{custom_artist_name}" title: "{custom_track_name}" album: "{custom_album_name}" track: "{custom_track_number}" diff --git a/src/ytdl_sub/plugins/music_tags.py b/src/ytdl_sub/plugins/music_tags.py index b5387876..b054c30d 100644 --- a/src/ytdl_sub/plugins/music_tags.py +++ b/src/ytdl_sub/plugins/music_tags.py @@ -99,7 +99,12 @@ class MusicTagsPlugin(Plugin[MusicTagsOptions]): if not self.is_dry_run: audio_file = mediafile.MediaFile(entry.get_download_file_path()) for tag_name, tag_value in tags_to_write.items(): - setattr(audio_file, tag_name, tag_value) + # If the attribute is a List-type, set it as the first element of the list + if isinstance(getattr(audio_file, tag_name), list): + setattr(audio_file, tag_name, [tag_value]) + # Otherwise, set as single value + else: + setattr(audio_file, tag_name, tag_value) if self.plugin_options.embed_thumbnail: # convert the entry thumbnail so it is embedded as jpg diff --git a/tests/resources/expected_downloads_summaries/plugins/split_by_chapters_video.json b/tests/resources/expected_downloads_summaries/plugins/split_by_chapters_video.json index 726ef3cb..722ce4c0 100644 --- a/tests/resources/expected_downloads_summaries/plugins/split_by_chapters_video.json +++ b/tests/resources/expected_downloads_summaries/plugins/split_by_chapters_video.json @@ -1,15 +1,15 @@ { ".ytdl-sub-split_by_chapters_video-download-archive.json": "7001417f7a398959f3296ece81575a77", - "Alfa Mist - Nocturne [Full Album]/01 - 01. Intro (Feat. Racheal Ofori & Barney Artist).mp3": "1ede8775719b99d05c89d6d0a2a74df5", - "Alfa Mist - Nocturne [Full Album]/02 - 02. Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3": "2430b44a6c15050f7e2ee09274c26600", - "Alfa Mist - Nocturne [Full Album]/03 - 03. Blaze (Feat. Kaya Thomas - Dyke).mp3": "8dbb8d15109955c4540dfe3c015157b8", - "Alfa Mist - Nocturne [Full Album]/04 - 04. What If (Interlude).mp3": "69586c0b3de3f008f778da8b18c2eb6c", - "Alfa Mist - Nocturne [Full Album]/05 - 05. No Peace (Feat. Tom Misch).mp3": "3aab3f09e83fbb6f6c0ca8d40f890a39", - "Alfa Mist - Nocturne [Full Album]/06 - 06. Closer (Feat. Lester Duval).mp3": "66b195b766a977b25423bae8548a3182", - "Alfa Mist - Nocturne [Full Album]/07 - 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3": "f94199e76844bfc067acf6483db5bfe4", - "Alfa Mist - Nocturne [Full Album]/08 - 08. Dreams (Feat. Carmody).mp3": "7102f0ecdd2e00e48e469255e3f02524", - "Alfa Mist - Nocturne [Full Album]/09 - 09. Dreaming (Interlude) (Feat. Racheal Ofori).mp3": "655686323fd083b8ffc6956e1da7094f", - "Alfa Mist - Nocturne [Full Album]/10 - 10. Hopeful (Feat. Jordan Rakei).mp3": "68782c0b15ae4da60bae0cd8b2df1bed", - "Alfa Mist - Nocturne [Full Album]/11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3": "128edd880a9c63acfcdacfbe83596e46", + "Alfa Mist - Nocturne [Full Album]/01 - 01. Intro (Feat. Racheal Ofori & Barney Artist).mp3": "87d036987c4903e62e4f5001ea38a49a", + "Alfa Mist - Nocturne [Full Album]/02 - 02. Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3": "96975f139dcc87a05dec03ab4f839d94", + "Alfa Mist - Nocturne [Full Album]/03 - 03. Blaze (Feat. Kaya Thomas - Dyke).mp3": "58df7bb835d05e3cb0e28abb4c784a5e", + "Alfa Mist - Nocturne [Full Album]/04 - 04. What If (Interlude).mp3": "d8313eb888dc3c8109623c84139280e7", + "Alfa Mist - Nocturne [Full Album]/05 - 05. No Peace (Feat. Tom Misch).mp3": "4c6ee32b371e6e5374c722f4c854a965", + "Alfa Mist - Nocturne [Full Album]/06 - 06. Closer (Feat. Lester Duval).mp3": "d54280bca884ddc1a0614b00c2d70ea3", + "Alfa Mist - Nocturne [Full Album]/07 - 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3": "61943dfb29ca40069969790773bf3cd9", + "Alfa Mist - Nocturne [Full Album]/08 - 08. Dreams (Feat. Carmody).mp3": "c37001fb9f3c0cca1bffdf3b2ae4a0fc", + "Alfa Mist - Nocturne [Full Album]/09 - 09. Dreaming (Interlude) (Feat. Racheal Ofori).mp3": "5334aa0af6ce2ec1283806cf7d9a15c1", + "Alfa Mist - Nocturne [Full Album]/10 - 10. Hopeful (Feat. Jordan Rakei).mp3": "526d70f88ab03b972c06243f164d4b0e", + "Alfa Mist - Nocturne [Full Album]/11 - 11. Sunrise (Pillows) (Feat. Emmavie).mp3": "8376927e5cecf6bed63f016649b77354", "Alfa Mist - Nocturne [Full Album]/folder.jpg": "bd3685acc53072e591bae2505ecb0648" } \ No newline at end of file diff --git a/tests/resources/expected_downloads_summaries/plugins/split_by_chapters_with_regex_no_chapters_video_pass.txt b/tests/resources/expected_downloads_summaries/plugins/split_by_chapters_with_regex_no_chapters_video_pass.txt index ec039d90..cfcf6f35 100644 --- a/tests/resources/expected_downloads_summaries/plugins/split_by_chapters_with_regex_no_chapters_video_pass.txt +++ b/tests/resources/expected_downloads_summaries/plugins/split_by_chapters_with_regex_no_chapters_video_pass.txt @@ -1,5 +1,5 @@ { ".ytdl-sub-split_by_chapters_with_regex_video-download-archive.json": "11367ac13068646e35a53d25deeba834", - "Oblivion Mod "Falcor" p.1/01 - Oblivion Mod "Falcor" p.1.mp3": "6d570f225f6c3a14de0ba4c912995641", + "Oblivion Mod "Falcor" p.1/01 - Oblivion Mod "Falcor" p.1.mp3": "dfcf5aed1742bd55e562a0d93e555f01", "Oblivion Mod "Falcor" p.1/folder.jpg": "fb95b510681676e81c321171fc23143e" } \ No newline at end of file diff --git a/tests/resources/expected_downloads_summaries/plugins/split_by_chapters_with_regex_video.json b/tests/resources/expected_downloads_summaries/plugins/split_by_chapters_with_regex_video.json index 0a7ee0a6..77cb9a09 100644 --- a/tests/resources/expected_downloads_summaries/plugins/split_by_chapters_with_regex_video.json +++ b/tests/resources/expected_downloads_summaries/plugins/split_by_chapters_with_regex_video.json @@ -1,15 +1,15 @@ { ".ytdl-sub-split_by_chapters_with_regex_video-download-archive.json": "5f281991d441f406b0d721b250e74b79", - "Nocturne/01 - Intro (Feat. Racheal Ofori & Barney Artist).mp3": "b2e2a9834f03d1928e0c8a0602899d4d", - "Nocturne/02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3": "8fe76edcc77c5d8db0f7b5b8577a4cf6", - "Nocturne/03 - Blaze (Feat. Kaya Thomas - Dyke).mp3": "fd45453753a783ec4f26ef399a8ecece", - "Nocturne/04 - What If (Interlude).mp3": "f30d081e7719f29c300e1830132e824e", - "Nocturne/05 - No Peace (Feat. Tom Misch).mp3": "878824c9d08add7f7525f11abd62670a", - "Nocturne/06 - Closer (Feat. Lester Duval).mp3": "bb5011399be2a68c9049f2e45fdf1331", - "Nocturne/07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3": "e8034ddb78455fe331d0bcdd0b6536fe", - "Nocturne/08 - Dreams (Feat. Carmody).mp3": "d1bae89f01d5028f0ae34ae41a9fbb17", - "Nocturne/09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3": "e50182fa81d56bb9261654e1906d18af", - "Nocturne/10 - Hopeful (Feat. Jordan Rakei).mp3": "d2f9958553262c4bee4f82f98f1d42c7", - "Nocturne/11 - Sunrise (Pillows) (Feat. Emmavie).mp3": "767dc4f27cc0a57d5391baf7b242d3f0", + "Nocturne/01 - Intro (Feat. Racheal Ofori & Barney Artist).mp3": "1f51d6809509904b51ad8930d9bb49b0", + "Nocturne/02 - Answers (Feat. Rick David & Kaya Thomas - Dyke).mp3": "16ba92db30c7199373855d0ed6d2cdde", + "Nocturne/03 - Blaze (Feat. Kaya Thomas - Dyke).mp3": "21af1894554dc61f437b191a6702c274", + "Nocturne/04 - What If (Interlude).mp3": "b6cab2cfcbcb3807eb8176281960e9be", + "Nocturne/05 - No Peace (Feat. Tom Misch).mp3": "56ae7656dc6edca4e55e0afc9422002a", + "Nocturne/06 - Closer (Feat. Lester Duval).mp3": "93e7025813924670595032c3a2038d94", + "Nocturne/07 - Delusions: Rumination (Interlude) (Feat. Racheal Ofori).mp3": "b757d50d7ad154fe36d13ae72a05a744", + "Nocturne/08 - Dreams (Feat. Carmody).mp3": "de1e9313623368a9c7e63a08d77ca54b", + "Nocturne/09 - Dreaming (Interlude) (Feat. Racheal Ofori).mp3": "264e0a6c3e572e05daffc38bf8178226", + "Nocturne/10 - Hopeful (Feat. Jordan Rakei).mp3": "e72408d03604ff928acf6ce4b383895c", + "Nocturne/11 - Sunrise (Pillows) (Feat. Emmavie).mp3": "146d981480be3bf28726a27443c1695a", "Nocturne/folder.jpg": "bd3685acc53072e591bae2505ecb0648" } \ No newline at end of file diff --git a/tests/resources/expected_downloads_summaries/plugins/test_audio_extract_playlist.json b/tests/resources/expected_downloads_summaries/plugins/test_audio_extract_playlist.json index e026e3c7..2676cfc4 100644 --- a/tests/resources/expected_downloads_summaries/plugins/test_audio_extract_playlist.json +++ b/tests/resources/expected_downloads_summaries/plugins/test_audio_extract_playlist.json @@ -1,5 +1,5 @@ { - "Jesse's Minecraft Server [Trailer - Feb.1].ogg": "0d4509c21883fbc46584d25f6ec4fd80", - "Jesse's Minecraft Server [Trailer - Feb.27].ogg": "7ab2863ee0e1c215102c4512085f877d", - "Jesse's Minecraft Server [Trailer - Mar.21].ogg": "ed6a54d5b3ec6303ea6a175e02c69511" + "Jesse's Minecraft Server [Trailer - Feb.1].ogg": "e8802a80b3011ba4ebdb2fdd8da4f84d", + "Jesse's Minecraft Server [Trailer - Feb.27].ogg": "e9a8a0f2aa98a37610b9418333026f58", + "Jesse's Minecraft Server [Trailer - Mar.21].ogg": "87fd3e42e238374ae1411479d35d38b7" } \ No newline at end of file diff --git a/tests/resources/expected_downloads_summaries/plugins/test_audio_extract_single.json b/tests/resources/expected_downloads_summaries/plugins/test_audio_extract_single.json index 7ac29d35..9e8f03fa 100644 --- a/tests/resources/expected_downloads_summaries/plugins/test_audio_extract_single.json +++ b/tests/resources/expected_downloads_summaries/plugins/test_audio_extract_single.json @@ -1,3 +1,3 @@ { - "YouTube Rewind 2019: For the Record | #YouTubeRewind.mp3": "8e531bfb93b144fe652f44950e31b3f7" + "YouTube Rewind 2019: For the Record | #YouTubeRewind.mp3": "5df65e724b3c305195473c42bbc53da9" } \ No newline at end of file diff --git a/tests/resources/transaction_log_summaries/plugins/split_by_chapters_video-dry-run.txt b/tests/resources/transaction_log_summaries/plugins/split_by_chapters_video-dry-run.txt index 3e361482..1b42d8b5 100644 --- a/tests/resources/transaction_log_summaries/plugins/split_by_chapters_video-dry-run.txt +++ b/tests/resources/transaction_log_summaries/plugins/split_by_chapters_video-dry-run.txt @@ -11,7 +11,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 01. Intro (Feat. Racheal Ofori & Barney Artist) track: 1 @@ -24,7 +26,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 02. Answers (Feat. Rick David & Kaya Thomas - Dyke) track: 2 @@ -37,7 +41,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 03. Blaze (Feat. Kaya Thomas - Dyke) track: 3 @@ -50,7 +56,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 04. What If (Interlude) track: 4 @@ -63,7 +71,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 05. No Peace (Feat. Tom Misch) track: 5 @@ -76,7 +86,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 06. Closer (Feat. Lester Duval) track: 6 @@ -89,7 +101,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori) track: 7 @@ -102,7 +116,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 08. Dreams (Feat. Carmody) track: 8 @@ -115,7 +131,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 09. Dreaming (Interlude) (Feat. Racheal Ofori) track: 9 @@ -128,7 +146,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 10. Hopeful (Feat. Jordan Rakei) track: 10 @@ -141,7 +161,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 11. Sunrise (Pillows) (Feat. Emmavie) track: 11 diff --git a/tests/resources/transaction_log_summaries/plugins/split_by_chapters_video.txt b/tests/resources/transaction_log_summaries/plugins/split_by_chapters_video.txt index b66c8b89..5616f6e5 100644 --- a/tests/resources/transaction_log_summaries/plugins/split_by_chapters_video.txt +++ b/tests/resources/transaction_log_summaries/plugins/split_by_chapters_video.txt @@ -10,7 +10,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 01. Intro (Feat. Racheal Ofori & Barney Artist) track: 1 @@ -22,7 +24,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 02. Answers (Feat. Rick David & Kaya Thomas - Dyke) track: 2 @@ -34,7 +38,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 03. Blaze (Feat. Kaya Thomas - Dyke) track: 3 @@ -46,7 +52,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 04. What If (Interlude) track: 4 @@ -58,7 +66,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 05. No Peace (Feat. Tom Misch) track: 5 @@ -70,7 +80,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 06. Closer (Feat. Lester Duval) track: 6 @@ -82,7 +94,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 07. Delusions: Rumination (Interlude) (Feat. Racheal Ofori) track: 7 @@ -94,7 +108,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 08. Dreams (Feat. Carmody) track: 8 @@ -106,7 +122,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 09. Dreaming (Interlude) (Feat. Racheal Ofori) track: 9 @@ -118,7 +136,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 10. Hopeful (Feat. Jordan Rakei) track: 10 @@ -130,7 +150,9 @@ Files created: Music Tags: album: Alfa Mist - Nocturne [Full Album] albumartist: Proved Records + albumartists: Proved Records artist: Proved Records + artists: Proved Records genre: Unset title: 11. Sunrise (Pillows) (Feat. Emmavie) track: 11 diff --git a/tests/resources/transaction_log_summaries/plugins/split_by_chapters_with_regex_no_chapters_video_pass.txt b/tests/resources/transaction_log_summaries/plugins/split_by_chapters_with_regex_no_chapters_video_pass.txt index 9df6899f..83862bf3 100644 --- a/tests/resources/transaction_log_summaries/plugins/split_by_chapters_with_regex_no_chapters_video_pass.txt +++ b/tests/resources/transaction_log_summaries/plugins/split_by_chapters_with_regex_no_chapters_video_pass.txt @@ -7,7 +7,9 @@ Files created: Music Tags: album: Oblivion Mod "Falcor" p.1 albumartist: Project Zombie + albumartists: Project Zombie artist: Project Zombie + artists: Project Zombie genre: Unset title: Oblivion Mod "Falcor" p.1 track: 1 diff --git a/tests/resources/transaction_log_summaries/plugins/split_by_chapters_with_regex_video-dry-run.txt b/tests/resources/transaction_log_summaries/plugins/split_by_chapters_with_regex_video-dry-run.txt index 15a31b04..f86ef1f5 100644 --- a/tests/resources/transaction_log_summaries/plugins/split_by_chapters_with_regex_video-dry-run.txt +++ b/tests/resources/transaction_log_summaries/plugins/split_by_chapters_with_regex_video-dry-run.txt @@ -11,7 +11,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: Intro (Feat. Racheal Ofori & Barney Artist) track: 1 @@ -24,7 +26,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: Answers (Feat. Rick David & Kaya Thomas - Dyke) track: 2 @@ -37,7 +41,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: Blaze (Feat. Kaya Thomas - Dyke) track: 3 @@ -50,7 +56,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: What If (Interlude) track: 4 @@ -63,7 +71,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: No Peace (Feat. Tom Misch) track: 5 @@ -76,7 +86,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: Closer (Feat. Lester Duval) track: 6 @@ -89,7 +101,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: Delusions: Rumination (Interlude) (Feat. Racheal Ofori) track: 7 @@ -102,7 +116,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: Dreams (Feat. Carmody) track: 8 @@ -115,7 +131,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: Dreaming (Interlude) (Feat. Racheal Ofori) track: 9 @@ -128,7 +146,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: Hopeful (Feat. Jordan Rakei) track: 10 @@ -141,7 +161,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: Sunrise (Pillows) (Feat. Emmavie) track: 11 diff --git a/tests/resources/transaction_log_summaries/plugins/split_by_chapters_with_regex_video.txt b/tests/resources/transaction_log_summaries/plugins/split_by_chapters_with_regex_video.txt index dc546f1c..e6233833 100644 --- a/tests/resources/transaction_log_summaries/plugins/split_by_chapters_with_regex_video.txt +++ b/tests/resources/transaction_log_summaries/plugins/split_by_chapters_with_regex_video.txt @@ -10,7 +10,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: Intro (Feat. Racheal Ofori & Barney Artist) track: 1 @@ -22,7 +24,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: Answers (Feat. Rick David & Kaya Thomas - Dyke) track: 2 @@ -34,7 +38,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: Blaze (Feat. Kaya Thomas - Dyke) track: 3 @@ -46,7 +52,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: What If (Interlude) track: 4 @@ -58,7 +66,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: No Peace (Feat. Tom Misch) track: 5 @@ -70,7 +80,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: Closer (Feat. Lester Duval) track: 6 @@ -82,7 +94,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: Delusions: Rumination (Interlude) (Feat. Racheal Ofori) track: 7 @@ -94,7 +108,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: Dreams (Feat. Carmody) track: 8 @@ -106,7 +122,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: Dreaming (Interlude) (Feat. Racheal Ofori) track: 9 @@ -118,7 +136,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: Hopeful (Feat. Jordan Rakei) track: 10 @@ -130,7 +150,9 @@ Files created: Music Tags: album: Nocturne albumartist: Alfa Mist + albumartists: Alfa Mist artist: Alfa Mist + artists: Alfa Mist genre: Unset title: Sunrise (Pillows) (Feat. Emmavie) track: 11 diff --git a/tests/resources/transaction_log_summaries/plugins/test_audio_extract_playlist.txt b/tests/resources/transaction_log_summaries/plugins/test_audio_extract_playlist.txt index 8349bc6f..ab4be55f 100644 --- a/tests/resources/transaction_log_summaries/plugins/test_audio_extract_playlist.txt +++ b/tests/resources/transaction_log_summaries/plugins/test_audio_extract_playlist.txt @@ -5,7 +5,9 @@ Files created: Music Tags: album: Singles albumartist: Project Zombie + albumartists: Project Zombie artist: Project Zombie + artists: Project Zombie genre: Unset title: Jesse's Minecraft Server [Trailer - Feb.1] track: 3 @@ -14,7 +16,9 @@ Files created: Music Tags: album: Singles albumartist: Project Zombie + albumartists: Project Zombie artist: Project Zombie + artists: Project Zombie genre: Unset title: Jesse's Minecraft Server [Trailer - Feb.27] track: 2 @@ -23,7 +27,9 @@ Files created: Music Tags: album: Singles albumartist: Project Zombie + albumartists: Project Zombie artist: Project Zombie + artists: Project Zombie genre: Unset title: Jesse's Minecraft Server [Trailer - Mar.21] track: 1 diff --git a/tests/resources/transaction_log_summaries/plugins/test_audio_extract_single.txt b/tests/resources/transaction_log_summaries/plugins/test_audio_extract_single.txt index aa7ec2d8..9f610a07 100644 --- a/tests/resources/transaction_log_summaries/plugins/test_audio_extract_single.txt +++ b/tests/resources/transaction_log_summaries/plugins/test_audio_extract_single.txt @@ -5,7 +5,9 @@ Files created: Embedded Thumbnail, Music Tags: album: Singles albumartist: YouTube + albumartists: YouTube artist: YouTube + artists: YouTube genre: Unset title: YouTube Rewind 2019: For the Record | #YouTubeRewind track: 1