
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (76)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Ecrire une actualité
21 juin 2013, parPré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 ) (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (10574)
-
android - how to play two audio file at same time
29 janvier 2016, par Sajad NorouziI 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 AllenI 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 KiranI 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.