Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (72)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    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 (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (4591)

  • android - how to play two audio file at same time

    29 janvier 2016, par Sajad Norouzi

    I wanna create an karaoke android app. so far, user can listen to the song and record his voice. now I want to let user some editing like setting volume of his voice or setting Reverb effect. I have some library like ffmpeg and sox on android and don’t have problem for mixing two audio, but for setting volume or Reverb wanna play two audio file simultaneously using mediaplayer, however it’s not possible because android doesn’t let us play two audio file with mediaplayer at same time even with two different object of mediaplayer. so, what is the solution ?

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