
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (73)
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
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. -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (8655)
-
Chromakey filter to display transparent keyboard while recording game screen using ffmpeg
31 janvier 2020, par captain_majidI’m trying to display a transparent keyboard like this one (he is using OBS studio) :
https://www.youtube.com/watch?v=6RCXyh2aICYSo I’m setting all "NohBoard v1.2.2" colors to green (0x00FF00), except the letters, then :
ffmpeg -y -f gdigrab -framerate 30 -draw_mouse 0 -i title="NohBoard v1.2.2" keyboard.mp4
ffmpeg -y -i keyboard.mp4 -c: png -vf "chromakey=0x00FF00:similarity=.200" keyboard1.mp4
ffmpeg -y -i gameplay.avi -i keyboard1.mp4 -filter_complex "[1:v] scale=560x180 [kb]; [0:v][kb] overlay=x=W-w-520:y=H-h-0 [done]" -shortest -map [done] test.mkvEverything works great so far, but can I use 1 command for this ?
-
Inconsistent behavior when using ffmpeg.exe to take a screen shot of a streaming video every 100 milliseconds ?
29 janvier 2020, par AlvinfromDiasparI am using ffmpeg.exe to produce a screen shot of a streaming video (H.264 encoded video on a UDP connection).
I am wondering if calling this every 50-100 milliseconds is too much load. The screenshots being produced is sporadic and not nearly enough (im taking a screenshot every 50-100 ms). Note that after i run the command i attempt to do a taskkill (to make sure the process isn’t hanging around).
How can i ensure that the ffmpeg.exe process completes its execution before i taskkill it?
The command argument im using for ffmpeg is the following :
-y -i udp ://0.0.0.0:11111 -ss 00:00:01 -vframes 1 -q:v 1 ScreenShot.jpg
-
Screen reocrd with avformat_open_input x11grab return -5
16 janvier 2020, par Truong HoangI am working with
libavformat
and usex11grab
to record screen on Ubuntu and also windown.I stuck with method of
libavformat
isavformat_open_input
always return-5
althoughpFormatCtx
andiformat
notnull
This is may code
//Show Dshow Device
void ScreenRecorder::Show_dshow_device() {
av_register_all();
avformat_network_init();
avdevice_register_all();
AVFormatContext *pFormatCtx = avformat_alloc_context();
AVDictionary *options = NULL;
AVInputFormat *iformat = av_find_input_format("x11grab");
printf("========Device Info=============\n");
int temp = avformat_open_input(&pFormatCtx, ":0.0+10,20", iformat, &options);
cout << temp << endl;
printf("================================\n");
}