Streaming .FLV files from Media Server 4.5 using PHDS
I would like to stream .FLV files from adobe media server 4.5.
Requirements state that the files should be considered secret, so I decided that PHDS sounds like the
right thing.
I was able to stream an .FLV by placing it in the webroot/vod folder using an url like http://myserver/vod/test.flv
However the developer manual states that a way to enable PHDS at the server level is to uncomment the two lines like this.
<IfModule jithttp_module>
<Location /hds-vod>
HttpStreamingJITPEnabled true
HttpStreamingContentPath "../webroot/vod"
JitFmsDirPath ".."
Options -Indexes FollowSymLinks
# Uncomment the following directives to enable encryption
# for this location.
EncryptionScope server
ProtectionScheme phds
</Location>
</IfModule>
However I am not able to stream my FLV using url like http://myserver/hds-vod/test.flv
Question : Am I supposed to use the hds-vod in the URL or is /vod doing the same ?
Is the approach correct, or should the files go into an applications\myapplication\media folder ?
I will need some server side actionscript to validate access to the stream, is that possible without a dedicated application ?
