Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (89)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (6309)

  • 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 !

  • Multiple call to ffmpeg main fails in Android

    27 mars 2016, par fatih orhan

    I have ported ffmpeg library to Android. Using JNI interface, I am able to run ffmpeg commands by giving arguments to ffmpeg’s main method, just like from command line.

    In order to get a specific part of a video, I use this command :

    ffmpeg -i /mnt/sdcard/input_video.mp4 -ss 00:00:12 -t 00:00:10 -an /mnt/sdcard/output_video.mp4

    and it works great. The video is split from 12. seconds to 22. seconds and the video is saved, the method returns normally (as 0).

    However, if I make a second similar call (different start time for example) just after the first one is completed, ffmpeg is not able to process the request and it throws a segmentation fault.

    For the first call, it gives such an info :

    Guessed Channel Layout for Input Stream #0.0 : mono

    and works. But for the second, the message is like this one :

    Guessed Channel Layout for Input Stream #1.0 : mono

    and it doesn’t work. I don’t know if it has something to do with the error.

    The problem, in general, should be related to static global variables (I think) but I could not manage to reset them properly. What might be the solution to make multiple successful calls to the main method of ffmpeg ?