Recherche avancée

Médias (91)

Autres articles (67)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

Sur d’autres sites (7722)

  • Screenshot every 5 or 10 min from rtsp source using ffmpeg

    24 octobre 2017, par user8826215

    Hello i try make script who get screenshot from ip camera every 5 or 10 min
    this script is work

    ffmpeg -rtsp_transport tcp -i "$SOURCE"-vf fps=fps=1/20 -update 1 /picture1.jpg

    But when i start script. It make one shot for 20 second. I need just one pictures and wanna script stop.
    I can make bash script to run script every 5 or 10 min.
    When start for 2 time script ask me to Overwrite and i need say Y. This is not good for me.

    PS. sorry for my bad english

  • Improve FFmpeg time ? conversion takes very long

    15 avril 2015, par Rubytastic

    I have several rules to convert a movie to several formats and create a preview image. Problem is the execution of these takes very long.
    Also the outputted quality is very low. I harvested these examples from several sources.

    What could be done to
    * improve speed
    * improve quality ?

    ffmpeg -y -i /file/$1.flv -acodec libmp3lame -ar 44100 -ac 1 -vcodec libx264 /file/$1.mp4
    ffmpeg -i /file/$1.mp4 -acodec libvorbis -aq 5 -ac 2 -qmax 25 -threads 2 /file/$1.webm
    ffmpeg -r 30 -i /file/$1.mp4  -vcodec libtheora -acodec libvorbis /file/$1.ogv
    ffmpeg -i /file/$1.mp4 -ss 3 -f image2 -vframes 1 -s 600x480 /file/$1.png
  • Can't access Google Cloud Platform hosted rtsp stream externally

    1er novembre 2023, par Nikos Daskalas

    I have been trying to host a video to rtsp stream on a gcp vm instance.

    


    My steps were :

    


    a) Set up an external ip to my vm, and setup firewall rules to allow traffick.

    


    b)Install mediamtx to my vm and start a server with ./mediamtx

    


    c)install ffmpeg and stream my video with : ffmpeg -i video.mp4 -rtsp_transport tcp -f rtsp rtsp ://externalip:8554/live.stream

    


    The stream runs locally, but when I try to access in with vlc or ffplay rtsp ://externalip:8554/live.stream, I cannot connect. I tried to ping the server from the client side, and it works ok.

    


    What am I missing ? Are there any more configurations I need to do to my project ?