Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (92)

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

Sur d’autres sites (6081)

  • lavf/matroskadec : Normalize noncompliant A_QUICKTIME/V_QUICKTIME private data

    10 janvier 2016, par Mats Peterson
    lavf/matroskadec : Normalize noncompliant A_QUICKTIME/V_QUICKTIME private data
    

    This patch adds a new static function get_qt_codec() that takes care of
    the initial retrieval of the fourcc and codec ID for A_QUICKTIME and
    V_QUICKTIME. It also normalizes noncompliant private data found in some
    older files that incorrectly starts with the fourcc by expanding/shifting
    the data by 4 bytes, and storing the data size at the start. This is
    necessary in order for the rest of the code in the A_QUICKTIME and
    V_QUICKTIME blocks (and most likely other code as well) to correctly
    parse the private data.

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

    • [DH] libavformat/matroskadec.c
  • Added process method to the data argument.

    24 avril 2013, par blueimp
    m js/jquery.fileupload.js
    
    Added process method to the data argument.
  • FFMPEG API Two Mono stream frames data to a dual channel stereo frame

    22 mai 2018, par Debendra Modi

    I am trying to interleave two mono frames data to a single stereo frame. The mono frame pointers are in_frame1 and in_frame2 and the stereo out frame pointer is out_frame. The sample format for both the in frames and the out frame is AV_SAMPLE_FMT_S16.

    The number of samples in each frame (both in and out) (nb_samples) is 160 and the linesize[0] for the in_frames are 320 each and the linesize[0] for out frame is 640.

    byte*ptr = out_frame->data[0];
    byte *ptr1 = in_frame1->data[0];
    byte*ptr2 = in_frame2->data[0];

    for(int k = 0; k &lt; out_frame->nb_samples; k++)
    {
    //Take two bytes from the first mono frame
    *ptr++ = *ptr1++;
    *ptr++ = *ptr1++;
    //Take next two bytes from the second mono frame
    *ptr++ = *ptr2++;
    *ptr++ = *ptr2++;
    }

    The out audio is however the same for both the channels (the first mono audio or the second mono audio). The out has both channels but the same audio on both channels.

    How can I copy the two mono frames data to the stereo frame data so that each channel audio contains the audio of the two input streams ?

    Thanks in advance.