Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (111)

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • 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 (7368)

  • Play playlist of audio on website using node to create a jukebox / radio app

    1er juillet 2022, par neff

    So I have some time on my hands and thought I would make myself a little jukebox / radio type app.

    



    It would be fairly simple, just a collection of MP3's on the server, one is chosen at random, it plays, on completion, the next one is chosen and plays. The front of this would just be a super simple page that has a player and displays the metadata.

    



    I don't really have any experience with server programming but I'm going to look in to Node, seems like it would be good for this. I've already written a little script in Python that chooses a song from a selection and plays it (using VLC at the moment) so it should be simple to port it to Node / js.

    



    Just wondering if someone could point me in the right direction for how to link the "player" with the "playlist".

    



    Looking in to it, I can only find solutions involving a client and server using shoutCast or ICEcast or similar - so the playlist streams audio to a shoutcast server, and the website is just a player looking at the shoutCast URL - that seems unnecessary for me, as the streaming and the site would be the same thing.

    



    New to a lot of this :) but I have time at the moment so happy to get stuck in !

    



    Thanks in advance

    


  • FFplay : WASAPI can't initialize audio client (FFmpeg 3.4 binaries)

    9 juillet 2022, par fve

    I am trying to playback a stream that is multicasted over RTP using ffplay on Windows 7 64 bits.
The computer that serves the audio over RTP runs :

    



    ffmpeg -re -f dshow -audio_buffer_size 15 -ac 1 -i audio="Mic in at front Mic-in (Realtek" -ar 8k -acodec pcm_alaw -vn -f rtp rtp://127.0.0.1:5000


    



    The client runs :

    



    ffplay rtp://127.0.0.1:5000


    



    While this was working correctly in release 3.3, release 3.4 fails with this error :

    



    SDL_OpenAudio (1 channels, 8000 Hz): WASAPI can't initialize audio client: CoInitialize has not been called.

No more combinations to try, audio open failed
Failed to open file 'rtp://127.0.0.1:5000' or configure filtergraph


    



    Anyone has an idea of whats going on ?

    



    Thanks

    



    UPDATE #1 :

    



    A workaround is to specify an alternate output driver.
Set SDL_AUDIODRIVER environment variable value to the driver you want to use.
Under windows 7, directsound and winmm both solved my issue.

    


  • Is there a way to use InputStream to get the media details

    13 mai 2019, par Naman

    I am currently accepting InputStream from a client of my server for a File uploaded via multipart/form-data.

    I am currently using ffmpeg-cli-wrapper library to use ffprobe and ffmpeg.

    The challenge I see up front is that the APIs exposed by the client doesn’t make use of a stream, rather a mediaPath. Is there a way/library similar to this which can provide me an FFProbe instance as shown in the usage example of the library.

    To add to the pain, I am aware of transforming the InputStream into a file and then passing the mediaPath. But that’s an unnecessary space on my processing disk and an additional step for cleanup as well.