Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (51)

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

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (6870)

  • Révision 93109 : Compat PHP7 (peut être pas encore suffisant).

    23 novembre 2015, par marcimat@rezo.net

    La structure foreach change de comportement et s’applique par défaut sur une copie du tableau passé.
    Si on modifie le tableau dans le foreach… bien celui d’origine n’est pas affecté. Pour retrouver
    le comportement d’avant dans ces cas là, il faut passer la valeur par référence.

    cf.
    https://wiki.php.net/rfc/php7_foreach
    http://php.net/manual/fr/migration70.incompatible.php

  • Split video on android via ffmpeg

    27 septembre 2016, par Lior

    I have tried to use ffmpeg to split video,
    by adding compile 'org.bytedeco:javacv:1.+'and
    compile 'org.bytedeco.javacpp-presets:ffmpeg:3.1.2-1.2:android-arm' to my gradle file i got all of *.os files which is JNI wrap of all ffmpeg library to my android project .

    According ffmpeg wiki there is option to split the video but how i deal with command like ffmpeg -ss 00:22:30 -i Mononoke.Hime.mkv -ss 00:00:30 -frames:v 1 out3.jpg in android.

    I hope for some help if someone delt with splitting video file on android before, Thanks.

  • Is there a way to non-linear speed-up video with ffmpeg ?

    3 mars 2020, par leoossa

    I’ve seen thousands of websites suggesting using setpts to speedup video

    ffmpeg -i input.mp4 -filter:v "setpts=0.5*PTS" output.mp4

    The thing is - I don’t want to speed-up video in a linear way. I want it to accelerate. So I want ’acceleration’ (Wiki) to be constant and ’speed’ to be growing.

    From what I’ve seen on ffmpeg docs setpts can be an equation, I tried to play with PREV_OUTPTS but with no success.
    Is it even possible to achieve that with ffmpeg ?