Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (59)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (6666)

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