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)

  • How to pass swfurl to avconv/avplay

    9 avril 2013, par Mustafe

    In order to play rtmp live stream in avplay/avconv some live stream needs swf urls.

    I can dump rtmp with rtmpdump by giving swfurl with parameter "-s" and pipe it to the avplay as in the below

    rtmpdump -r "rtmp://...../playpath"  -s http://urlToswf.swf | avplay -i pipe:0

    However I would like to give swf parameter directly to the avplay, in other words, how can we play it without using rtmpdump. In libav documentation here : http://libav.org/avprobe.html it is stated that with rtmp_pageurl you can pass this parameter but I can not achieve it.
    Here is a working rtmp link you can try on it.

    rtmpdump -v -r rtmp://5.63.150.28/atv/atv3  -s http://i.tmgrup.com.tr/p/flowplayer-3.2.10.swf?i=1 | avplay -i pipe:0
  • Action Script - Pass Pause/Break key to native process

    1er août 2014, par user341931

    I’m using FMPEG to process some videos within an air application. I’m using a nativeprocess to pass the relevant arguments to FFMPEG/the command line. I want to be able to pause the process at certain times, and continue a little while later. In the command line pressing the pause/break key pauses the processing and then pressing enter restarts it. But I can’t find a way to encode the Pause/Break key, and then pass it to the the nativeprocess.

    Thanks in advance for any help.

  • x86 : simple_idct10_template : fix overflow in pass

    12 octobre 2015, par Christophe Gisquet
    x86 : simple_idct10_template : fix overflow in pass
    

    When the input of a pass has 15 or 16 bits of precision (in particular
    the column pass), the addition of a bias to W4 may lead to overflows
    in the input to pmaddwd.

    This requires postponing the adding of the bias to after the first
    butterfly. To do so, the fact that m15, unused although zeroed, is
    exploited. In case the pass is safe, an address can be directly used,
    and the number of xmm regs can be decreased. Otherwise, the 32bits bias
    is loaded into it.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/x86/proresdsp.asm
    • [DH] libavcodec/x86/simple_idct10_template.asm