Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (45)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (8377)

  • Evolution #3528 : Apporter un Compagnon-Avertissement optionnel pour le premier article d’un nouve...

    9 février 2021, par cedric -

    on ferme, c’est gérable dans un plugin etc

  • Is this generated in Adobe Premier or After Effects ? [closed]

    13 avril 2021, par Ryan

    Can someone please tell me if this JSON file is or can be exported using after effects or premier pro ? I really cant figure this out. This is a JSON file which becomes a part of a template file which is used to render a .mp4 using FFMPEG Lib in an android app.

    


    JSON CODE

    


  • creating a jack client from inside a docker container

    19 novembre 2018, par unameuname

    I use jack to route audio between multiple sound cards in my pc.
    To record the audio i use a very convenient FFmpeg command which creates a writable jack client :
    ffmpeg -f jack -i  -strict -2 -y .
    so far this works very well.

    The problem starts here :

    I also have an nginx docker which records my data and makes it available for streaming. when trying to use the same command inside the docker i get the following error :"Unable to register as a JACK client".

    I started to look in to the FFmpeg code and found out that the FFmpeg command calls the jack_client_open command from the jack API, which fails.

    Seems like there is some kind of a problem in the connection between the FFmpeg request from inside the docker to the jackd server running on the host.

    Is there a simple way to create a connection between the two [exposing ports] ?

    (I saw some solutions like netjack2, but before creating a more complex server-client architecture i’d like to find a more elegant solution).

    Thanks for the help !