Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (7)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • ANNEXE : Les extensions, plugins SPIP des canaux

    11 février 2010, par

    Un plugin est un ajout fonctionnel au noyau principal de SPIP. MediaSPIP consiste en un choix délibéré de plugins existant ou pas auparavant dans la communauté SPIP, qui ont pour certains nécessité soit leur création de A à Z, soit des ajouts de fonctionnalités.
    Les extensions que MediaSPIP nécessite pour fonctionner
    Depuis la version 2.1.0, SPIP permet d’ajouter des plugins dans le répertoire extensions/.
    Les "extensions" ne sont ni plus ni moins que des plugins dont la particularité est qu’ils se (...)

Sur d’autres sites (4939)

  • why doesn't avformat_find_stream_info return with mp3 files

    18 avril 2014, par user1379811

    I have built and am using the latest build of lame, x264 and ffmpeg in my c++ project.

    If I call avformat_find_stream_info with an mp3 file it doesn't return but if I use a .mp4 file instead avformat_find_stream_info returns fine.

    I have tried different mp3 files and all give the same problem. They all seem to start with id3 if that has any effect ?

    I can't read more than 1 frame of data from the mp3 file with avformat_find_stream_info commented out so I'm thinking it's important.

    Can anyone offer a reason for avformat_find_stream_info not returning ? There seemed to be a patch for an endless loop but it seems thats already in utils.c.

    I have also tried to read and decode the mp3 files directly using fread but then I get a mp3 missing header error.

    Thanks.

  • using ffmpeg -f ffmetadata to get metadata for a stream [on hold]

    23 avril 2014, par user645402

    I have a stream that I can get the metadata for using ffmpeg :

    ffmpeg -i <stream url="url"> -f ffmetadata -
    </stream>

    This works great for the first song, but then returns. The issue is that the stream is from a radio station which plays song after song - i.e. the metadata is changing as time goes on. However, this command will only give metadata for the song currently playing and then exit.

    I would like it to keep flowing the metadata as it updates in the stream.

  • FFProbe not sending custom Headers

    3 février 2017, par Aiden901223

    I am trying to use FFprobe with a custom header that enables me to access the multimedia information such as frame-rate, bit-rates and etc of an URL. Custom Headers (-headers) were set based on the ffmpeg documentation and tutorials examples.

    Command snippet :

    ffprobe -headers $'X-CloudFront-Secret: A-VALID-TOKEN' -v error -show_format -show_streams -print_format json -i "URL"

    It returns a 403 Forbidden message.

    cURL-ing the URL with the custom header yields a 200 Response.

    Am I setting the ffprobe custom header right ?

    Thank you !