
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 (101)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (12393)
-
FFmpeg gives me errors when YTDL says Downloading MPD manifest
6 août 2020, par jas_123For some reason FFmpeg cant play the video I want. It gives me these errors, "HTTP 404 not Found" "Failed to open an initialization section in playlist 0" "Error when loading first fragment, playlist 0". Im making a Discord bot with youtube-dl. My FFmpeg options are
FFMPEG_OPTIONS = {'before_options': '-reconnect 1 -reconnect_streamed 1 -reconnect_delay_max 5', 'options': '-vn'}


Is there anything I need to change in my options ? Also, this only happens when youtube-dl says
Downloading MPD manifest
. Everything else works until that shows up.

-
HLS - how to create a m3u8 manifest if I have ts files (Ubuntu) ?
23 août 2013, par Richard KnopSo I have found out I can create ts segments of a movie with this ffmpeg command :
ffmpeg -i foo.mp4 -codec copy -vbsf h264_mp4toannexb -map 0 -f segment -segment_list out.list -segment_time 10 out%03d.ts
But now I don't know how to create a m3u8 manifest file from ts files. Is there some open source library or command in Ubuntu that can do this for me ?
If not, how difficult is it to create the m3u8 file in Python or some other language ?
-
smoothstreamingenc : Write to a temp file while updating the manifest
17 août 2013, par Martin Storsjösmoothstreamingenc : Write to a temp file while updating the manifest
If a client tries to read the file while it’s being updated, the client
would get an incomplete manifest. Instead write to a separate temp file
and atomically rename it to replace the previous one.Signed-off-by : Martin Storsjö <martin@martin.st>