Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (72)

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

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (11956)

  • Android radio stream metadata notification

    27 janvier 2016, par sNore

    i was looking for Android libraries which are able to fetch metadata stuff e.g. artist, title from radio streams. I’ve found these 2 libs which are capable of that :

    https://code.google.com/archive/p/streamscraper/
    https://github.com/wseemann/FFmpegMediaMetadataRetriever

    And there’s also ffmpeg available, where the libraries have first to be compiled for Android.

    The above libs haven’t a listener interface for getting informed about song changes. The only possible solution is to poll every couple of seconds, and check old artist and title with the new ones. But I think this will drain the smartphone batteries quite a lot.

    Is there a way to get notified if radio song changes ? Maybe with ffmpeg ?

  • avcodec/libdav1d : clear the buffered Dav1dData on decoding failure

    27 décembre 2024, par James Almer
    avcodec/libdav1d : clear the buffered Dav1dData on decoding failure
    

    Should ensure avcodec_send_packet() doesn't return EAGAIN in scenarios where it's not
    meant to (e.g., ffmpeg_dec.c where avcodec_receive_frame() is called in a loop to drain
    all produced frames before trying to submit more packets).

    Fixes ticket #11377.

    Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/libdav1d.c
  • Implementing hardware accelerated decoding on windows with FFMPEG

    24 juillet 2019, par sacha legrand

    Intel processor incorporates hardware acceleration capabilities for video encoding / decoding.

    I use :

    Intel 5 series HD graphics & Processeur Intel Core i7-620UE

    and/or

    Intel Gen9 HD Graphics Engine & Processor Intel Core i7-6600U

    So wich hardware acceleration should I use (H264, VC1, H265, etc.) to be more efficient ?

    The FFMPEG library provides everything you need to perform decoding.

    We accessed these hardware acceleration features by default ?

    Should I use a specific API or library ?

    I finnally find in
    https://trac.ffmpeg.org/wiki/HWAccelIntro
    It is Libmfx how seems the best for my case (Windows & Intel)

    Am I on the right way ?

    I should explaine all the possibility so if you have any other doc about that it’s could be cool.

    Thank you