
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (87)
-
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 (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (7648)
-
AAC encoder : make pe.min a local minimum
29 novembre 2015, par Claudio FreireAAC encoder : make pe.min a local minimum
As noted in a comment, pe.min in the reference encoder
is centered around current pe. The bit reservoir algo
needs pe.min to be a local minimum, because it can only
account for local PE variations. If it’s set to a global
minimum as was being done, bit reservoir logic doesn’t
work as efficiently.This patch tries to forget old minimums and converge to
a local minimum without losing the stability of the
previous solution. Listening tests until now suggest this
solves numerous RC issues. -
arm : Add an option for making sure NEON registers aren’t clobbered
20 décembre 2013, par Martin Storsjö -
Making a animating image using a video [closed]
29 juillet 2014, par user3508453I want to create an animating image using a video.
I have a.mp4
video of length60s
.
Now, I want to capture its first5s
and make a moving.gif
image. Is it possible ?
Can i do it withffmpeg
orcanvas
?I thought of using ffmpeg to capture 5 frames till 5s and showing them repeatedly but thats too many images.... do u have a solution ?
UPDATE
exec("$ffmpegPath -i $vidFilePath -t 10 put.gif 2>&1", $out, $ret);
This code got it working but now the
.gif
image is too big 20MB is there any possibility to get a lowered size image ? without affecting resolution ?