
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (39)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (6370)
-
MAC's "say" command to MP3 [closed]
13 mars 2015, par lx0741I want to read a very long text with the SAY mac’s command (
say -f file.txt
), and to record the output tofile.mp3
. I thought about using ffmpeg to record all of it, but then i’ll need to wait for all the reading process to complete..I don’t really need to listen to it, so if there is a way to directly have an
mp3
file just by hitting enter, it would be great..There is also this project txt2mp3mac but i can’t use it in a shell script..
Thanks..
Update
Check this gist for a script that does it
-
How to merge audio and video streams with Popen pipes
22 mai 2017, par AbsulitI need to merge two different sources, one has video, the other has audio. None of them are local files, data arrives via websocket blob.
I have a Popen process for ffmpeg like this in Python
ffmpeg_process = Popen('/root/bin/ffmpeg -i - -i - -f flv out.flv, shell=True, stdin=PIPE)
I’m aware that sending video to the first
-i
works like this :ffmpeg_process.stdin.write(data)
So my question is, how do I send audio data to the second
-i
param via the stdin pipe ? -
FFMPEG command fails in php but runs in terminal [closed]
13 juillet 2021, par victor ukaforI'm writting some logic that requires video manipulation, each time i try to run ffmpeg command with Process (or some other php in-built function for running shell command), the command fails with WARNING : library configuration mismatch but it runs without any warning on my terminal. Some tutorials suggest I unistall libavcodec-ffmpeg-extra56 or libavcodec-ffmpeg-extra57 on machine. I have done that still no changes.