zhandb / airstream-media-player

Automatically exported from code.google.com/p/airstream-media-player
GNU General Public License v2.0
0 stars 0 forks source link

Scrubbing not working on french culture info #3

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Fixed it, just change this line of code int Publish_GUIThreadSafe.cs line 122:

quicktimePlayer.Movie.Time = (int)Convert.ToDouble(parameters[0]) * timescale;

TO ->

quicktimePlayer.Movie.Time = (int)double.Parse(parameters[0], 
CultureInfo.InvariantCulture.NumberFormat) * timescale;

And add "using System.Globalization;".

-Cactus

Original issue reported on code.google.com by pierrelu...@gmail.com on 6 May 2011 at 2:16