Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (44)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (7177)

  • 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.
I'm simply using the default html audio player to render the audio.
A while back I started noticing that a sporadic few of the audio players were greyed out.

    


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

    


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

    


    Currently I have JS code that

    


      

    1. grabs the file blob
    2. 


    3. checks if the upload name contains mp3, wav or m4a
    4. 


    5. uploads the blob to supabase
    6. 


    


    in between 2 and 3 I'd like to check that the codec of the blob is AAC and if possible change the codec (??)
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...
(https://ffmpegwasm.netlify.app/docs/getting-started/usage/)
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.
I just wanted to reach out and see if anyone has figured out a better solution

    


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

  • Displaying javacv Frame class

    3 avril 2018, par shubham jaiswal

    I want to display a javacv Frame object directly into a gui container without converting into a buffered image or any of the jpeg/bmp as mentioned in https://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/Image.html. Is there any way in which it can be achieved ?

    I want to do this as I have multiple video streams to be displayed.Currently the best performance that could be achieved is using JFrame and pixelwriter.It consumes around 8% CPU. I want to bring it to below 4% and so need a method to display the Frame object directly.

    If anyone could suggest an alternative GUI or language, it still helps.

    Regards & Thanks.