~alexharrington/xibo/pyclient-143

« back to all changes in this revision

Viewing changes to client/dotNET/Video.cs

  • Committer: Alex Harrington
  • Date: 2013-02-19 19:30:54 UTC
  • mfrom: (267.1.14 client-142)
  • Revision ID: alex@longhill.org.uk-20130219193054-u366iq6eb7rldln3
[dotnetclient] Merged in 1.4.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
        public Video(RegionOptions options)
46
46
            : base(options.width, options.height, options.top, options.left)
47
47
        {
48
 
            _filePath = Uri.UnescapeDataString(options.uri);
 
48
            _filePath = Uri.UnescapeDataString(options.uri).Replace('+',' ');
49
49
            _duration = options.duration;
50
50
 
51
51
            _videoPlayer = new VideoPlayer();