Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (107)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

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

Sur d’autres sites (11072)

  • Wowza RTMP to RTSP

    3 août 2016, par Nmas

    We’re using a Raspicam to stream live video to a client using Wowza Streaming Engine. We use FFMPEG to encode and send to Wowza and we can succesfully watch the RTMP stream using JWPlayer. This is the FFMPEG command used :

    ffmpeg -t 0 -s 320x240 -f video4linux2 -i /dev/video0 -b:v 250k -tune zerolatency -preset ultrafast -f flv -r 15 rtmp://wowzaaddress:1935/live/live

    To be able to watch the stream on mobile devices we want to use RTSP or HLS which Wowza provides links to, however when we use those links (provided on the Test Player) nothing happens and we can’t even open them to test for example in VLC. We have already added the extra ports on our web server to see if that was the problem and still didn’t work.
    Does anybody know what the problem is or what could we be doing wrong ?

  • Chromakey filter to display transparent keyboard while recording game screen using ffmpeg

    31 janvier 2020, par captain_majid

    I’m trying to display a transparent keyboard like this one (he is using OBS studio) :
    https://www.youtube.com/watch?v=6RCXyh2aICY

    So 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.mkv

    Everything works great so far, but can I use 1 command for this ?

  • Encoding video for PS4 Pro using ffmpeg

    16 février 2023, par Calum J Craig

    I'm trying to encode video to watch on my PS4 Pro (so want to be able to handle 4k as well as 1080p).

    


    At first I had success with the default ffmpeg .mp4 command just using this :

    


    ffmpeg -i .mkv .mp4

    


    This was fine for the first batch of 1080p videos I encoded. But, then it started to fail me - the videos would encode but when I tried to watch them on the PS4 the file would start to play with only audio, no video, play for a few seconds then fail and become unusable.

    


    I checked and apparently the PS4 requires the H.264 codec. So, I installed libx264-dev and tried :

    


    ffmpeg -i .mkv -vcodec libx264 .mp4

    


    I got the same result - the video encoded and started to play on the PS4 with only audio then failed.

    


    Any suggestions for what I am missing / doing wrong ? This is the first time for me to use ffmpeg so I am not familiar with its various features / parameters. I'm running Ubuntu 22.04.