
Recherche avancée
Médias (3)
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (62)
-
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 (8026)
-
IE9+ not playing portrait video in HTML5 video tag
12 avril 2017, par ptrnFor some reason I can’t get IE9/10 to play video that is taller than wide, when using HTML5 video tags.
Demo :
http://s.l6.no/demo/video+html5/The demo shows one video scaled down from 1280x720, which plays perfectly fine in all tested browsers, and one video scaled down from 720x1280 which plays for all browsers but IE9/10.
Tested and works for :
- Chrome 26, Windows 7 64-bit
- Chromium 24, Ubuntu 64-bit
- Firefox 14, Windows 7 64-bit
Tested and does not work for :
- Internet Explorer 9, Windows 7 64-bit
- Internet Explorer 10, Windows 7 64-bit
I’m using FFmpeg to code the videos to MP4(x264) and WebM(VP8), with the current command dummed down to this :
ffmpeg -i in.mp4 -vcodec libx264 -pix_fmt yuv420p -y -b:v 4000k out.mp4
The lack of profile settings would be my first point, but since the other video is playing just fine, I can’t see why it should matter.
Any ideas ?
Edit : soft rotating the video isn’t really an option, as the user is to be able to download the video to play offline. I could transcode an extra version just for IE, but come on, there’s gotta be another way, no ?
-
Generate frame images from video and compile them back to the video in-memory
24 septembre 2020, par gumkinsI have to remove some repeating frames from the beginning of a video file.


For that I'm generating frame images from the video


ffmpeg -i input.mp4 -qscale:v 2 frame_%04d.jpg


This command generates a set of files with index in name. Then I'm analyzing frames against some criteria programmaticaly, removing useless ones and compiling the rest back to the video file


ffmpeg -r 60 -start_number 0 -i "frame_%04d.jpg" -c:v libx264 -vf "fps=25,format=yuv420p" out.mp4


What I don't like in this schema that IO operations take part in the process. I would like to generate an array of buffers with binary data, then process it with Javascript and then pipe filtered ones back to ffmpeg without using the file system.


Does ffmpeg have such possibility ?


-
FFMpeg/other video library - How to segment a video file into a stream of playable segments ?
27 juin 2012, par Anders BranderudI want FFMpeg/other video library to create several segments out of an original video file ; and a meta data-file containing the name of the segments and other data required in order to play them as a stream.
The files should be created in such a way that the segments can be played as a stream without any noticable glitches in the overlap of the media files.I also want to know what command to use for a media player to take and interpret the meta data-file and to play the video segments in their right order.
I have managed to do this with GPAC.