
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (77)
-
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (5667)
-
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.




-
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 ? -
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