├── .gitattributes ├── .gitignore ├── .idea └── flexCompiler.xml ├── HLSDynamicPlugin ├── .actionScriptProperties ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.core.resources.prefs ├── build.bat ├── build.xml └── src │ └── HLSDynamicPlugin.as ├── HLSPlugin ├── .actionScriptProperties ├── .flexLibProperties ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.core.resources.prefs ├── LICENSE-as3crypto.md ├── build.bat ├── build.xml └── src │ ├── com │ └── hurlant │ │ ├── crypto │ │ ├── prng │ │ │ ├── ARC4.as │ │ │ ├── IPRNG.as │ │ │ └── Random.as │ │ └── symmetric │ │ │ ├── AESKey.as │ │ │ ├── CBCMode.as │ │ │ ├── ICipher.as │ │ │ ├── IMode.as │ │ │ ├── IPad.as │ │ │ ├── IStreamCipher.as │ │ │ ├── ISymmetricKey.as │ │ │ ├── IVMode.as │ │ │ ├── NullPad.as │ │ │ └── PKCS5.as │ │ └── util │ │ ├── Hex.as │ │ └── Memory.as │ └── org │ └── denivip │ └── osmf │ ├── elements │ ├── HLSVideoElement.as │ ├── M3U8Element.as │ ├── M3U8Loader.as │ └── m3u8Classes │ │ └── M3U8PlaylistParser.as │ ├── events │ ├── AlternativeVideoEvent.as │ └── HTTPHLSStreamingEvent.as │ ├── net │ ├── HLSDynamicStreamingItem.as │ ├── HLSDynamicStreamingResource.as │ ├── HLSStreamingResource.as │ ├── IAlternativeVideoResource.as │ └── httpstreaming │ │ ├── dvr │ │ ├── HTTPHLSStreamingDVRCastDVRTrait.as │ │ └── HTTPHLSStreamingDVRCastTimeTrait.as │ │ └── hls │ │ ├── HLSStreamInfo.as │ │ ├── HTTPHLSNetStream.as │ │ ├── HTTPHLSStreamMixer.as │ │ ├── HTTPHLSStreamSource.as │ │ ├── HTTPStreamingH264NALU.as │ │ ├── HTTPStreamingHLSFactory.as │ │ ├── HTTPStreamingHLSIndexHandler.as │ │ ├── HTTPStreamingHLSIndexInfo.as │ │ ├── HTTPStreamingHLSNetLoader.as │ │ ├── HTTPStreamingM3U8IndexItem.as │ │ ├── HTTPStreamingM3U8IndexKey.as │ │ ├── HTTPStreamingM3U8IndexRateItem.as │ │ ├── HTTPStreamingMP2PESAudio.as │ │ ├── HTTPStreamingMP2PESBase.as │ │ ├── HTTPStreamingMP2PESVideo.as │ │ ├── HTTPStreamingMP2TSFileHandler.as │ │ ├── HTTPStreamingMp3Audio2ToPESAudio.as │ │ └── HTTPStreamingState.as │ ├── plugins │ ├── HLSPluginInfo.as │ └── HLSSettings.as │ ├── traits │ └── AlternativeVideoTrait.as │ └── utility │ ├── Padding.as │ ├── Url.as │ └── decrypt │ └── AES.as ├── HLSTestPlayer ├── .actionScriptProperties ├── .flexProperties ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.core.resources.prefs ├── build.bat ├── build.xml └── src │ ├── HLSTestPlayer.mxml │ ├── SimpleLogger.as │ └── SimpleLoggerFactory.as ├── LICENSE ├── README.md ├── StrobeMediaPlayback ├── HLSDynamicPlugin.swf ├── StrobeMediaPlayback.html ├── StrobeMediaPlayback.swf ├── images │ ├── adobe-lq.png │ ├── osmf_horizontal_red.png │ └── poster.png └── lib │ ├── ParsedQueryString.js │ ├── jquery-1.4.2.min.js │ └── swfobject.js ├── docs ├── HOWTO_BUILD └── HOWTO_USING ├── properties.bat ├── release.bat └── release ├── HLSDynamicPlugin.swf ├── HLSPlugin.swc └── HLSTestPlayer.swf /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/flexCompiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/.idea/flexCompiler.xml -------------------------------------------------------------------------------- /HLSDynamicPlugin/.actionScriptProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSDynamicPlugin/.actionScriptProperties -------------------------------------------------------------------------------- /HLSDynamicPlugin/.gitignore: -------------------------------------------------------------------------------- 1 | /bin-release 2 | -------------------------------------------------------------------------------- /HLSDynamicPlugin/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSDynamicPlugin/.project -------------------------------------------------------------------------------- /HLSDynamicPlugin/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Thu Apr 04 12:35:31 MSD 2013 2 | eclipse.preferences.version=1 3 | encoding/=utf-8 4 | -------------------------------------------------------------------------------- /HLSDynamicPlugin/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSDynamicPlugin/build.bat -------------------------------------------------------------------------------- /HLSDynamicPlugin/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSDynamicPlugin/build.xml -------------------------------------------------------------------------------- /HLSDynamicPlugin/src/HLSDynamicPlugin.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSDynamicPlugin/src/HLSDynamicPlugin.as -------------------------------------------------------------------------------- /HLSPlugin/.actionScriptProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/.actionScriptProperties -------------------------------------------------------------------------------- /HLSPlugin/.flexLibProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/.flexLibProperties -------------------------------------------------------------------------------- /HLSPlugin/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | -------------------------------------------------------------------------------- /HLSPlugin/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/.project -------------------------------------------------------------------------------- /HLSPlugin/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Thu Mar 21 14:35:51 MSK 2013 2 | eclipse.preferences.version=1 3 | encoding/=utf-8 4 | -------------------------------------------------------------------------------- /HLSPlugin/LICENSE-as3crypto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/LICENSE-as3crypto.md -------------------------------------------------------------------------------- /HLSPlugin/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/build.bat -------------------------------------------------------------------------------- /HLSPlugin/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/build.xml -------------------------------------------------------------------------------- /HLSPlugin/src/com/hurlant/crypto/prng/ARC4.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/com/hurlant/crypto/prng/ARC4.as -------------------------------------------------------------------------------- /HLSPlugin/src/com/hurlant/crypto/prng/IPRNG.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/com/hurlant/crypto/prng/IPRNG.as -------------------------------------------------------------------------------- /HLSPlugin/src/com/hurlant/crypto/prng/Random.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/com/hurlant/crypto/prng/Random.as -------------------------------------------------------------------------------- /HLSPlugin/src/com/hurlant/crypto/symmetric/AESKey.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/com/hurlant/crypto/symmetric/AESKey.as -------------------------------------------------------------------------------- /HLSPlugin/src/com/hurlant/crypto/symmetric/CBCMode.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/com/hurlant/crypto/symmetric/CBCMode.as -------------------------------------------------------------------------------- /HLSPlugin/src/com/hurlant/crypto/symmetric/ICipher.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/com/hurlant/crypto/symmetric/ICipher.as -------------------------------------------------------------------------------- /HLSPlugin/src/com/hurlant/crypto/symmetric/IMode.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/com/hurlant/crypto/symmetric/IMode.as -------------------------------------------------------------------------------- /HLSPlugin/src/com/hurlant/crypto/symmetric/IPad.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/com/hurlant/crypto/symmetric/IPad.as -------------------------------------------------------------------------------- /HLSPlugin/src/com/hurlant/crypto/symmetric/IStreamCipher.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/com/hurlant/crypto/symmetric/IStreamCipher.as -------------------------------------------------------------------------------- /HLSPlugin/src/com/hurlant/crypto/symmetric/ISymmetricKey.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/com/hurlant/crypto/symmetric/ISymmetricKey.as -------------------------------------------------------------------------------- /HLSPlugin/src/com/hurlant/crypto/symmetric/IVMode.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/com/hurlant/crypto/symmetric/IVMode.as -------------------------------------------------------------------------------- /HLSPlugin/src/com/hurlant/crypto/symmetric/NullPad.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/com/hurlant/crypto/symmetric/NullPad.as -------------------------------------------------------------------------------- /HLSPlugin/src/com/hurlant/crypto/symmetric/PKCS5.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/com/hurlant/crypto/symmetric/PKCS5.as -------------------------------------------------------------------------------- /HLSPlugin/src/com/hurlant/util/Hex.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/com/hurlant/util/Hex.as -------------------------------------------------------------------------------- /HLSPlugin/src/com/hurlant/util/Memory.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/com/hurlant/util/Memory.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/elements/HLSVideoElement.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/elements/HLSVideoElement.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/elements/M3U8Element.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/elements/M3U8Element.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/elements/M3U8Loader.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/elements/M3U8Loader.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/elements/m3u8Classes/M3U8PlaylistParser.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/elements/m3u8Classes/M3U8PlaylistParser.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/events/AlternativeVideoEvent.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/events/AlternativeVideoEvent.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/events/HTTPHLSStreamingEvent.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/events/HTTPHLSStreamingEvent.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/HLSDynamicStreamingItem.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/HLSDynamicStreamingItem.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/HLSDynamicStreamingResource.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/HLSDynamicStreamingResource.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/HLSStreamingResource.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/HLSStreamingResource.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/IAlternativeVideoResource.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/IAlternativeVideoResource.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/httpstreaming/dvr/HTTPHLSStreamingDVRCastDVRTrait.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/httpstreaming/dvr/HTTPHLSStreamingDVRCastDVRTrait.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/httpstreaming/dvr/HTTPHLSStreamingDVRCastTimeTrait.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/httpstreaming/dvr/HTTPHLSStreamingDVRCastTimeTrait.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HLSStreamInfo.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HLSStreamInfo.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPHLSNetStream.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPHLSNetStream.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPHLSStreamMixer.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPHLSStreamMixer.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPHLSStreamSource.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPHLSStreamSource.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingH264NALU.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingH264NALU.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingHLSFactory.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingHLSFactory.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingHLSIndexHandler.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingHLSIndexHandler.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingHLSIndexInfo.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingHLSIndexInfo.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingHLSNetLoader.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingHLSNetLoader.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingM3U8IndexItem.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingM3U8IndexItem.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingM3U8IndexKey.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingM3U8IndexKey.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingM3U8IndexRateItem.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingM3U8IndexRateItem.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingMP2PESAudio.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingMP2PESAudio.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingMP2PESBase.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingMP2PESBase.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingMP2PESVideo.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingMP2PESVideo.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingMP2TSFileHandler.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingMP2TSFileHandler.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingMp3Audio2ToPESAudio.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingMp3Audio2ToPESAudio.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingState.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/net/httpstreaming/hls/HTTPStreamingState.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/plugins/HLSPluginInfo.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/plugins/HLSPluginInfo.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/plugins/HLSSettings.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/plugins/HLSSettings.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/traits/AlternativeVideoTrait.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/traits/AlternativeVideoTrait.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/utility/Padding.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/utility/Padding.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/utility/Url.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/utility/Url.as -------------------------------------------------------------------------------- /HLSPlugin/src/org/denivip/osmf/utility/decrypt/AES.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSPlugin/src/org/denivip/osmf/utility/decrypt/AES.as -------------------------------------------------------------------------------- /HLSTestPlayer/.actionScriptProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSTestPlayer/.actionScriptProperties -------------------------------------------------------------------------------- /HLSTestPlayer/.flexProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSTestPlayer/.flexProperties -------------------------------------------------------------------------------- /HLSTestPlayer/.gitignore: -------------------------------------------------------------------------------- 1 | /bin-release 2 | -------------------------------------------------------------------------------- /HLSTestPlayer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSTestPlayer/.project -------------------------------------------------------------------------------- /HLSTestPlayer/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Mon Oct 21 08:26:19 MSD 2013 2 | eclipse.preferences.version=1 3 | encoding/=utf-8 4 | -------------------------------------------------------------------------------- /HLSTestPlayer/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSTestPlayer/build.bat -------------------------------------------------------------------------------- /HLSTestPlayer/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSTestPlayer/build.xml -------------------------------------------------------------------------------- /HLSTestPlayer/src/HLSTestPlayer.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSTestPlayer/src/HLSTestPlayer.mxml -------------------------------------------------------------------------------- /HLSTestPlayer/src/SimpleLogger.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSTestPlayer/src/SimpleLogger.as -------------------------------------------------------------------------------- /HLSTestPlayer/src/SimpleLoggerFactory.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/HLSTestPlayer/src/SimpleLoggerFactory.as -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/README.md -------------------------------------------------------------------------------- /StrobeMediaPlayback/HLSDynamicPlugin.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/StrobeMediaPlayback/HLSDynamicPlugin.swf -------------------------------------------------------------------------------- /StrobeMediaPlayback/StrobeMediaPlayback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/StrobeMediaPlayback/StrobeMediaPlayback.html -------------------------------------------------------------------------------- /StrobeMediaPlayback/StrobeMediaPlayback.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/StrobeMediaPlayback/StrobeMediaPlayback.swf -------------------------------------------------------------------------------- /StrobeMediaPlayback/images/adobe-lq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/StrobeMediaPlayback/images/adobe-lq.png -------------------------------------------------------------------------------- /StrobeMediaPlayback/images/osmf_horizontal_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/StrobeMediaPlayback/images/osmf_horizontal_red.png -------------------------------------------------------------------------------- /StrobeMediaPlayback/images/poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/StrobeMediaPlayback/images/poster.png -------------------------------------------------------------------------------- /StrobeMediaPlayback/lib/ParsedQueryString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/StrobeMediaPlayback/lib/ParsedQueryString.js -------------------------------------------------------------------------------- /StrobeMediaPlayback/lib/jquery-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/StrobeMediaPlayback/lib/jquery-1.4.2.min.js -------------------------------------------------------------------------------- /StrobeMediaPlayback/lib/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/StrobeMediaPlayback/lib/swfobject.js -------------------------------------------------------------------------------- /docs/HOWTO_BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/docs/HOWTO_BUILD -------------------------------------------------------------------------------- /docs/HOWTO_USING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/docs/HOWTO_USING -------------------------------------------------------------------------------- /properties.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/properties.bat -------------------------------------------------------------------------------- /release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/release.bat -------------------------------------------------------------------------------- /release/HLSDynamicPlugin.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/release/HLSDynamicPlugin.swf -------------------------------------------------------------------------------- /release/HLSPlugin.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/release/HLSPlugin.swc -------------------------------------------------------------------------------- /release/HLSTestPlayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/osmf-hls-plugin/HEAD/release/HLSTestPlayer.swf --------------------------------------------------------------------------------