
Recherche avancée
Autres articles (95)
-
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (8553)
-
Any good library of ffmpeg in python to encode mp4/mp3 files into HLS/m3u8
28 juin 2017, par mrlonelyI want to build a system to encode mp4/mp3 files and convent it into m3u8 links. So that it can be played smoothly on mobile app.
-
How to output fragmented mp4 with ffmpeg ?
4 mars, par S Bffmpeg -i infile.avi out.mp4
outputs non-fragmented MP4.


How do I obtain fragmented mp4 ?



Update
A fragmented mp4 file is internally divided into several back-to-back chunks or MPEG-4 movie fragments. Each chunk has its own moof atom - so there are several moof atoms interleaved in the file instead of a single moov at the end as in the case of an unfragmented mp4. This makes it easier to stream over slow networks where buffering is involved



There are several tools like mp4box that convert a normal mp4 to a fragmented one. Unfortunately we cannot use something like this



ffmpeg <options to="to" output="output" mp4="mp4"> | mp4box
</options>



since ffmpeg does not produce seekable output while producing mp4 containers.


-
How to output fragmented mp4 with ffmpeg ?
12 octobre 2016, par S Bffmpeg -i infile.avi out.mp4
outputs non-fragmented MP4.How do I obtain fragmented mp4 ?
Update
A fragmented mp4 file is internally divided into several back-to-back chunks or MPEG-4 movie fragments. Each chunk has its own moof atom - so there are several moof atoms interleaved in the file instead of a single moov at the end as in the case of an unfragmented mp4. This makes it easier to stream over slow networks where buffering is involvedThere are several tools like mp4box that convert a normal mp4 to a fragmented one. Unfortunately we cannot use something like this
ffmpeg <options to="to" output="output" mp4="mp4"> | mp4box
</options>since ffmpeg does not produce seekable output while producing mp4 containers.