Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (72)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

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

  • JSMpeg not able to get stream from RTSP

    20 octobre 2023, par Q.Rey

    i'm trying to get a RTSP stream inside a webpage, but with no success actually.

    



    For this I followed exactly the tutorial of JSMpeg : https://github.com/phoboslab/jsmpeg

    



    With a custom FFMPEG command :

    



    ffmpeg -i "rtsp://myurl/media.smp" \
 -vcodec h264 -f mpegts -codec:v mpeg1video -s 1290x980 -b:v 8000k \
 -r 25 -max_muxing_queue_size 9999 http://localhost:8081/supersecret


    



    My websocket well receive my connection on it.

    



    But my canvas is still a white square :
enter image description here

    



    The weird thing is when I change the websocket url with a false one, in my code, the canvas turn to black.

    



    So I guess that it turn WHITE when it receive something.

    



    Thansk for help

    


  • How to enable and run zoompan only after nth frame

    24 novembre 2016, par RSMEENA

    I have to use zoompan on every input image , for different-different duration.
    I don’t know how to enable every zoompan between right frame,
    enable='between(n,x,y)' not working. here my code =>

    [0:v] zoompan=enable:z='if(lte(zoom,1.0),1+0.0009*5*30,max(1.001,zoom-0.0009))':d=205:s=800x800,
       drawtext=enable:fontfile=Oswald-Regular.ttf:text=%{n}:fontcolor=white:fontsize=38:y=H-100-(38)*1:x=w/2-tw/2 [over_0],  

    [1:v] zoompan=enable:z='if(lte(zoom,1.0),1+0.0009*5*30,max(1.001,zoom-0.0009))':d=205:s=800x800 ,
       drawtext=enable:fontfile=Oswald-Regular.ttf:text=%{n}:fontcolor=white:fontsize=38:y=H-100-(th+5)*1:x=w/2-tw/2 [over_1]

    —and some overlay code — " output

  • How to run ffmpeg with php in debian 10

    6 août 2020, par Eloike David

    i am trying to run a ffmpeg command with my php in Debian 10, but its not working, but the command is working perfectly in windows. The command is to add a watermark and a text at the bottom of the video.
Here is the php code

    


    &lt;?php&#xA;    $new_file="new.mp4";&#xA;    $text="eloke";&#xA;    $video_name="video.mp4";&#xA;    echo file_exists($new_file)? "<video autoplay="autoplay" src="&#x27;$new_file&#x27;"></video>":"No file";&#xA;   &#xA;    $cmd="ffmpeg -i $video_name -i watermark.jpg -filter_complex overlay=W-w-5:H-h-15[video];[video]drawtext=\"text=$text:fontcolor=white:fontsize=12:x=(w-text_w)-5: y=(h-text_h)-5\" $new_file";&#xA;    exec("$cmd 2>&amp;1", $output);&#xA;    var_dump($output);&#xA;?>&#xA;

    &#xA;

    I am getting this in the browser

    &#xA;

    array(1) { [0]=> string(103) "sh: 1: [video]drawtext=text=eloke:fontcolor=white:fontsize=12:x=(w-text_w)-5: y=(h-text_h)-5: not found" }&#xA;

    &#xA;

    Please what am i doing wrong

    &#xA;