Skip to content

Commit

Permalink
1.0.52.120
Browse files Browse the repository at this point in the history
  • Loading branch information
leomotors committed Aug 22, 2021
1 parent 2037a77 commit c2e8a0d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.16)
project(RTX-2090-TiFy VERSION 1.0.52.110)
project(RTX-2090-TiFy VERSION 1.0.52.120)
set(APP_VERSION "${CMAKE_PROJECT_VERSION}")
configure_file(config/AppProps.h.in ${CMAKE_CURRENT_BINARY_DIR}/gen/AppProps.h)

Expand Down
2 changes: 1 addition & 1 deletion inc/AppConstants.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
#define RICKROLL_URL "https://www.youtube.com/watch?v=dQw4w9WgXcQ"

#define RTX_MUSIC "./assets/RTX.mp3"
#define RTX_LEN 59
#define RTX_LEN 60
#define DEFAULT_FILE_EXPLORER "explorer.exe"
3 changes: 2 additions & 1 deletion src/Configurations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,9 @@ void Configurations::OnOutputListActivated(int selected)
std::string traceback = validateConfig(selected, ConfigDialog.GetValue().ToStdString());
if (!traceback.empty())
wxMessageBox(traceback, "Validation Failed: Value not set", wxOK | wxICON_ERROR);
else
std::cout << "Config #" << selected << " Success\n";

std::cout << "Config #" << selected << " Success\n";
updateOutputList();
}
else
Expand Down
4 changes: 2 additions & 2 deletions src/Video.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ void Video::linkAudio(std::string fileName, double videoLength)
subconcat += RTX_MUSIC;
}

std::string concatCMD = "ffmpeg -i ";
concatCMD += "\"concat:" + subconcat + "\" -acodec copy ./temp/RTXLONG.mp3";
std::string concatCMD = "ffmpeg -y -i ";
concatCMD += "\"concat:" + subconcat + "\" -c:a copy -codec copy ./temp/RTXLONG.mp3";

std::cout << "Executing: " << concatCMD << "\n";
std::system(concatCMD.c_str());
Expand Down

0 comments on commit c2e8a0d

Please sign in to comment.