
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (53)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (9999)
-
configure : Make MSVC version grabbing more robust
13 juin, par Martin Storsjöconfigure : Make MSVC version grabbing more robust
When running plain "cl", to get the MSVC version, it prints the
version header on stderr, while the usage instructions are printed
on stdout. Usually, the version on stderr gets flushed first,
so "head -n1" gets the line it expects, but some times (in particular
when running MSVC wrapped in wine), it can get the usage line
first.Redirect stdout to /dev/null, so we only grab the version among
the lines printed to stderr. This should make the version number
grabbing more robust.At least all relevant versions of MSVC seem to print this specifically
to stderr, not stdout (so we don't risk to miss it) ; checked down
to MSVC 2010.Signed-off-by : Martin Storsjö <martin@martin.st>
-
avcodec/h264_mp4toannexb_bsf : fix missing PS before IDR frames
19 mai 2023, par Zhao Zhiliavcodec/h264_mp4toannexb_bsf : fix missing PS before IDR frames
If there is a single group of SPS/PPS before an IDR frame, but no
SPS/PPS after that, we will miss the chance to reset
idr_sps_seen/idr_pps_seen. No SPS/PPS are inserted afterwards.This patch saves in-band SPS/PPS and insert them before IDR frames
when necessary.Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>
-
Unknown encoder libvpx [duplicate]
2 juin 2016, par Justin TullockThis question already has an answer here :
I’m trying to convert gif to webm files. I use
ffmpeg -i gif.gif -c:v libvpx -crf 12 -b:v 500K webm.webm
which tells me Unknown encoder ’libvpx’
But when I search libvpx, this is the output
========================= N/S matched: libvpx==========================
libvpx-devel.i686 : Development files for libvpx
libvpx-devel.x86_64 : Development files for libvpx
libvpx.i686 : VP8 Video Codec SDK
libvpx.x86_64 : VP8 Video Codec SDK
libvpx-utils.x86_64 : VP8 utilities and toolsSo I did compile ffmpeg with libvpx correctly ? Or did I miss something ? Thank you for your help.