Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

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 (10246)

  • fate/image : Modify aliaspix tests to also cover the encoder

    6 octobre 2021, par Andreas Rheinhardt
    fate/image : Modify aliaspix tests to also cover the encoder
    

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] tests/fate/image.mak
    • [DH] tests/ref/fate/aliaspix-bgr
    • [DH] tests/ref/fate/aliaspix-gray
  • fate/cover-art : Add test for muxing cover arts to FLAC

    29 août 2021, par Andreas Rheinhardt
    fate/cover-art : Add test for muxing cover arts to FLAC
    

    Also covers muxing and demuxing of nonstandard FLAC channel layouts
    and the multi-dim-quant option of the FLAC encoder
    (all of which was hitherto uncovered).

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] tests/fate/cover-art.mak
    • [DH] tests/ref/fate/cover-art-flac-remux
  • [ffmpeg C++ API] : How to copy a music file's cover image into another music file ?

    22 avril 2022, par Ananta

    I am having difficulties in copying a source music file's cover image into a destination music file. These two music files are in different formats (i.e, either mp3, flac, wav, or wma, different sampling rate). How should I implement the code for this ? I created a minimal code for this task below :

    &#xA;

    const char* src_path = "source.mp3";&#xA;const char* dest_path = "destination.flac";&#xA;AVPacket src_pic; &#xA;&#xA;// open the source path&#xA;AVFormatContext *src_ctx = avformat_alloc_context();&#xA;avformat_open_input(&amp;src_ctx, src_path, NULL, NULL);&#xA;&#xA;// find the first attached picture, if available&#xA;for (i = 0; i &lt; src_ctx->nb_streams; i&#x2B;&#x2B;)&#xA;   if (src_ctx->streams[i]->disposition &amp; AV_DISPOSITION_ATTACHED_PIC) {&#xA;      src_pic = src_ctx->streams[i]->attached_pic;&#xA;&#xA;// open the destination path&#xA;AVFormatContext *dest_ctx = avformat_alloc_context();&#xA;avformat_open_input(&amp;dest_ctx, dest_path, NULL, NULL);&#xA;&#xA;// Then, how to embed the &#x27;src_pic&#x27; into &#x27;dest_ctx&#x27;?&#xA;&#xA;  &#xA;

    &#xA;