
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (100)
-
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 (...) -
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 (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (10477)
-
Ffmpeg create gif from images with fullPath
4 juillet 2020, par padavanI need create gif from images in one line (without external file with list images). I dont understand how create if i have full paths ?


/home/userMo/test/dir1/4.jpg 
/home/userMo/pics/late/sada_342.jpg



I try by concat , but its dont work


ffmpeg -i "concat:/home/userMo/test/dir1/4.jpg|/home/userMo/pics/late/sada_342.jpg" -loop -1 out.gif



-
Multiple handlers per event type.
24 décembre 2013, par JamesMGreeneMultiple handlers per event type.
Fixes #199.
Fixes #169. -
avcodec : Fix reference data type for nvdec vc1 hwaccel
16 novembre 2017, par Philip Langdaleavcodec : Fix reference data type for nvdec vc1 hwaccel
I took the reference lookup code from the vp9 hwaccel where the
type is unsigned char, but for vc1, the type is signed int.This is particularly important because the value used when there's
no reference is different (255 vs -1).It didn't seem to break anything, but for mpeg1/2/4, this mistake
caused decode errors.