
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (53)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (5703)
-
Create MPEG DASH segments from h264 files
3 novembre 2014, par Matthew YoungBasically I have a bunch of h264 files from a camera feed....
So there is no audio. What I would like to do is make DASH segments out of these h264 files and do live streaming to a Media Source (like in Chrome). I don’t want to first concatenate the h264 into a giant h264 then copy it into a mp4 container and lastly make DASH manifests. Instead would love to find a way to turn the h264 directly into DASH segments (mpd files).
Ideas ?
-
ffmpeg : How to create cropped thumbnails ? [migrated]
27 juin 2013, par Georg LedermannFor creating a video thumbnail with
ffmpeg
I'm using this command :ffmpeg -itsoffset -4 -i video.mp4 -vframes 1 thumb.jpg
This gives me a thumbnail with the same size of the video (which has an unknown size, e.g. 960x540). But what I need is a square (cropped) thumbnail with a given size (e.g. 200x200). The result must not be resized, but cropped from the center, and the aspect ratio should not change.
How can this be accomplished ?
-
How to create slideshow from images with ffmpeg ?
7 novembre 2012, par Arsen ZahrayI want to create a slideshow from images, where each image would be displayed for some period of time (several seconds).
How do I do that ?
Currently I was trying to encode short clips with ffmpeg and then stitch those together with
mencoder
:foreach (var item in filePattern)
{
var otpt = item.Key + ".mpg";
Process.Start("ffmpeg",
string.Format("-y -r 25 -f image2 -vframes 75 -i {0} {1}", item.Value, otpt)//-loop 1
).WaitForExit();
}ffmpeg -y -r 25 -f image2 -vframes 75 -i input-pattern output
does create a file with 1 frame in it, whileffmpeg -y -loop 1 -r 25 -f image2 -vframes 75 -i input-pattern output
on windows never finishes (needs ctrl+c to stop) ; the second command worked on linux for me.I need to make this work primary on Windows. Which params should I use ?