
Recherche avancée
Médias (3)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (77)
-
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 -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Les images
15 mai 2013
Sur d’autres sites (8153)
-
fftools/textformat/avtextformat : Initialize stuff earlier
15 avril, par Andreas Rheinhardtfftools/textformat/avtextformat : Initialize stuff earlier
avtext_context_close() calls av_opt_free() on an AVTextFormatContext
as well as av_bprint_finalize() on the containing section_pbuf
AvBPrints, yet it can happen that the AVBPrints have not been
initialized (only zeroed) and that av_opt_set_defaults() has
not been called. This works, but it is not really documented to do so.
So ensure that the options and the AVBPrints have been initialized
when avtext_context_close() is called.Reviewed-by : softworkz . <softworkz-at-hotmail.com@ffmpeg.org>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com> -
ffmpeg_hw : make hardware selection for filters more user friendly
29 juin 2021, par Haihao Xiangffmpeg_hw : make hardware selection for filters more user friendly
When a device is derived from a source device, there are at least 2
devices, and usually the derived device is the expected device, so let's
pick the last device if user doesn't specify the filter device with
filter_hw_device optionAfter applying this patch, the command below can work :
$> ffmpeg -init_hw_device vaapi=va :/dev/dri/renderD128 -init_hw_device
qsv=hw@va -f lavfi -i yuvtestsrc -vf
format=nv12,hwupload=extra_hw_frames=64 -c:v h264_qsv -y out.h264Reviewed-by : Soft Works <softworkz@hotmail.com>
Signed-off-by : James Almer <jamrial@gmail.com> -
avutil/hwcontext_qsv : derive QSV frames to D3D11VA frames
7 mai 2022, par Tong Wuavutil/hwcontext_qsv : derive QSV frames to D3D11VA frames
Fixes :
$ ffmpeg.exe -y -hwaccel qsv -init_hw_device d3d11va=d3d11 \init_hw_device qsv=qsv@d3d11 -c:v h264_qsv -i input.h264 \
vf "hwmap=derive_device=d3d11va,format=d3d11" -f null -
Reviewed-by : Soft Works <softworkz@hotmail.com>
Signed-off-by : Tong Wu <tong1.wu@intel.com>
Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>