diff --git a/libparabolic/src/controllers/mainwindowcontroller.cpp b/libparabolic/src/controllers/mainwindowcontroller.cpp index 3eeacf358..d695e2e95 100644 --- a/libparabolic/src/controllers/mainwindowcontroller.cpp +++ b/libparabolic/src/controllers/mainwindowcontroller.cpp @@ -41,7 +41,7 @@ namespace Nickvision::TubeConverter::Shared::Controllers m_appInfo.setVersion({ "2024.10.1-next" }); m_appInfo.setShortName(_("Parabolic")); m_appInfo.setDescription(_("Download web video and audio")); - m_appInfo.setChangelog("- Added the ability to specify arguments to pass to ffmpeg in converter settings\n- Fixed an issue where the Add Download action was disabled incorrectly\n- Fixed an issue where the app crashed when attempting to use aria2c\n- Fixed an issue where the QT version of the app did not display subtitle and playlist item rows correctly"); + m_appInfo.setChangelog("- Added the ability to specify arguments to pass to ffmpeg in converter settings\n- Fixed an issue where the Add Download action was disabled incorrectly\n- Fixed an issue where the app crashed when attempting to use aria2c\n- Fixed an issue where the Qt version of the app did not display subtitle and playlist item rows correctly"); m_appInfo.setSourceRepo("https://github.com/NickvisionApps/Parabolic"); m_appInfo.setIssueTracker("https://github.com/NickvisionApps/Parabolic/issues/new"); m_appInfo.setSupportUrl("https://github.com/NickvisionApps/Parabolic/discussions"); diff --git a/libparabolic/src/models/downloadoptions.cpp b/libparabolic/src/models/downloadoptions.cpp index 9fe507626..9ee593f40 100644 --- a/libparabolic/src/models/downloadoptions.cpp +++ b/libparabolic/src/models/downloadoptions.cpp @@ -275,7 +275,7 @@ namespace Nickvision::TubeConverter::Shared::Models if(!downloaderOptions.getFFmpegArgs().empty()) { arguments.push_back("--postprocessor-args"); - arguments.push_back("FFmpeg:" + downloaderOptions.getFFmpegArgs()); + arguments.push_back("ffmpeg_i1:" + downloaderOptions.getFFmpegArgs()); } if(m_fileType.isAudio()) { diff --git a/resources/linux/org.nickvision.tubeconverter.metainfo.xml.in b/resources/linux/org.nickvision.tubeconverter.metainfo.xml.in index b39336a0f..00288c10a 100644 --- a/resources/linux/org.nickvision.tubeconverter.metainfo.xml.in +++ b/resources/linux/org.nickvision.tubeconverter.metainfo.xml.in @@ -41,7 +41,7 @@
- Added the ability to specify arguments to pass to ffmpeg in converter settings
- Fixed an issue where the Add Download action was disabled incorrectly
- Fixed an issue where the app crashed when attempting to use aria2c
-- Fixed an issue where the QT version of the app did not display subtitle and playlist item rows correctly
+- Fixed an issue where the Qt version of the app did not display subtitle and playlist item rows correctly