Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (109)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (10775)

  • How can I play an audio file while converting it with ffmpeg in Node.js ?

    18 août 2017, par Blake Allen

    I created a simple video-to-audio converter with ffmpeg for my discord.js bot :

    let stream = //an mp4 stream
    ffmpeg(stream)
     .toFormat("mp3")
     .stream(fs.createWriteStream("./audio.mp3"))
     .on("end", () => {
       connection.playStream(fs.createReadStream("./audio.mp3"))
     });

    This all works fine, but using .on() to play the file - only after it completely finishes converting - can take a while.

    Is there an efficient way to use connection.playStream to play the audio file or stream as the ffmpeg conversion is still happening ?

  • FFMPEG and RTMPDUMP is unable to play content from Red5 server

    1er juillet 2016, par Kiran

    I am using Red5 1.0.7-RELEASE(ubuntu 12.04) to understand the rtmp protocol. I tried "Publisher" demo to see the functioning. Live publish and play works fine in the "Publisher" demo page. But when I publish from demo page and play through FFMPEG : avplay rtmp ://localhost/oflaDemo/stream or
    RTMPDUMP : rtmpdump -v -r "rtmp ://localhost/oflaDemo/stream" -o - | "vlc" I see some problem. Only after I end publishing I see data in the FFMPEG or RTMPDUMP.

    In case of rtmpt, VLC says unable to open MRL when I can able to play data in Publisher demo page.

  • Cannot play audio with FFPLAY

    2 avril 2020, par Javier Urrestarazu

    I am trying to stream the sound of a Linux machine via UDP to a Windows 7 64 bit machine. The command for streaming the audio is :

    



    ./ffmpeg -f oss -i /dev/dsp -f mpegts udp://192.168.99.35:11222


    



    It seems to work well. However, when I try to play the audio with the following command :

    



    ffplay -fflags nobuffer udp://127.0.0.1:11222


    



    I get the following error : No more combinations to try audio open failed

    



    And nothing plays. I have no clue where the issue is coming from.