
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (21)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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 (4249)
-
M3U8/MPEG-TS DOWNLAOD ? [closed]
25 octobre 2022, par Byboomeranghttps://dizipal395.com/bolum/the-walking-dead-turkce-dublaj-1x1


How to download streams from this site ? There is no m3u8 connection and I also tried with ffmpeg, yt-dlp, the stream detector, but no results. I wanted to try it from the network tab of chrome's developer options, but they blocked those options as well. Please help...


-
avformat/hls : add http_multiple option
13 décembre 2017, par Aman Guptaavformat/hls : add http_multiple option
This improves network throughput of the hls demuxer by avoiding
the latency introduced by downloading segments one at a time.The problem is particularly noticable over high-latency network
connections : for instance, if RTT is 250ms, there will a 250ms idle
period between when one segment response is read and the next one
starts.The obvious solution to this is to use HTTP pipelining, where a
second request can be sent (on the persistent http/1.1 connection)
before the first response is fully read. Unfortunately the way the
http protocol is implemented in avformat makes implementing pipleining
very complex.Instead, this commit simulates pipelining using two separate persistent
http connections. This has the advantage of working independently of
the http_persistent option, and can be used with http/1.0 servers as
well. The pair of connections is swapped every time a new segment starts
downloading, and a request for the next segment is sent on the secondary
connection right away. This means the second response will be ready and
waiting by the time the current response is fully read.Signed-off-by : Aman Gupta <aman@tmm1.net>
Signed-off-by : Anssi Hannula <anssi.hannula@iki.fi> -
What is the best solution of motion interpolation by CPU ?
31 mars 2022, par Stacker DragonI've been using FFmpeg's "minterpolate" filter to implement motion interpolation to get a higher frame rate for a while. However, because "minterpolate" doesn't support hardware acceleration and multithread, it is very slow to finish that process, particularly on devices that only have CPU, which make the situation worse because I cannot use neural network such as DAIN(by SJTU).



Thus, I would like to ask for some alternatives for "minterpolate" filter, which is supposed to be faster and has a decent quality.



I knew SVP can do, but it is not open-sourced and therefore it cannot be integrated to other software.