
Recherche avancée
Autres articles (67)
-
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 (...) -
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 (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (9168)
-
How to darken overlay background with ffmpeg ?
2 novembre 2019, par Kartik GarasiaHow can I darken the background video in a single line ?
I have 2 input streams
- frame%d.png (series of images frame1.png, frame2.png...)
- bg.mp4
Currently, I can overlay and scale with the following command,
"-i" ,frame%d.png, "-i", bg.mp4,"-r", "30","-filter_complex","scale2ref[a][b];[b][a]overlay", output.mp4
but before merge these 2 inputs I want to darken the background.
This is what I have tried
ffmpeg -i chunk%d.png -i bg.mp4 -filter_complex "scale2ref[a][b];[b][a]overlay,[1:v]eq='brightness=-0.05'" -y t3.mp4
But it resulting in the same merged video without darkening bg.mp4.
-
Is it possible to force ffmpeg/libav decoder to output an H.264 frame with only current information ?
19 mars 2018, par Andy KrouwelI’m currently using a slightly legacy version of ffmpeg/libav to decode H.264 frames.
It decodes them with a call to :
avcodec_decode_video2(context, &outPicture, &gotPicture, inNALPacket);
For this I provide a series of NAL packets, and once it has ’enough’ it produces the image frame, as outPicture.
So far, so good.
However, sometimes (due to network issues) a packet/NAL goes missing.
I can detect this.
When this happens I would like to give up on this frame, and tell the decoder to just give me its best shot at the image, given the data so far.Is there any way of doing this ? eg. can I construct an inNALPacket that essentially tells the encoder to give up and move on ?
-
How to record video and audio(both mic and speaker) audio using ffmpeg ?
21 décembre 2022, par Mruthyunjaya MI am facing error when i try to record both audio MIC and SPEAKER new i need need command for record video and audio(both mic and speaker).


Tried bwlow command


ffmpeg -f dshow -i audio="Headset Microphone (Plantronics Blackwire 3225 Series)" -f dshow -i audio="virtual-audio-capturer" -f gdigrab -framerate 10 -video_size 1920x1080 -draw_mouse 1 -i desktop -map 2 -map 0 -map 1 screen.avi


but its not working its throughing some error.