Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dajuric committed Jan 11, 2016
1 parent eaaa842 commit 6f41386
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -43,7 +43,7 @@ reader.Open();

reader.SaveFrames(outputDir, "{0}.jpg", (percentage) =>
{
Console.Write("\r Extracting video: {0} %", percentage * 100);
Console.Write("\r Extracting video: {0} %", percentage * 100);
});

reader.Close();
Expand All @@ -60,11 +60,11 @@ reader.Close();
Bgr<byte>[,] frame = null;
do
{
reader.ReadTo(ref frame);
if (frame == null)
break;
reader.ReadTo(ref frame);
if (frame == null)
break;

frame.Show(scaleForm: true); //show the frame (UI package)
frame.Show(scaleForm: true); //show the frame (UI package)
}
while (!(Console.KeyAvailable && Console.ReadKey(true).Key == ConsoleKey.Escape));

Expand Down

0 comments on commit 6f41386

Please sign in to comment.