Skip to content
This repository has been archived by the owner on Feb 2, 2019. It is now read-only.

Commit

Permalink
Title based scale fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CherryPerry committed Jul 11, 2015
1 parent 75a7d03 commit 97e2ea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VpxEncode/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ static void GeneratePreview(string filePath)

// same scale
string scale = "";
Regex regex = new Regex(@".*Video:.*(\s\d+x\d+).*");
Regex regex = new Regex(@".*Video:.*\,\s(\d+x\d+).*");
Match match = regex.Match(new Executer().Execute('"' + filePath + '"'));
if (match.Success)
{
Expand Down

0 comments on commit 97e2ea1

Please sign in to comment.