
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (74)
-
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" (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (11419)
-
Revision 18101 : split build and checkout of ffmpeg
7 octobre 2011, par j — Logsplit build and checkout of ffmpeg
-
Using python and ffmpeg to split .mp4 video into chunks of few seconds
3 juin 2022, par PalmI would like to split videos into small chunks of two seconds while maintaining good quality and running fast.


I've tried various techniques on StackOverflow such as


- 

- Using Python script to cut long videos into chunks in FFMPEG
- Cut .mp4 in pieces Python
- python library for splitting video
- How do you split a list into evenly sized chunks ?
- ...












But the result does not satisfy me. Some are too slow, and some do not give the short-length chunk.


-
vp9 : use superframe split BSF
17 novembre 2017, par wm4vp9 : use superframe split BSF
webm usually has invisible superframes merged with normal frames.
(vpxenc muxes them in this form, which is evidence enough that this is
the standard webm packet format. It's rather unclear whether ffmpeg is
even allowed to remux them with split packets.)The vp9 decoder needs them to be in separate packets for multithreading
to work. Add the BSF to the decoder, so the conversion happens
automatically.This contains the important part of fa1749dd34c55fb9, which
was apparently skipped in commit d417e95af76. This restores Libav API
compatibility.