
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (60)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP 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, parCette 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 -
avcodec/h264 : call flush_change() on init
10 octobre 2013, par Michael Niedermayer -
How to call ffmpeg with Java - umlauts ?
15 juillet 2014, par MeseI 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 !