Guest User

fix kdenlive clipstabilize trf output

a guest
Dec 17th, 2014
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 0.87 KB | None | 0 0
  1. --- /tmp/kdenlive-0.9.10/src/project/clipstabilize.cpp  2014-10-05 10:55:35.000000000 +0100
  2. +++ ./src/project/clipstabilize.cpp 2014-12-18 00:48:25.505063003 +0000
  3. @@ -78,7 +78,8 @@
  4.  
  5.                                 if (m_filtername=="vidstab"){
  6.                                 // Some default params have to be set:
  7. -                               m_fixedParams << "algo=1" << "relative=1";
  8. +                               QString filename = dest_url->url().path().append(".trf");
  9. +                               m_fixedParams << "algo=1" << "relative=1" << QString("filename=%1").arg(filename);
  10.                                 QStringList ls;
  11.                                 ls << "accuracy,type,int,value,8,min,1,max,10,tooltip,Accuracy of Shakiness detection";
  12.                                 ls << "shakiness,type,int,value,4,min,1,max,10,tooltip,How shaky is the Video";
Add Comment
Please, Sign In to add comment