
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 (57)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (10338)
-
ffmpeg - alternative to AVCodecContext::refcounted_frames ?
18 mars 2014, par AsikWe are using an outdated version of AVCodec which does not contain the ref-counted frames feature implemented via
AVCodecContext::refcounted_frames
. Basically, we want to prevent AVCodec from re-using a buffer until we are done with it, which could be at any arbitrary point in the future (and not necessarily before the nextavcodec_decode_frame2
).Using a different
AVFrame
on each call to decode doesn't do the trick, because AVCodec uses the same buffers internally anyway (differentAVFrames
may point to the same data).Is there a way to do this without using the new features introduced with
AVCodecContext::refcounted_frames
? -
How to incoporate ffmpeg in my audio input upload form
3 février 2018, par Michelle Dimwaitethis is not really a question but a request to point me to any starting direction.
i have a simple audio upload form which stores the audio to a database or just any folder.
I want to start by implementing ffmpeg so before this audio is stored in the folder, it goes through ffmpeg(converted to mp3 for example) and stores the converted version to the folder.
Can someone please point me to any tutorial or links where i can start more research.
I already installed ffmpeg.exe in xampp
much appreciated in advance -
avcodec/pixlet : fix architecture-dependent code and values
7 mars 2017, par Vittorio Giovaraavcodec/pixlet : fix architecture-dependent code and values
The constants used in the decoder used floating point precision,
and this caused different values to be generated on different
architectures.So, eradicate floating point numbers and use fixed point (32.32)
arithmetics everywhere, replacing constants with precomputed integer
values.Signed-off-by : Vittorio Giovara <vittorio.giovara at gmail.com>
Signed-off-by : Paul B Mahol <onemda@gmail.com>