-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improved RTMP URL parsing #574
Conversation
Sorry for all the white space changes, I had a hard time trying to get a clean diff of the actual changes. I notice that when I clone the repo I end up with mixed line endings - maybe you know more about git than I, but I couldn't come up with the proper config to allow me to commit without changing all the whitespace. Any ideas? |
* upstream/master: 2.9.3 release updated version number removed use of $ and inArray allows use of "max-width:100%" Fixed bug on line 48, added type to source buttons Fixing parentheses syntax error in events demo Changed $ to mejs.$ to prevent conflicts with other libraries Changed $ to mejs.$ to prevent conflicts with other libraries Fix IE<=8 indexOf compatibility (cannot be used on an array) Conflicts: build/mediaelement-and-player.js build/mediaelement.js build/mediaelementplayer.js src/js/me-namespace.js src/js/mep-player.js
Hi, However, I am not able to get streaming of MP3 using RTMP to work in any case. Progressive download works fine with a tag like . . .
So this is progressive download from a IIS web server over port 80. I have an FMS application pointing to the same physical location on the server, yet the following audio tag fails to playback the mp3 . . .
In the case of the mediaelements flash player, the player loads and presents controls but pressing the play button results in nothing. The request never makes it to FMS. I have a tried URLS both with and without the"mp3:" marker and neither seem to work. I also have a separate web application with a custom embedded flash player that can successfully playback the mp3 at the above URL so I am confident that FMS is can receive and respond to the RTMP request. @Pansapien, you explicitly mention mp3 above. Does this mean you have been able to playback an mp3 stream over RTMP using your modified version of the media elements flash player? If so can you provide an example of the audio tag you are using? Anything special I need to as far as player options to get this to work? Thanks, Chad. |
Improved RTMP URL parsing
Improved RTMP URL parsing
Improved RTMP URL parsing
Improved RTMP URL parsing
Hi John,
Thanks for all your work in putting mediaelement together, it's been a pleasure to work with.
One thing I do need though is to be able to parse RTMP URLs with mp4: as the separator between the streamer and the stream.
This pull request adds parsing of RTMP URLs with mp3:, mp4: and flv: separators and when none of these are present, it uses the previous behaviour.
Thanks again,
Marc