
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (77)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)
Sur d’autres sites (5333)
-
log : allow color highlighting in Cygwin’s mintty
4 avril 2014, par James Darnleylog : allow color highlighting in Cygwin’s mintty
Configure will detect the availability of the Windows’ console functions and set
HAVE_SETCONSOLETEXTATTRIBUTE. Meaning av_log will use those functions to
control colours. When ffmpeg is run in Cygwin’s mintty terminal emulator it
will not use colour highlighting in this case.Mintty responds to the usual escape code colours (it even supports 256 colours).
Windows’ cmd.exe does not. Fortunately it seems that Cygwin’s emulation layer
now translates the basic 16 colours into Windows’ Console command functions.That means that we can have av_log use the standard colour commands and let
ffmpeg print colours in both mintty and cmd.Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
AWS Lambda. Error=20 (Not a directory) when moving FFmpeg to /tmp
18 novembre 2017, par Omar RiazI am using the ffmpeg-cli-wrapper to run FFmpeg from an application I upload onto AWS lambda. I was initially getting the
error=13 Permission Denied
when trying to call it via the wrappers
ProcessBuilder
. My inital solution was tochmod 755
ffmpeg before uploading, but it didn’t help.For information, my FFmpeg and ffprobe files are located in the following classpath :
static/ffmpeg/ffmpeg
andstatic/ffmpeg/ffprobe
. They are also statically linked.AWS Lambda permission denied when trying to use ffmpeg
I’ve tried to follow the instructions given in the example above, but when I try to perform either mv or cp command :
Runtime.exec("mv " + pathToFFmpeg + " /tmp")
, I get theerror=20, Not a directory
error.
I know that I have the correct path for FFmpeg because the following command
mv *pathToFFmpeg* *an arbitrary name*
runs without error, meaning that the file is there and so the mv command just renames it as it’s supposed to do. -
lavc/vaapi_decode : add missing flag when picking best pixel format
5 août 2022, par Philip Langdalelavc/vaapi_decode : add missing flag when picking best pixel format
vaapi_decode_find_best_format currently does not set the
VA_SURFACE_ATTRIB_SETTABLE flag on the pixel format attribute that it
returns.Without this flag, the attribute will be ignored by vaCreateSurfaces,
meaning that the driver's default logic for picking a pixel format will
kick in.So far, this hasn't produced visible problems, but when trying to
decode 4:4:4 content, at least on Intel, the driver will pick the
444P planar format, even though the decoder can only return the AYUV
packed format.The hwcontext_vaapi code that sets surface attributes when picking
formats does not have this bug.Applications may use their own logic for finding the best format, and
so may not hit this bug. eg : mpv is unaffected.