aboutsummaryrefslogtreecommitdiff
path: root/src/config.rs
diff options
context:
space:
mode:
authorNathan Perry <np@nathanperry.dev>2024-05-08 14:15:42 -0400
committerNathan Perry <np@nathanperry.dev>2024-05-08 14:16:01 -0400
commit47817c4166937af24041a93e56ad9f841bf1e8f1 (patch)
treea8ec0a674a5a4e5046e1bc92c1c317a48b5e4815 /src/config.rs
parentffba60b278162707bc4eb004c3bfb6b2e9595213 (diff)
fixups: memes working
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.rs b/src/config.rs
index 59bb4c3..84ee88b 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -17,7 +17,7 @@ lazy_static! {
Config::init_from_env().unwrap()
};
pub static ref FFMPEG_COMMAND: String = {
- let result = CONFIG.ffmpeg.clone().unwrap_or("youtube-dl".to_owned());
+ let result = CONFIG.ffmpeg.clone().unwrap_or("ffmpeg".to_owned());
log::debug!("got ffmpeg: {}", result);
result