Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (77)

  • 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 ;

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

  • avcodec/mips : fix type mismatch in h264dsp_msa.c

    18 juillet 2020, par Shiyou Yin
    avcodec/mips : fix type mismatch in h264dsp_msa.c
    

    gcc warning : assignment from incompatible pointer type.

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

    • [DH] libavcodec/mips/h264dsp_mips.h
    • [DH] libavcodec/mips/h264dsp_msa.c
  • C - FFmpeg changing the output stream codec_tag

    12 octobre 2020, par emdou

    I'm having fun with the FFmpeg library to better undestand it. A came across a hiccup when transmuxing from an mp4 to an mkv format. The error being that the mp4a tag is not supported :

    &#xA;

    [matroska @ 0000000002f100c0] Tag mp4a incompatible with output codec id &#x27;86018&#x27; ([255][0][0][0])&#xA;

    &#xA;

    Now I handle it simply by changing the codec_tag in the output stream. To do so, I check the supported AVCodeTag structs in the AVOutputFormat of the output AVFormatContext. In my example I have :

    &#xA;

    Video: avc1  -> Unsupported by mkv but does&#x27;t make a fuss about it (changed to H264 tag 875967048)&#xA;Audio: mp4a  -> Unsupported by mkv and refuses transmuxing if not changed (changed to 0)&#xA;

    &#xA;

    For the .ts format neither is a supported codec tag but transmuxing works fine (mostly).

    &#xA;

    The error is raised when trying to write the output file header.

    &#xA;

    I'm really having trouble understanding what changing the codec_tag really does during transmuxing. What is really happening under the hood ?

    &#xA;

  • Anomalie #4635 (Fermé) : Changement de jointures des documents en 3.3

    21 janvier 2021, par jluc -

    Une boucle

    [
    


    est devenue incompatible avec le nouveau spip3.3.

    Le squelette la contenant est inclu par :

    documents,objet=truc,id_objet=#ID_TRUC,env,ajax=documents>
    

    Maintenant l’inclusion chope l’id_rubrique du truc et produit un gros MYSQL qui échoue :

    SELECT 0+documents.titre AS num, documents.date, documents.id_document, L5.mime_type, L1.id_objet AS id_article, L1.id_objet AS id_rubrique, documents.titre, documents.fichier, L1.id_objet, L1.objet
    FROM spip_documents AS `documents`  
    INNER JOIN spip_types_documents AS L5 ON ( L5.extension = documents.extension ) 
    INNER JOIN spip_documents_liens AS L4 ON ( L4.id_document = documents.id_document ) 
    INNER JOIN spip_documents_liens AS L3 ON ( L3.id_document = documents.id_document ) 
    INNER JOIN spip_documents_liens AS L1 ON ( L1.id_document = documents.id_document )
    WHERE (documents.taille > 0 OR documents.distant=’oui’)
        AND (L1.id_objet = 3)
        AND (L1.objet = ’rubrique’)
        AND (L3.objet = ’truc’)
        AND (L4.id_objet = 19640)
        AND (documents.extension  IN (’png’,’jpg’,’gif’))
        AND (documents.id_document NOT IN (’’))
    GROUP BY documents.id_document
    ORDER BY num, documents.date
    

    Avant, je ne sais pas pour quelle raison mais la boucle n’accrochait pas la rubrique du "truc".
    Pour régler, j’ai supprimé les critères id_article ? et id_rubrique ?.