
Recherche avancée
Médias (1)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
Autres articles (103)
-
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 (...) -
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (7558)
-
How to correlate MP4 excerpt to frame(s) of video ?
27 juillet 2017, par Dave M.I have an MP4 file, and a 16kb excerpt from the file. I would like to know what frame(s) the excerpt matches. I can find the offset of the excerpt, but I believe MP4 encoding is variable-length (so I can’t just say "this excerpt is from frame #(offset/framesize)") That also means that my excerpt might not be on a valid frame boundary, so I can’t just rename it to "excerpt.mp4" and play it.
What’s a good way to figure out what frames correspond to the excerpt ?
-
Tube site like thumbnails for videos- hover over and show rotating thumbnails from the movie
13 novembre 2012, par slycatA lot of adult sites (and mainstream tube sites) have thumbnails of videos, and when you hover over them they cycle through a few differnt thumbnails so you know what is in the video.
Does anyone know what the name for this is called, and if there is a good library for doing this (either something that captures the images (eg with ffmpeg) or some JS library for this ?
-
Bulk merge many .mp4s in one [closed]
14 août 2022, par Sam van ViegenI need some help with bulk merging a bunch of .mp4 files into one.


I tried to do this, which gave me a list of all the
.mp4
files :

(for %i in (*.mp4) do @echo file '%i') > mylist.txt



Then I tried this :


ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4



It made a convert but the video is kinda messed up. Its now 28 hours long and the video isn’t good.


What should I do ?