Recent activity
Subscribe to this feed
giwrgws replied on October 31, 2009 19:20 to the question "Dynamic Player mp3 list, with no direct links" in Schillmania!:
i found out how to do it. so i publish the code for the mp3 http headers passing for the asp file, in case someone needs it!
thank you again for the great player!!
the code:
----------------------------------------------------------------
Dim strFile
strFile = "<%=physical path to the file%>"
Response.Buffer = True
Response.Clear
Response.ContentType = "audio/mpeg"
Set objStream = Server.CreateObject("ADODB.Stream")
objStream.Open
objStream.Type = 1
objStream.LoadFromFile strFile
Response.BinaryWrite objStream.Read
objStream.Close
Set objStream = Nothing
Response.End
----------------------------------------------------------------
%>
giwrgws replied on October 30, 2009 23:28 to the question "Dynamic Player mp3 list, with no direct links" in Schillmania!:
giwrgws asked a question in Schillmania! on October 30, 2009 10:06:
Dynamic Player mp3 list, with no direct linksHi,
this is a great player indeed.
I have a question. I need to implement a player tha handles multiple mp3s (like a playlist), but gets the actual mp3 every time though asp script.
So, there will be no direct links on mp3s, on source code.
how can this be implemented with SM2 ?
(thanx in advance)
Loading Profile...
