supernginx / flowplayer-plugins

Automatically exported from code.google.com/p/flowplayer-plugins
0 stars 0 forks source link

ipad: decoding of ipadUrl too clever? #41

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Similarly to http://code.google.com/p/flowplayer-core/issues/detail?id=496 
there's an issue with amazon signed urls.

Currently one has to do the following:

clip: {
  url: 'http://londonshortfilms.s3.amazonaws.com/SpartacusCatStream.mp4?Signature%3D8bmiDMLcUt3acjOxKpk9aMWEObU%253D%26Expires%3D1341488661%26AWSAccessKeyId%3DAKIAJ4KDWCQCVW5FCDKQ',
  ipadUrl: 'http://londonshortfilms.s3.amazonaws.com/SpartacusCatStream.mp4?Signature%3D8bmiDMLcUt3acjOxKpk9aMWEObU%253D%26Expires%3D1341488661%26AWSAccessKeyId%3DAKIAJ4KDWCQCVW5FCDKQ'
}

i.e. give exactly the same value to ipadUrl as for url because ipadUrl is 
treated differently than url:

if ( extendedClip.ipadUrl )
  url = decodeURIComponent(extendedClip.ipadUrl);

Investigate as with Flash whether this is too clever and the attempt to 
automate it is producing very counterintuitive results.

Original issue reported on code.google.com by blacktrashproduct on 5 Jul 2012 at 12:46

GoogleCodeExporter commented 8 years ago
See also: http://flowplayer.org/forum/support.html?id=101598

Original comment by blacktrashproduct on 5 Jul 2012 at 12:46