Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (63)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (8699)

  • Anomalie #3911 (Fermé) : Icones en RTL dans le prive

    4 mars 2017, par b b

    Merci pour le signalement et le patch, r23439 doit corriger le problème. Pour info, j’ai préféré jouer avec background-offset (cf http://stackoverflow.com/a/16528840) plutôt que de coller une valeur en dur pour la position, ainsi le résultat sera bon quelle que soit la largeur du conteneur ;)

    PS : reste à voir si on reporte en 3.1 (?)

  • Add experimental support for vp9 in iso-bmff

    15 juin 2016, par Kongqun Yang
    Add experimental support for vp9 in iso-bmff
    

    Implemented according to the draft specification
    "VP Codec ISO Media File Format Binding" :
    http://www.webmproject.org/vp9/#draft-vp-codec-iso-media-file-format-binding

    ’-strict -2’ is required to use this feature.

    Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>

    • [DH] libavformat/Makefile
    • [DH] libavformat/isom.c
    • [DH] libavformat/movenc.c
    • [DH] libavformat/vpcc.c
    • [DH] libavformat/vpcc.h
  • FFmpeg low trim accuracy

    3 février 2019, par Rektirino

    So, I’m trying to cut a 1 minute 29 seconds video into clips of 30 seconds each.
    The expected output is 30sec,30sec,29sec.
    The result is 35sec,29sec,23sec.

    This is my code -

    ArrayList<string> commandList = new ArrayList&lt;>();
               commandList.add("-ss");
               commandList.add("00:00:00");
               commandList.add("-i");
               commandList.add(videoPath);
               commandList.add("-c");
               commandList.add("copy");
               commandList.add("-f");
               commandList.add("segment");
               commandList.add("-segment_time");
               commandList.add("00:00:30");
               commandList.add(TEST.getAbsolutePath());
               String[] command  = commandList.toArray(new String[commandList.size()]);
               execFFmpegBinary(command);
    </string>

    Any idea what I’m doing wrong ? I read somewhere that if at a particular position a keyframe doesn’t exists it seeks to position of the nearest keyframe.

    Any solution or guidance will help me. Thank you in advance.