fix: removed invalid stuff
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
5179c64161
commit
788103a68e
@ -6,8 +6,8 @@ logging.getLogger().setLevel(logging.DEBUG)
|
|||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
commands = [
|
commands = [
|
||||||
"s: #a Psychonaut 4",
|
"s: #a Crystal F",
|
||||||
"d: 0",
|
"d: 20",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@ -112,8 +112,6 @@ def write_metadata_to_target(metadata: Metadata, target: Target, song: Song):
|
|||||||
USLT(encoding=3, lang=u'eng', desc=u'desc', text=uslt_val)
|
USLT(encoding=3, lang=u'eng', desc=u'desc', text=uslt_val)
|
||||||
)
|
)
|
||||||
|
|
||||||
mutagen_file = mutagen.File(target.file_path)
|
|
||||||
|
|
||||||
id3_object.add_metadata(metadata)
|
id3_object.add_metadata(metadata)
|
||||||
id3_object.save()
|
id3_object.save()
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import List, Tuple, TextIO, Union
|
from typing import List, Tuple, TextIO, Union, Optional
|
||||||
import logging
|
import logging
|
||||||
import random
|
import random
|
||||||
import requests
|
import requests
|
||||||
@ -31,7 +31,10 @@ class Target(OuterProxy):
|
|||||||
}
|
}
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def temp(cls, name: str = str(random.randint(0, HIGHEST_ID))) -> P:
|
def temp(cls, name: str = str(random.randint(0, HIGHEST_ID)), file_extension: Optional[str] = None) -> P:
|
||||||
|
if file_extension is not None:
|
||||||
|
name = f"{name}.{file_extension}"
|
||||||
|
|
||||||
return cls(main_settings["temp_directory"] / name)
|
return cls(main_settings["temp_directory"] / name)
|
||||||
|
|
||||||
# This is automatically generated
|
# This is automatically generated
|
||||||
|
@ -381,7 +381,7 @@ class Page:
|
|||||||
song.target_collection.append(new_target)
|
song.target_collection.append(new_target)
|
||||||
|
|
||||||
r = DownloadResult(1)
|
r = DownloadResult(1)
|
||||||
temp_target: Target = Target.temp()
|
temp_target: Target = Target.temp(file_extension=main_settings["audio_format"])
|
||||||
|
|
||||||
found_on_disc = False
|
found_on_disc = False
|
||||||
target: Target
|
target: Target
|
||||||
|
@ -145,6 +145,8 @@ class SuperYouTube(Page):
|
|||||||
_sponsorblock_connection: Connection = Connection()
|
_sponsorblock_connection: Connection = Connection()
|
||||||
self.sponsorblock = python_sponsorblock.SponsorBlock(silent=True, session=_sponsorblock_connection.session)
|
self.sponsorblock = python_sponsorblock.SponsorBlock(silent=True, session=_sponsorblock_connection.session)
|
||||||
|
|
||||||
|
super().__init__(*args, **kwargs)
|
||||||
|
|
||||||
def get_source_type(self, source: Source) -> Optional[Type[DatabaseObject]]:
|
def get_source_type(self, source: Source) -> Optional[Type[DatabaseObject]]:
|
||||||
_url_type = {
|
_url_type = {
|
||||||
YouTubeUrlType.CHANNEL: Artist,
|
YouTubeUrlType.CHANNEL: Artist,
|
||||||
|
@ -193,7 +193,6 @@ class YoutubeMusic(SuperYouTube):
|
|||||||
|
|
||||||
self.start_millis = get_current_millis()
|
self.start_millis = get_current_millis()
|
||||||
|
|
||||||
if self.credentials.api_key == "" or DEBUG_YOUTUBE_INITIALIZING:
|
|
||||||
self._fetch_from_main_page()
|
self._fetch_from_main_page()
|
||||||
|
|
||||||
SuperYouTube.__init__(self, *args, **kwargs)
|
SuperYouTube.__init__(self, *args, **kwargs)
|
||||||
@ -215,6 +214,8 @@ class YoutubeMusic(SuperYouTube):
|
|||||||
self.download_values_by_url: dict = {}
|
self.download_values_by_url: dict = {}
|
||||||
self.not_download: Dict[str, DownloadError] = {}
|
self.not_download: Dict[str, DownloadError] = {}
|
||||||
|
|
||||||
|
super().__init__(*args, **kwargs)
|
||||||
|
|
||||||
def _fetch_from_main_page(self):
|
def _fetch_from_main_page(self):
|
||||||
"""
|
"""
|
||||||
===API=KEY===
|
===API=KEY===
|
||||||
@ -736,7 +737,7 @@ class YoutubeMusic(SuperYouTube):
|
|||||||
raw_headers=True,
|
raw_headers=True,
|
||||||
disable_cache=True,
|
disable_cache=True,
|
||||||
headers=media.get("headers", {}),
|
headers=media.get("headers", {}),
|
||||||
# chunk_size=media.get("chunk_size", main_settings["chunk_size"]),
|
chunk_size=main_settings["chunk_size"],
|
||||||
method="GET",
|
method="GET",
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user