
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (60)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (7487)
-
FFmpeg, how to adjust color temperature ?
23 mars 2018, par DimkaI am using ffmpeg with a camera and need to adjust colour temperature to the lighting, adjust to warm/cold/bright white.
I know that there is colour balance filter, but it takes separate values for each colour, but it would be nice to take a Kelvin temperature (K) some way or other easy way.
I’ve found an external algorithm that converts K into colours.
Is there any embedded way to adjust colour temperature in ffmpeg ? It must be a popular feature ?
-
AVSubtitleRect DVBSub format explanation
6 mars 2020, par Captain JackI am trying to convert the DVBSub data in AVSubtitle to RGB format but it doesn’t seem to be working. I am just getting random colours out.
Here’s the code :
/* rects comes from AVSubtitleRect type elsewhere*/
int bw = rects[0].w;
int bh = rects[0].h;
uint32_t colour;
uint32_t *bitmap;
int r, g, b;
/* Give it some memory */
bitmap = malloc(bw * bh * sizeof(uint32_t));
for (int y = 0; y < bh; y++)
{
for (int x = 0; x < bw; x++)
{
/* data[0] holds index data */
const uint8_t index = rects[0]->data[0][y * bw + x];
/* data[1] holds colours - get colour from index */
colour = rects[0]->data[1][4 * index];
r = (colour >> 16) & 0xFF;
g = (colour >> 8) & 0xFF;
b = (colour >> 0) & 0xFF;
/* construct bitmap pixel by pixel (24 bit RGB) */
bitmap[y * bw + x] = r << 16 | g << 8 | b;
}
}There is some information here Dump subtitle from AVSubtitle in the file but I am not sure I am understanding it correctly.
I am sure that I am getting the data correct and text based subtitles look fine. Not quite sure what I am doing wrong here.
-
FFMPEG color to transparencyq
5 septembre 2019, par Andrew LI am trying to convert a mp4 video with a completely uniform pink color to a mov file seuch that the pink color is transparent.
I have run :
ffmpeg -i input.mp4 -vf "chromakey=0xf25b98:0.01:0" -c copy -c:v png output.mov
I confirmed that #f25b98 is the color I am replacing. This makes absolutely nothing transparent. When I try :
ffmpeg -i input.mp4 -vf "chromakey=0xf25b98:0.02:0" -c copy -c:v png output.mov
I get some weird transparent dots in my pink but still nothing is changed (see attached screenshot from video).
Why would ffmpeg exhibit this behavior ?