From 9cd9167b25498c47a60acf1e47f85f79f78c7dee Mon Sep 17 00:00:00 2001 From: Leo Heitmann Ruiz <148111793+leoheitmannruiz@users.noreply.github.com> Date: Mon, 11 Mar 2024 11:20:43 +0100 Subject: [PATCH] Remove emoji --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1e108a29c..e186dcb7f 100644 --- a/README.md +++ b/README.md @@ -1920,12 +1920,12 @@ import yt_dlp URL = 'https://www.youtube.com/watch?v=BaW_jenozKc' -# ℹ️ See help(yt_dlp.YoutubeDL) for a list of available options and public functions +# See help(yt_dlp.YoutubeDL) for a list of available options and public functions ydl_opts = {} with yt_dlp.YoutubeDL(ydl_opts) as ydl: info = ydl.extract_info(URL, download=False) - # ℹ️ ydl.sanitize_info makes the info json-serializable + # ydl.sanitize_info makes the info json-serializable print(json.dumps(ydl.sanitize_info(info))) ``` #### Download using an info-json @@ -1951,7 +1951,7 @@ URLS = ['https://www.youtube.com/watch?v=BaW_jenozKc'] ydl_opts = { 'format': 'm4a/bestaudio/best', - # ℹ️ See help(yt_dlp.postprocessor) for a list of available Postprocessors and their arguments + # See help(yt_dlp.postprocessor) for a list of available Postprocessors and their arguments 'postprocessors': [{ # Extract audio using ffmpeg 'key': 'FFmpegExtractAudio', 'preferredcodec': 'm4a', @@ -2009,7 +2009,7 @@ class MyLogger: print(msg) -# ℹ️ See "progress_hooks" in help(yt_dlp.YoutubeDL) +# See "progress_hooks" in help(yt_dlp.YoutubeDL) def my_hook(d): if d['status'] == 'finished': print('Done downloading, now post-processing ...') @@ -2031,7 +2031,7 @@ import yt_dlp URLS = ['https://www.youtube.com/watch?v=BaW_jenozKc'] -# ℹ️ See help(yt_dlp.postprocessor.PostProcessor) +# See help(yt_dlp.postprocessor.PostProcessor) class MyCustomPP(yt_dlp.postprocessor.PostProcessor): def run(self, info): self.to_screen('Doing stuff') @@ -2039,7 +2039,7 @@ class MyCustomPP(yt_dlp.postprocessor.PostProcessor): with yt_dlp.YoutubeDL() as ydl: - # ℹ️ "when" can take any value in yt_dlp.utils.POSTPROCESS_WHEN + # "when" can take any value in yt_dlp.utils.POSTPROCESS_WHEN ydl.add_post_processor(MyCustomPP(), when='pre_process') ydl.download(URLS) ```