Recherche avancée

Médias (91)

Autres articles (105)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

Sur d’autres sites (10456)

  • ratecontrol_new : Simplify an expression in HRD timescale calculation

    28 juillet 2016, par Henrik Gramner
    ratecontrol_new : Simplify an expression in HRD timescale calculation
    

    Also gets rid of a false positive static analyser integer division warning.

    • [DH] encoder/ratecontrol.c
  • FFProbe Duration Integer Expression Expected ?

    25 décembre 2017, par kpjVideo

    I’m trying compare the number of seconds in a video provided by ffprobe.

    In my bash script I have the following :

    duration=`ffprobe -i $fileread.mp4 -show_format -v quiet | sed -n 's/duration=//p'` < /dev/null

    This returns a double > 8248.021633

    I want to compare this number to an integer like so :

    if [ "$duration" -lt 300 ]; then
      # do stuff
    fi

    Everytime the script runs I get :

    line 15: [: 8248.021633: integer expression expected

    Is this because the output is simply not an integer ? I have also tried making a new variable with var=$(($duration)) with no luck.

    Any help much appreciated, Thanks.

  • avcodec/kgv1dec : fix memleak, reintroduce lost decode_flush() call

    17 janvier 2014, par Michael Niedermayer
    avcodec/kgv1dec : fix memleak, reintroduce lost decode_flush() call
    

    fixes regression since 80d44190c4d909e9685d04bcde693da3e2441dfd and 1a0370ad94de094a5ac754e790d4ec8d8d0d9ee7
    this reverts the buggy changes in these 2 commits

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/kgv1dec.c