Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (67)

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

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

Sur d’autres sites (8167)

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