Link to home
Start Free TrialLog in
Avatar of Sumanbabu
Sumanbabu

asked on

i want to embed a player in html/php page

I want to embed either a JMF/VLC player in a html/php page which is possible to record the RTP streaming input. suggest me how to proceed?
Avatar of Bernard Savonet
Bernard Savonet
Flag of France image

Not sure what you are asking for; the player? the code?

Assuming it is code:
- You need to keep in mind that the php script will run on the server and generate some html/ javascript code which will be sent to the client where it will display and run any javascript.
- Then you "just" need php to generate the html code for your player, usually by preparing a string that you then echo.
If the string is long, you might want to use the "heredoc" syntax see http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc

Remember that strings between double quotes or heredocs are "run", ie $variables are replaced by their values
Avatar of Sumanbabu
Sumanbabu

ASKER

I am looking for the code samples to embed the JMF ( media player ) in the html page, which should be able to capture the streaming and save it on the local disk.

ASKER CERTIFIED SOLUTION
Avatar of cyberhitesh
cyberhitesh
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I know I have to use HTML tags, even I could able to play the video from a file but not RTP streaming