
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (72)
-
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (4437)
-
Dynamically check (and change ?) audio file codec [closed]
25 juillet 2024, par user2mHey 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


- 

- grabs the file blob
- checks if the upload name contains mp3, wav or m4a
- uploads the blob to supabase








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 PhamI’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 :
- FFMPEG
- Google’s Shaka-Packager
- webm_crypt
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
andKey
.
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 jaiswalI 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.