
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (106)
-
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...)
Sur d’autres sites (6234)
-
avcodec/v4l2_buffers : don't prevent enqueue capture buffer to driver
16 mars 2020, par Ming Qianavcodec/v4l2_buffers : don't prevent enqueue capture buffer to driver
Enqueue/dequeue of the capture buffers should continue while draining.
Reference : linux/Documentation/media/uapi/v4l/dev-decoder.rst
"The client must continue to handle both queues independently,
similarly to normal decode operation. This includes :
...
- queuing and dequeuing CAPTURE buffers, until a buffer marked with
the V4L2_BUF_FLAG_LAST flag is dequeued"Signed-off-by : Ming Qian <ming.qian@nxp.com>
Signed-off-by : Andriy Gelman <andriy.gelman@gmail.com> -
Using PHP-FFMPEG to crossfade audio
18 juillet 2016, par jreikesI already know how to do this in FFMPEG from the command line, but was hoping I could do it all using the PHP-FFMPEG wrapper. I have two files :
video.mpeg
(let’s say it’s a video that’s 5 seconds in length) andfade_in.aac
(this is a 0.5 second audio clip that is supposed to overlap with the beginning of video.mpeg).I want to crossfade audio.aac at the beginning of video.mpeg (so
audio.aac
starts at full volume and fades out for 0.5 seconds,video.mpeg
starts at no volume and fades in during the first 0.5 seconds).In the command line, I would do something like the following :
#First, strip the audio away from the video file
ffmpeg -i video.mpeg audio.aac
#Next, perform the crossfade operation
ffmpeg -i fade_in.aac -i audio.aac -filter_complex "[a1][a2]acrossfade=d=0.5" audio_w_crossfade.aac
#Finally, recombine the audio with the video file
ffmpeg -i video.mpeg -i audio_w_crossfade.aac -codec copy -shortest video_w_crossfade.mpegIs there a way to do this with the PHP-FFMPEG wrapper library ?
-
checkasm : Serialize read_time() calls on x86
8 octobre 2014, par Henrik Gramnercheckasm : Serialize read_time() calls on x86
Improves the accuracy of benchmarks, especially in short functions.
To quote the Intel 64 and IA-32 Architectures Software Developer’s Manual :
"The RDTSC instruction is not a serializing instruction. It does not necessarily
wait until all previous instructions have been executed before reading the counter.
Similarly, subsequent instructions may begin execution before the read operation
is performed. If software requires RDTSC to be executed only after all previous
instructions have completed locally, it can either use RDTSCP (if the processor
supports that instruction) or execute the sequence LFENCE ;RDTSC."RDTSCP would accomplish the same task, but it’s only available since Nehalem.
This change makes SSE2 a requirement to run checkasm.