Recherche avancée

Médias (0)

Mot : - Tags -/serveur

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (80)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (7583)

  • vaapi_h265 : Add main 10 encode support

    30 septembre 2016, par Mark Thompson
    vaapi_h265 : Add main 10 encode support
    

    (cherry picked from commit 5a5df90d9c05d86d9b0564b8b40b6d64a324df5e)
    (cherry picked from commit d08e02d929ff8be5f56bb1da0e439bf1ae557552)

    • [DH] libavcodec/vaapi_encode_h265.c
  • Anomalie #2631 : no_image_filtrer passe la main

    8 mai 2012, par cedric -

    Pas de nom décidé, pas de patch. Je repousse à 3.1

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