
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (106)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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 (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (13726)
-
FFmpeg write silence if there is no data in pipe:0
15 juillet 2023, par Oleksandr PetrenkoI have an ffmpeg process that continiously writes
PCM
data from standard input to anmp3
file. The problem is that sometimes there can be pauses in data being sent to ffmpeg. Pauses may be very large, even up to an hour, but process is never closed. I want to get ffmpeg to write silence to file if there is no data inpipe:0
. Is it possible to do only with ffmpeg or I need to implement it on my side ? If it is possible, then how can I do that ?
I tried to use some parameters and filters but I didn't found the thing I need.

I'm new to ffmpeg and working with audio so I will be glad to see any assistance.


-
Is it possible to pipe ffmpeg's output to sox ?
26 avril 2023, par MarcusI'm trying to generate a spectrogram with sox, from ffmpeg's output.


I can do it in separate steps, but I'd like to do it in a single one. Is it possible ?


When I try :


ffmpeg -i input.m4a -f wav - | sox -t wav - -n spectrogram



I get an error :


sox WARN wav: Premature EOF on .wav input file



-
Output result of concat demuxer to pipe
19 mars 2023, par ZPearsI am trying to output the results of an ffmpeg call that concatenates videos to a pipe. Here's the command :


ffmpeg -protocol_whitelist https,file,tls,tcp -f concat -safe 0 -i <(for f in "/path/to/file1.mp4" "/path/to/file2.mp4"; do echo "file $f"; done) -c copy -



When I run this, I get
Unable to find a suitable output format for 'pipe:'
.

From other searches, my understanding is that I need to specify an output format via the
-f
flag, but I'm not sure how to do that given that I already haveoutput
as my-f
flag value.

Does anyone have any tips for this ?