Skip to content

Commit

Permalink
Shared - Fix Passing FFmpeg Args
Browse files Browse the repository at this point in the history
  • Loading branch information
nlogozzo committed Oct 6, 2024
1 parent 0862b58 commit 989693b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libparabolic/src/controllers/mainwindowcontroller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
2 changes: 1 addition & 1 deletion libparabolic/src/models/downloadoptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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())
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<p>- Added the ability to specify arguments to pass to ffmpeg in converter settings</p>
<p>- Fixed an issue where the Add Download action was disabled incorrectly</p>
<p>- Fixed an issue where the app crashed when attempting to use aria2c</p>
<p>- Fixed an issue where the QT version of the app did not display subtitle and playlist item rows correctly</p>
<p>- Fixed an issue where the Qt version of the app did not display subtitle and playlist item rows correctly</p>
</description>
</release>
</releases>
Expand Down

0 comments on commit 989693b

Please sign in to comment.