
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (70)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
-
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
Sur d’autres sites (8363)
-
qsvenc : Use MFXVideoENCODE_Query() to update the parameters
6 mai 2017, par Aaron Levinsonqsvenc : Use MFXVideoENCODE_Query() to update the parameters
Purpose : Fill out the default/unset parameters with ones actually in use.
Note : Matches the current MediaSDK example code. This code used to be
present in ffmpeg and was eliminated in revision 1f26a23 on Oct. 31,
2016 (qsv : Merge libav implementation, at
https://github.com/FFmpeg/FFmpeg/commit/1f26a231bb065276cd80ce02957c759f3197edfa#diff-7d84a34d58597bb7aa4b8239dca1f9f8).
Already applied to libav.Reviewed-by : Luca Barbato <lu_zero@gentoo.org>
(cherry picked from commit b22094d74901fb3ac203c8322f8d84aded470bfb)
Signed-off-by : Mark Thompson <sw@jkqxz.net>
Signed-off-by : Aaron Levinson <alevinsn@aracnet.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
qsvenc : Make sure the interlaced encoding works
6 mai 2017, par Aaron Levinsonqsvenc : Make sure the interlaced encoding works
Purpose : qsvenc : make sure that interlaced encoding works. Also,
reduce the vertical alignment constraint when possible to reduce
memory usage.Note : Most of this code used to be present in ffmpeg and was
eliminated in revision 1f26a23 on Oct. 31, 2016 (qsv : Merge libav
implementation, at
https://github.com/FFmpeg/FFmpeg/commit/1f26a231bb065276cd80ce02957c759f3197
edfa#diff-7d84a34d58597bb7aa4b8239dca1f9f8). Already applied to
libav.Reviewed-by : Luca Barbato <lu_zero@gentoo.org>
(cherry picked from commit 8fd8f91e47f33cd82371a97ac81afc476144964f)
Signed-off-by : Mark Thompson <sw@jkqxz.net>
Signed-off-by : Aaron Levinson <alevinsn@aracnet.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
avdevice/decklink : fix MSVC build issues
6 mai 2017, par Aaron Levinsonavdevice/decklink : fix MSVC build issues
Purpose : Made minor changes to get the decklink avdevice code to build
using Visual C++.Notes : Made changes to configure per Hendrik Leppkes's review of first
and second versions of patch. Also made slight alterations per Marton
Balint's reviews.Comments :
— configure : Added if enabled decklink section and setting
decklink_indev_extralibs and decklink_outdev_extralibs here for
both mingw and Windows. Also eliminated the setting of these
variables in the mingw section earlier in the file.— libavdevice/decklink_common.cpp : Switched the order of the include
of libavformat/internal.h to workaround build issues with Visual
C++. See comment in file for more details.— libavdevice/decklink_dec.cpp :
a) Rearranged the include of libavformat/internal.h (for reasons as
described above).
b) Made slight alteration to an argument for call to av_rescale_q() to
workaround a compiler error with Visual C++. This appears to only
be an issue when building C++ files with Visual C++. See comment
in code for more details.— libavdevice/decklink_enc.cpp : Rearranged the include of
libavformat/internal.h (for reasons as described above).Signed-off-by : Aaron Levinson <alevinsn@aracnet.com>
Signed-off-by : Marton Balint <cus@passwd.hu>