Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (14)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

Sur d’autres sites (4775)

  • avidec : Let the inner dv demuxer take care of discarding

    27 juillet 2013, par Luca Barbato
    avidec : Let the inner dv demuxer take care of discarding
    

    CC : libav-stable@libav.org

    • [DBH] libavformat/avidec.c
  • avformat/hls : do not care about stream start timestamps

    30 décembre 2013, par Anssi Hannula
    avformat/hls : do not care about stream start timestamps
    

    While selecting a packet to return to caller in read_packet(), the code
    corrects the timestamps for starting timestamps.

    However, this is wrong, since for live streams the initial timestamps
    might differ just because of the time delay between the retrieval of the
    various Media Playlists.

    Fortunately, spec 6.2.4 mandates that all variant streams must have
    matching timestamps, so we do not need to correct for initial
    timestamps.

    Drop the correction code.

    Note that ID3 timestamps were previously ignored, so this code was
    previously actually needed.

    Signed-off-by : Anssi Hannula <anssi.hannula@iki.fi>

    • [DH] libavformat/hls.c
  • Does the compiler take care the useless codes like if(0) ?

    25 juillet 2015, par xkfz007

    Recently, I am compiling the ffmpeg codes under windows use the VS2010 with intel compiler.
    For the following codes :

    void ff_dcadsp_init(DCADSPContext *s)
    {
       s->lfe_fir = dca_lfe_fir_c;
       if (ARCH_ARM) ff_dcadsp_init_arm(s);
    }

    the macro ARCH_ARM is defined as 0.

    When I compile it under linux, there is no function in ff_dcadsp_init_arm() in the object file, while it does under windows ? So I want to make sure if the compiler will do something about the useless codes and how to set it for INTEL compiler.