Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (60)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (8169)

  • fftools/ffmpeg : deobfuscate check_decode_result() call

    16 mai 2023, par Anton Khirnov
    fftools/ffmpeg : deobfuscate check_decode_result() call
    

    Passing ist=NULL is currently used to identify stream types that do not
    decode into AVFrames, i.e. subtitles. That is highly non-obvious -
    always pass a non-NULL InputStream and just check the type explicitly.

    • [DH] fftools/ffmpeg.c
  • avcodec/h264 : call flush_change() on init

    10 octobre 2013, par Michael Niedermayer
    avcodec/h264 : call flush_change() on init
    

    This ensures that all the non zero fields get setup correctly.
    Alternatively their initialization could be duplicated.

    Fixes Ticket2738

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/h264.c
  • How to call ffmpeg with Java - umlauts ?

    15 juillet 2014, par Mese

    I am using the Java ProcessBuilder to call FFmpeg to capture a single window on my screen on Windows 7 using this command :

    ProcessBuilder pb = new ProcessBuilder(
     "path\\ffmpeg",
     "-f", "gdigrab",
     "-i", "title=" + "title of window",
     "path\\out.mp4"
    );

    With most windows this works fine and I don’t have any problems. But when I try to capture a window with an umlaut (like ÄÖÜ) in its title, I get an error that FFmpeg could not find that window. The same happens when starting FFmpeg using the Windows console.

    Does FFmpeg have a problem using umlauts and is there a way to capture windows with umlauts ?

    Thanks !