Recherche avancée

Médias (91)

Autres articles (75)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (9545)

  • lavu/opt : distinguish between native and foreign access for AVOption fields

    3 mars 2024, par Anton Khirnov
    lavu/opt : distinguish between native and foreign access for AVOption fields
    

    Native access is from the code that declared the options, foreign access
    is from code that is using the options. Forbid foreign access to
    AVOption.offset/default_val, for which there is no good reason, and
    which should allow us more freedom in extending their semantics in a
    compatible way.

    • [DH] libavutil/opt.h
  • Révision 18573 : svn c’est une concentration de tous les instants

    23 septembre 2011, par Ben .
  • c++ ffmpeg access violation

    29 mars 2012, par user1288043

    What's wrong in this code ? It is breaking (access violation) at av_find_stream_info. While debugging, ctx->filename is "3" instead of "1.MP3" : first 4 chars are omitted, checked for other files too, same result.

    av_register_all();
    AVFormatContext *ctx=0;
    ctx=avformat_alloc_context();
    avformat_open_input(&ctx,"1.MP3",0,0);
    av_find_stream_info(ctx);
    int istream;
    for(int i=0;inb_streams;i++){
    if(ctx->streams[i]->codec->codec_type==AVMEDIA_TYPE_AUDIO){
           istream=i;
           break;
    }