This commit is contained in:
mykola2312 2024-03-16 05:53:08 +02:00
parent ea0d75b7eb
commit 4829b52979
2 changed files with 2 additions and 2 deletions

View file

@ -153,7 +153,7 @@ pub async fn download(url: &str) -> Result<String, DownloadError> {
af.format_id
);
let res = FFMpeg::join_audio_video(
let res = FFMpeg::join_video_audio(
video_path.as_str(),
audio_path.as_str(),
abr,

View file

@ -38,7 +38,7 @@ impl FFMpeg {
Ok(())
}
pub async fn join_audio_video(
pub async fn join_video_audio(
video_path: &str,
audio_path: &str,
abr: u16,