Recherche avancée

Médias (0)

Mot : - Tags -/gis

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (62)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (11231)

  • Run FFmpeg commands [on hold]

    28 juillet 2018, par avanib

    How can I use ffmpeg commands in my application ? The ffmpeg commands work perfectly on my local machine, but ffmpeg.exe is installed locally. How would I make them work when running the application on the server. Can I have the ffmpeg.exe in the app directory, will that work ?

    I tried not to use command line instructions as much as possible, but to write text on a video, I had to use the drawtext instruction. Any ideas on how to use ffmpeg command when ffmpeg is installed only on your local machine ?

  • How to cut video in cirecle shape using ffmpeg ?

    16 septembre 2019, par Rahul Chokshi

    I have working on application, application contain video. what I want cut video in circle shape.

    this is actual video

    desire out put

  • merge two RTMP stream into one FFMPEG

    20 février 2019, par istorry

    i am trying to merge 2 RTMP stream into 1 so far i am able to do it but i am facing delay in 1 stream

    rtmp {
    server {
       listen 1935;
       chunk_size 4096;

       application collab {
               live on;
               record off;  
               exec ffmpeg -i rtmp://localhost/collab/$name -i rtmp://localhost/collab2/$name -codec:a aac -strict -2 -filter_complex "[0:a][1:a]amix" -ac 2 -f flv rtmp://localhost/collab/play_$name;
       }

       application collab2 {
               live on;
               record off;
               exec ffmpeg -i rtmp://localhost/collab2/$name -threads 1 -c:v libx264 -profile:v baseline -b:v 350K -s 640x360 -f flv -c:a aac -ac 1 -strict -2 -b:a 56k rtmp://localhost/live360p/$name;
       }

       application stream {
               live on;
               record off;
               exec ffmpeg -y -i rtmp://localhost/stream/$name -r 25 -s 1x1 -c:v libx264 -b:v 3M -strict -2 -movflags faststart rtmp://localhost/stream/$name;
       }

       application live360p {
               live on;
               record off;
       }
    }

    Device 1 : rtmp ://localhost/collab/key123

    Device 2 : rtmp ://localhost/collab2/key123

    Player : rtmp ://localhost/collab/play_key123

    so far it’s working but i am getting delay even i try ffplay -fflags nobuffer for testing

    Metadata : : 0.000 fd= 0 aq= 0KB vq= 0KB sq= 0B f=0/0

    my vq= keeps increasing and decreasing.