Recherche avancée

Médias (91)

Autres articles (73)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (8869)

  • Splicing two gifs together every other frame using ffmpeg

    30 juillet 2021, par Alexwall

    I have two gifs I want to be combined together in an odd fashion.

    


    If I have gif1.gif and gif2.gif i want one frame of gif2.gif inserted every other frame of gif1.gif, in a sort of zipper like way if that makes sense.

    


    Is this feasible ? Is ffmpeg maybe not the right software to use for this ?

    


  • how can I get the total number of frames using ffmpegkit on Android (Kotlin) ?

    1er mars 2023, par user44551

    I'm developing an Android app to encode a video using

    


    


    com.arthenica.ffmpegkit.FFmpegKit

    


    


    I would like to show users some information on the progress.
I managed to show how many frames are processed in real time. I would like to get the total number of frames in the original stream, so I can show a percentage.

    


    How can I get the total number of frames in a video before I start encoding it ?

    


  • streaming video to c# app

    15 octobre 2014, par Ilya

    I’m writing a streaming app, and I need to show a preview in my app.

    I running ffmpeg process like ffmpeg -rtbufsize 100M -f dshow -i video="Logitech HD Webcam C525" -c:v libx264 -pix_fmt yuv420p  -an -tune zerolatency -preset ultrafast -f tee -map 0:v "[f=flv]rtmp://video.dev/test/test|[f=mpegts]udp://localhost:18234"
    which streams into 2 output : remote rtmp and to local source for preview.

    So, what method I can use to show local preview ?

    I tried this Show a tcp video stream (from FFPLAY / FFMPEG) in an C# application, but ffplay window doesn’t shows, maybe because it creates console window first, and then new window with video.