
Recherche avancée
Autres articles (50)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (5490)
-
PHP Ajax XMLHttpRequest popen live progress
21 février 2016, par John RI’m trying to output live : the ffmpeg progress
It works great when I execute the php file alone : many lines with text appearing one after an other...
••• But when it’s a XMLHttpRequest context, the output is 1 line empty
PHP working when not in AJAX situation :
ini_set("output_buffering", "0");
ob_implicit_flush(true);
$call_mp4 = ' __FFMPEG Command HERE__ ';
$proc = popen($call_mp4, 'r');
while (!feof($proc)) {
echo '['.date("i:s")."] ".fread($proc, 4096).'<br />';ob_flush();flush();
}Does someone know why in AJAX it’s blank and only 1 line ?
how can this be fixed ?Regards
-
Downloading earlier segments from a live m3u8 playlist
25 juillet 2016, par Zafer CesurI have an
.m3u8
URI from an online live-stream. As far as I know, live playlists use a sliding window instead of containing all the segments. My questions are,
1) Is it possible to find out what the length of the window is (time or frame-wise) ? My intention is to use the playlist I have to download a live-stream starting from an earlier time.
2) If yes, how do I get the earlier segments, i.e., how do I specify where I want to start downloading from ? I tried something like
ffmpeg -ss -00:00:10 -i "in.m3u8" out.mp4
, but it did not work.I do not have much experience in video-encoding or live-streaming, and I would appreciate any direction ! The file that I am dealing with is printed below.
#EXTM3U
#EXT-X-TWITCH-INFO:NODE="video-edge-913b2c.jfk03",MANIFEST-NODE="video-edge-913b2c.jfk03",SERVER-TIME="1469462316.46",USER-IP="...",SERVING-ID="...",CLUSTER="jfk03",ABS="false",BROADCAST-ID="22500458080",STREAM-TIME="17374.4599299",MANIFEST-CLUSTER="jfk03"
#EXT-X-MEDIA:TYPE=VIDEO,GROUP-ID="chunked",NAME="Source",AUTOSELECT=YES,DEFAULT=YES
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=3566000,RESOLUTION=1920x1080,CODECS="avc1.4D402A,mp4a.40.2",VIDEO="chunked"
http://video-edge-913b2c.jfk03.hls.ttvnw.net/hls-7e8a7c/imaqtpie_22500458080_490173831/chunked/index-live.m3u8?token=id=...,bid=...,exp=1469548716,node=video-edge-913b2c.jfk03,nname=video-edge-913b2c.jfk03,fmt=chunked&sig=...
#EXT-X-MEDIA:TYPE=VIDEO,GROUP-ID="high",NAME="High",AUTOSELECT=YES,DEFAULT=YES
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=1760000,RESOLUTION=1280x720,CODECS="avc1.66.31,mp4a.40.2",VIDEO="high"
http://video-edge-913b2c.jfk03.hls.ttvnw.net/hls-7e8a7c/imaqtpie_22500458080_490173831/high/index-live.m3u8?token=id=...,bid=...,exp=1469548716,node=video-edge-913b2c.jfk03,nname=video-edge-913b2c.jfk03,fmt=high&sig=...
... -
Capture video on iOS device and live stream it to a server (or another mobile)
13 février 2015, par theDuncsI want to be able to record footage using my iOS device and stream it directly to a server.
There’s quite a few articles on S.O. that talk about this, but I’m not sure any have answered the question very well.
Should I be using HTTP Live Streaming, or is this just for sending data to an iPhone ?
Should I be using AVCaptureSession to grab the video (a segment at a time ?), sending each segment to the server ?
Should I be using AVCaptureVideoDataOutput and ffmpeg for streaming ?I’m a little lost with all this, so any sample code or docs or links would be really appreciated.
Thanks for your help guys.
Duncan