You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
Completed the ChunkReader, new exceptions for ChunkNotFound, and correctly locates and uses the chunk readers to get the requested frame.
This commit is contained in:
@@ -27,8 +27,13 @@ int main(int argc, char* argv[])
|
||||
|
||||
// Create a chunkreader
|
||||
cout << "Start Chunk Reader" << endl;
|
||||
ChunkReader cr1("/home/jonathan/apps/chunks/chunk1/");
|
||||
ChunkReader cr1("/home/jonathan/apps/chunks/chunk1/", FINAL);
|
||||
cr1.DisplayInfo();
|
||||
cr1.Open();
|
||||
//for (int z1 = 70; z1 < 85; z1++)
|
||||
// cr1.GetFrame(z1)->Display();
|
||||
cr1.GetFrame(300)->Display();
|
||||
|
||||
cout << "End Chunk Reader" << endl;
|
||||
|
||||
// Qt Test Code
|
||||
|
||||
Reference in New Issue
Block a user