Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (104)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La 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.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (7323)

  • FFMPEG Combining images to video and streaming in one command line

    12 juillet 2017, par Brindha Kanniah

    Currently, using ffmpeg, I am using two commands on my Terminal to :

    1) create a video from a bunch of images :

    ffmpeg -r 60 -f image2 -s 1920x1080 -i rotated-pano_frame%05d_color_corrected_gradblend.jpg -vcodec libx264 -crf 25 -pix_fmt yuv420p test.mp4

    2) stream the video to a udp address :

    ffmpeg -re -i test.mp4 -c copy -f flv udp://127.0.0.1:48550

    How can I combine these two commands, into one single ffmpeg command ?

    A concern I have is that it takes a couple of minutes to generate the video from the images. Therefore, these commands have to happen serially, whereby the second command waits a few minutes for the first command to be completed, before it ensues.

  • How can I improve the frame rate of my Raspberry Pi to YouTube stream ?

    2 août 2021, par RDowns

    I am using a Raspberry Pi 4 2GB to live stream to YouTube.

    


    The performance is pretty poor at the moment as I am trying to go through terminal and I feel the setting's are not correct. Performance is OK however if I go directly through YouTube studio and use the 'Webcam' option instead of 'Stream'.

    


    These are the settings that I am currently using :

    


    raspivid -o - -t 0 -vf -hf -fps 30 -b 6000000 | ffmpeg -threads 0 -f v4l2 -i /dev/video0 -ar 44100 -ac 2 -acodec pcm_s16le -f s16le -ac 2 -i /dev/zero -acodec aac -ab 128k -strict experimental -s 640x480 -b 6000000 -aspect 16:9 -vcodec h264_omx -vb 820k -pix_fmt yuv420p -g 60 -r 30 -f

    


    What options can I change in this command to improve the frame rate and give better performance ?

    


  • FFmpeg-wasm colorbalance filter always create washed out image, how to fix this ?

    15 août 2022, par Pieter-Jan Delbecke

    I'm using FFmpeg wasm in the browser (React.js).
When I want to adjust the colors of a video using the colorbalance videofilter it always produces a washed out image.

    


    await ffmpeg.run("-i", "test.mov", "-vf", "colorbalance=-0.4:-0.2:0.2:-0.4:-0.2:0.2:0:0:0.0", "-pix_fmt", "yuv420p", "test.mp4");


    


    I'm usig the exact same command as in FFmpeg in my terminal (where it works correctly)

    


    ffmpeg -i test.mov -vf colorbalance=-0.4:-0.2:0.2:-0.4:-0.2:0.2:0:0:0.0 -pix_fmt yuv420p output02.mp4


    


    Has someone experienced the same issue ?
Washed-out image attached