Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (44)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

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

Sur d’autres sites (6992)

  • Fastest way to combine an image and audio file to make a video using ffmpeg

    10 septembre 2020, par Ritik Sahu Student

    i am using ffmpeg to combine an image and audio to make video with this command from my python program

    


    process = subprocess.Popen('ffmpeg -loop 1 -i "{picture}" -i "{audio}" -c:v libx264 -tune stillimage -c:a aac -b:a 192k -pix_fmt yuv420p -shortest "{out_path}"'.format(picture=picture, audio=audio, out_path=out_path), stdout=subprocess.PIPE, shell=False)


    


    but it is taking very long almost 30-45 minutes on my pc with specifications 1GB Ram and intel xenon processor. is there any way to make this process faster
i am ready to compromise the quality (decent).

    


  • ffmpage win7 screen record cursor is not normal

    5 avril 2017, par Wesley

    I hit a problem when recording screen on window 7 using ffmpeg.

    Snapshot here :
    enter image description here

    So, you guys see the big red point is recorded mouse cursor.
    I am using PPT default pencil, so, actually, cursor is a very small point.
    But it becomes so big when play.

    Command I use :

    ffmpeg.exe -y -rtbufsize 500M -f gdigrab -framerate 5  -draw_mouse 1 -i desktop -f dshow -i audio=%s -af "highpass=f=200, lowpass=f=3000" -c:v libx264 -r 5 -preset medium -tune zerolatency -crf 35 -pix_fmt yuv420p -c:a libvo_aacenc -ac 2 -b:a 48k  -fs 50M  -movflags +faststart

    Anyone hit this before ?

    Thanks.

    Wesley

  • Optimize ffmpeg stereo splitting and broadcasting

    12 avril 2016, par Ngoral

    I recieve an rtmp-input with a video and a stereo audio. I need to split audio and send two videos with the left channel and the right channel on different adresses. I have such a command :

    ffmpeg  -r 25 -loop 1 -i background.png \
    -rtbufsize 2000M -i rtmp://stereoinput \
    -filter_complex "[1:v][0:v]overlay[video];[video]split[video][video2];[1:a]channelsplit[aleft][aright]" \
    -map [video] -map [aleft]  -c:v libx264 -minrate 1000k -maxrate 1500k -b:v 1300k -bufsize 1000k \
    -pix_fmt yuv420p -r 25 -g 100 -tune zerolatency -preset ultrafast \
    -c:a libmp3lame -ar 44100 -y -f flv rtmp://out_left \
    -map [video2] -map [aright] -c:v libx264 -minrate 1000k -maxrate 1500k -b:v 1300k -bufsize 1000k \
    -pix_fmt yuv420p -r 25 -g 100 -tune zerolatency -preset ultrafast \
    -c:a libmp3lame -ar 44100 -y -f flv rtmp://out_right

    But it performs slow : it outputs only 20 fps. I encode on azure VPS with a 4 GB RAM and 4 Cores and has never thought it could had a problem like this. It encodes one stream perfectly.

    Do you have any ideas how to make it faster ?
    For,example I also don’t like that I have to encode the same videostream twice. I can’t afford two commands cause I have to see whole output of the command.