diff --git a/mixer/src/mixer.cpp b/mixer/src/mixer.cpp index 0a6ed6f..2ebd52f 100644 --- a/mixer/src/mixer.cpp +++ b/mixer/src/mixer.cpp @@ -21,9 +21,6 @@ Mixer::~Mixer() { void Mixer::setPathOfFiles() { this->pathTempFiles.append("/").append(this->userID); this->pathMixedVideo.append("/").append(this->userID).append(".mp4"); - - cout << "PATH TEMP FILES: " << this->pathTempFiles << endl; - cout << "PATH MIXED VIDEOS: " << this->pathMixedVideo << endl; } /* O valor da largura e altura está na unidade de Pixels. @@ -38,8 +35,6 @@ void Mixer::setSVSize() { string tempTextFile = this->pathTempFiles; tempTextFile.append("/").append("tamanho.txt"); - cout << "TEMPTXT: " << tempTextFile << endl; - string ffprobeSentence = "ffprobe -show_streams "+this->mainVideo+" 2> /dev/null | grep \"height=\" | cut -d'=' -f2 > "+tempTextFile; system(ffprobeSentence.c_str()); @@ -140,7 +135,5 @@ void Mixer::mixVideos() { "scale="+ this->widthStr +":"+this->heigthStr+", setpts=PTS-STARTPTS, [movie] overlay"+this->transparency+"="+this->positionStr+ " [out]\" -qscale 0 -strict experimental -vcodec libx264 -preset fast -r 30 -threads "+NUMTHREADS+" "+this->pathMixedVideo; - cout << "FFMPEG: " << ffmpegSentence << endl; - system(ffmpegSentence.c_str()); } \ No newline at end of file -- libgit2 0.21.2