Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (60)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

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

Sur d’autres sites (10735)

  • avformat/isom : remove duplicated line

    9 mars 2014, par Michael Niedermayer
    avformat/isom : remove duplicated line
    

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

    • [DH] libavformat/isom.c
  • vf_frei0r : fix missing end of line character

    4 mars 2014, par Vittorio Giovara
    vf_frei0r : fix missing end of line character
    

    Error introduced in 61b323ce7c7cdc101eadfd7de2203922b8a39e8d.

    • [DBH] libavfilter/vf_frei0r.c
  • Translating ffmpeg command line to C++ codec settings

    6 mars 2014, par pacificator

    I've been doing some work in ffmpeg for a while in C++.
    Most of the help regarding encoder settings is explained as command line options.
    For example (taken from the ffmpeg site) :

    -mbd rd -trellis 2 -cmp 2 -subcmp 2 -g 100 -pass 1/2’

    but beware the ’-g 100’ might cause problems with some decoders. Things to try :

    ’-bf 2’, ’-flags qprd’, ’-flags mv0’, ’- flags skiprd.

    This is not really usefull when you want to set these options in C.
    For example I managed to find int trellis ; in the AVCodecContext struct so that is one solved, but what about the others ?

    Is there a way to determine what command line parameters correspond to what AVCodecContext members ?
    I tried setting them like this :

    AVCodecContext* c;
    av_opt_set_int(c->priv_data, "cmp", 2, 0);

    But this returns an error code that the option does not exist.
    I've also tried :

     av_opt_set(c->priv_data, "cmp", "2", 0);

    I still get the error that the option does not exist.

    So, is there a way to determine what AVCodecContext members I should set that are equivalent to the ffmpeg command line parameters above ?