From 6cda86300e3778ba777053226bb004a7d505e6bf Mon Sep 17 00:00:00 2001 From: Adam R Grey Date: Sun, 16 Jan 2022 20:52:45 -0500 Subject: [PATCH] detiktokify uses ytdlp --- Features.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Features.cs b/Features.cs index ae1cfdd..8ed9ed9 100644 --- a/Features.cs +++ b/Features.cs @@ -17,7 +17,7 @@ namespace silverworker_discord public static async void detiktokify(Uri link, SocketUserMessage message) { var ytdl = new YoutubeDLSharp.YoutubeDL(); - ytdl.YoutubeDLPath = "youtube-dl"; + ytdl.YoutubeDLPath = "yt-dlp"; ytdl.FFmpegPath = "ffmpeg"; ytdl.OutputFolder = ""; ytdl.OutputFileTemplate = "tiktokbad.%(ext)s"; @@ -232,4 +232,4 @@ namespace silverworker_discord await message.Channel.SendMessageAsync(piece1[r.Next(piece1.Count)] + piece2[r.Next(piece2.Count)]+ piece3[r.Next(piece3.Count)]+ piece4[r.Next(piece4.Count)]); } } -} \ No newline at end of file +}