Recherche avancée

Médias (91)

Autres articles (57)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

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

  • Keep ffmpeg listening to new inputs

    14 décembre 2018, par Vincent Bavaro

    Good morning, I have a server that generates images and I have to stream them via hls to a client while they’re generated. I need ffmpeg to start working while they start getting transmitted and stop working when no more images are received. I tried feeding them via stdin and via img2pipe to ffmpeg but it actually needs a stopping point to process. I wanna know if ffmpeg can process images slideshow into video pieces WHILE they come in or I need multiple commands (one for each .ts) ?

  • How to resize a picture using ffmpeg's sws_scale() ?

    7 novembre 2022, par cyh24

    I wanna resize a picture by using the ffmpeg's func--->sws_scale().

    



    Is there any one knows how to do it ?

    



    Do you have the source code for this function ?

    


  • How to stream rawvideo x11grab desktop with zero latency

    14 septembre 2017, par J. Unknwo

    I would like to stream my linux desktop with ffmpeg rawvideo
    i use this command on server :

    sudo ffmpeg -f x11grab -s 1280x720 -i :0.0 -vcodec rawvideo -pix_fmt bgr0 -threads 1 -f mpegts udp ://localhost:1234

    its take almost 900Mb/s bandwidth but its over LAN
    I dont wanna use codecs cause its create to big latency for playing games.

    But i cant use ffplay to recognize this stream

    ffplay ’udp ://localhost:1234 ?fifo_size=999000&overrun_nonfatal=1’

    I got error :
    Failed to open file ’udp ://localhost:1234 ?fifo_size=875000&overrun_nonfatal=1’ or configure filtergraph

    When i save to file after second i have large file but i can open it with vlc i cant open udp stream

    Edit2 :
    sudo ffplay -f rawvideo -pixel_format bgr0 -video_size 1280x720 udp ://localhost:1234 ?fifo_size=999000&overrun_nonfatal=1

    working but i have green artifacts everywhere