Recherche avancée

Médias (1)

Mot : - Tags -/portrait

Autres articles (106)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

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

Sur d’autres sites (13209)

  • Play same audio file to two different sound cards simultaneously using android media player [on hold]

    15 décembre 2016, par Hardik

    I have one custom board( media player) running android4.2 OS on it and I need to add a feature that will play same audio to two different sound cards simultaneously.

    I have two output devices HDMI and TLV320aic3100 Codec.
    And Want to play Video and audio through HDMI and same audio should play through TLV codec. Audio through TLV codec should be in sync with HDMI video/audio.

    Right now I’m able to play audio through TLV codec by hard-coding sound card number in tinyalsa PCM code "pcm.c" which is used by HAL code of Android Media Player (by default this code will give audio to HDMI),
    but not able to provide audio to both sound cards simultaneously.

    I tried with creating thread in pcm code and writing incoming audio data to both sound card, By doing this HDMI going into under-run problem.

    Is there any way to provide same audio to both sound cards simultaneously using Android Media Player or any other options to try ?

  • hls : Report the current media sequence

    29 avril 2014, par Luca Barbato
    hls : Report the current media sequence
    

    Useful for debugging mostly.

    • [DH] libavformat/hlsenc.c
  • Concatenate dynamic media files on the fly using ffmpeg ?

    24 février 2019, par David

    I have several ts files which I need to concatenate while some of the media files are still being converted, below is the scenario :

    1. First .ts file ready and stored in named pipe
    2. Second .ts file still being processed by ffmpeg and will take some time to finish.
    3. Last .ts file ready and stored in named pipe

    What I would like to do now is to concatenate all these 3 files together (no re-encoding), in this case file(2) is still being converted. How can I achieve this ?

    The purpose is to send to a client (HTTP) the output chunks from concatenation without waiting for the whole process to finish.

    Thanks