search for: c291cmnlomhhy2ttzq

Displaying 2 results from an estimated 2 matches for "c291cmnlomhhy2ttzq".

2013 Jul 31
0
How to use http-put for JavaScript source client
...example. Using my example from http://icecast.org/#release_2.4-beta2 : cat foo.ogg | curl -u source:hackme -H "Content-type: application/ogg" -T - http://localhost:8000/mountname.ogg This is the plain text dump of the HTTP connection: PUT /mountname.ogg HTTP/1.1 Authorization: Basic c291cmNlOmhhY2ttZQ== User-Agent: curl/7.31.0 Host: localhost:8000 Accept: */* Transfer-Encoding: chunked Content-type: application/ogg Expect: 100-continue Then the server acknowledges and raw data follows. Note that there's still a 100-continue patch not landed, so we're not 100% compliant yet. Usually thin...
2013 Jul 23
5
How to use http-put for JavaScript source client
I'm following up on a thread started by Stephen a couple months ago about building a JavaScript source client using webrtc. The first step suggested was to figure out how to mux the audio and video. After I posted a feature request on the webrtc experiment js library, we seem to have a solution: https://github.com/muaz-khan/WebRTC-Experiment/issues/28#issuecomment-20791759 Based on the last