Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (70)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (10304)

  • avdevice/avdevice : fix return value of avdevice_list_devices()

    10 juillet 2022, par Marton Balint
    avdevice/avdevice : fix return value of avdevice_list_devices()
    

    According to API docs avdevice_list_devices(), avdevice_list_input_sources()
    and avdevice_list_input_sinks() should return the number of autodetected
    devices on success. This is redundant with AVDeviceInfoList->nb_devices so it
    was not noticed earlier that none of the underlying device list functions work
    like that.

    Let's fix it in generic code to make it in line with the API docs.

    Fixes ticket #9820.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavdevice/avdevice.c
  • Dynamically check (and change ?) audio file codec [closed]

    25 juillet 2024, par user2m

    Hey all I have a web app where users can upload audio files like mp3's, wavs and m4a's.&#xA;I'm simply using the default html audio player to render the audio.&#xA;A while back I started noticing that a sporadic few of the audio players were greyed out.

    &#xA;

    I went into my supabase backend to open the actual audio file and found that I was able to play the audio file&#xA;when I downloaded it to my PC.

    &#xA;

    Upon reading this thread (Why is this specific m4a audio file not playing on the )&#xA;it looks like the issue is the codec with some .m4a files.&#xA;Some m4a files are using the AAC (widely supported) codec and some are not.

    &#xA;

    Currently I have JS code that

    &#xA;

      &#xA;
    1. grabs the file blob
    2. &#xA;

    3. checks if the upload name contains mp3, wav or m4a
    4. &#xA;

    5. uploads the blob to supabase
    6. &#xA;

    &#xA;

    in between 2 and 3 I'd like to check that the codec of the blob is AAC and if possible change the codec (??)&#xA;I've asked CGPT for a solution but it point sme to FFMPEG and from reading the docs it looks like FFMPEG core is about 30MB to load...&#xA;(https://ffmpegwasm.netlify.app/docs/getting-started/usage/)&#xA;This seems like a lot to me - granted most of the app will have already been loaded by the time a user gets to this flow.&#xA;I just wanted to reach out and see if anyone has figured out a better solution

    &#xA;

  • How to encrypt webm file using Clear Key to play with Google's Shaka Player ?

    23 janvier 2017, par Nam Pham

    I’m developing a small system which will be used to streaming protected content over the web with MSE/EME API.

    This is some tools I’m using :

    I can create .webm file and package them using shaka-packager into mpd file in order to feed to shaka-player. But following by the Clear Key section in the Shaka docs I have to encrypt webm file require pair of KeyId and Key.
    By using webm_crypt, I can created encrypted content by follow this document on 2.2.7 but I have no idea how to get the key pairs for the shaka-player DRM system.