You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
Merge branch 'develop' into opencv
This commit is contained in:
@@ -30,6 +30,9 @@
|
||||
|
||||
#include "../include/Frame.h"
|
||||
|
||||
#include <thread> // for std::this_thread::sleep_for
|
||||
#include <chrono> // for std::chrono::milliseconds
|
||||
|
||||
using namespace std;
|
||||
using namespace openshot;
|
||||
|
||||
@@ -1079,7 +1082,7 @@ void Frame::Play()
|
||||
while (transport1.isPlaying())
|
||||
{
|
||||
cout << "playing" << endl;
|
||||
usleep(1000000);
|
||||
std::this_thread::sleep_for(std::chrono::seconds(1));
|
||||
}
|
||||
|
||||
cout << "DONE!!!" << endl;
|
||||
|
||||
Reference in New Issue
Block a user