Recherche avancée

Médias (91)

Autres articles (104)

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

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (10216)

  • Extracting N frames per second using ffmpeg

    13 juillet 2022, par Sangeeth Kumar

    ffmpeg -i input.mp4 -vf trim=10.021295:22.621295 -r 1 frames/frame_%d.png

    


    This returns 24 frames instead of 12

    


  • NaCl with FFmpeg, avformat_open_input return -5 and -1052488119 [duplicate]

    30 juillet 2013, par Jar

    This question is an exact duplicate of :

    I'm trying to port FFmpeg into my NaCl module.

    So far, my module linked ffmpeg and SDL libraries.

    It already can play YUV format video which is directed load into memory and copy into YUVOverlay buffer (it's very easy).

    Now, I want to use ffmpeg to decode video, but when I call the function avformat_open_input it returns -5 when input is URL string, such as rtmp:// or mmsh:// ; it returns -1052488119 when input is file name, such as /saved/tmp (I mount the file system - html5fs).


    There are some questions :

    1. What means of -5 and -1052488119 ?
    2. If file can't open by avformat_open_input, is it possible the input type is from buffer not from file name or url string ?

    If I'm not clearly about my question or description, you can tell me.
    If you are doing the same thing or having the same problem, we can discuss together.

    Thanks,
    Jar

  • qt-faststart : Fix the signedness of variables keeping the ftello return values

    29 octobre 2012, par Michael Niedermayer
    qt-faststart : Fix the signedness of variables keeping the ftello return values
    

    These variables are assigned the return values of ftello, which
    returns an off_t, which is a signed type. On errors, ftello returns
    - 1, thus make sure this error return value can be stored properly.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] tools/qt-faststart.c