Recherche avancée

Médias (0)

Mot : - Tags -/serveur

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (72)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (10857)

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

  • 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

    


  • 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