Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (107)

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (12440)

  • extracting HEVC bit stream data from MPEG-TS

    18 février 2015, par userDtrm

    I’m building a custom MPEG-2 TS demuxer to extract HEVC encoded bit streams. My requirement is to extract the PES data streams encapsulated within the MPEG TS packets, by stripping off the MPES TS and PES header information. I cannot use ffmpeg in this case since I need custom manipulations within the process.

    I was able to extract TS header information, but the I facing issues in extracting the data elements. Specifically, how the PES header can be removed to get the data.

    For example, when the payload unit indicator is 1 and payload available flag is 1, it doesn’t appear that any payload is available.

    Please let me know how this can be done and really appreciate if anyone can point me to some appropriate resources.

    Thanks

  • FFMPEG audio sample data

    13 octobre 2015, par Nghĩa Trương Thanh

    I’m beginner to FFMPEG API and I need to process audio sample.
    I see that audio sample data stored in AVFrame->data[0], but I don’t know how audio sample stored in FFMPEG AVFrame.

    For example :
    There are 2 channels,

    frame->nb_samples = 64,
    frame->linesize[0] = 256.

    I don’t know how audio sample data stored in frame->data[0].
    Thanks,

  • avformat : Append data in fill_buffer() when possible

    30 juin 2013, par Michael Niedermayer
    avformat : Append data in fill_buffer() when possible
    

    Data is appended in fill_buffer() when there is sufficient space left
    and the data pointer only reset when needed.
    Previously the data pointer was more often reset, loosing more seekback
    space than otherwise needed.

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

    • [DH] libavformat/aviobuf.c