From c5d0a827e92246fe91dfbf673d5e5fc4b57cad01 Mon Sep 17 00:00:00 2001 From: lunaticbum Date: Tue, 21 Apr 2026 17:10:59 +0900 Subject: [PATCH] ... --- .../bums/lunatic/launcher/helpers/ForeGroundService.kt | 6 ++++-- app/src/main/kotlin/bums/lunatic/launcher/home/GeckoWeb.kt | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/app/src/main/kotlin/bums/lunatic/launcher/helpers/ForeGroundService.kt b/app/src/main/kotlin/bums/lunatic/launcher/helpers/ForeGroundService.kt index 0eada38c..9d033a17 100644 --- a/app/src/main/kotlin/bums/lunatic/launcher/helpers/ForeGroundService.kt +++ b/app/src/main/kotlin/bums/lunatic/launcher/helpers/ForeGroundService.kt @@ -558,7 +558,7 @@ class ForeGroundService : Service() { addOption("--cookies", "${cookieFile.absolutePath}") // 출력 경로 - addOption("-o", "${youtubeDLDir.absolutePath}/%(title)s [%(id)s].%(ext)s") + addOption("-o", "${youtubeDLDir.absolutePath}/[%(uploader)s] %(title)s [%(id)s].%(ext)s") // if (forMusic) { // // 음악 전용 옵션 @@ -568,7 +568,9 @@ class ForeGroundService : Service() { // addOption("-f", "bestaudio[ext=m4a]/bestaudio/best") // } else { // 일반 영상용 - addOption("-f", "bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best") +// addOption("-f", "bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best") + addOption("-f", "best[ext=mp4]") + // } addOption("--no-check-certificates") addOption("--verbose") diff --git a/app/src/main/kotlin/bums/lunatic/launcher/home/GeckoWeb.kt b/app/src/main/kotlin/bums/lunatic/launcher/home/GeckoWeb.kt index 964921e8..bc763d07 100644 --- a/app/src/main/kotlin/bums/lunatic/launcher/home/GeckoWeb.kt +++ b/app/src/main/kotlin/bums/lunatic/launcher/home/GeckoWeb.kt @@ -291,7 +291,8 @@ open class GeckoWeb @JvmOverloads constructor( // addOption("-f", "bestaudio[ext=m4a]/bestaudio/best") // } else { // 일반 영상용 기본 포맷 - addOption("-f", "bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best") + addOption("-f", "best[ext=mp4]") +// addOption("-f", "bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best") // }