
Recherche avancée
Autres articles (76)
-
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" (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (7989)
-
Can you convert a video to an audio file in python without saving to a file ?
31 janvier 2017, par user2983738For a python web project I receive a video file through a flask interface.
Now to do analysis, I need to extract the audio file from it.Problem is that I can’t save the video to file first, which seemingly eliminates using ffmpeg as it requires a link to a file location.
Are there any python solutions that would allow me to pass and return audio/video files using objects only ?
Thank you in advance
-
Running batch file from C# causes file not found error [on hold]
29 juillet 2018, par user10152616I am streaming an IP camera using the program FFMPEG. I made a C# windows sform app to restart the FFMPEG process if it stops running. The C# app kills the process and starts a batch file which runs the FFMPEG command. It works great. However, I wanted to change the FFMPEG command so that it loads a .acv color file to correct some haze in the image. The problem is FFMPEG says file not found when it tries to load the .acv file. FFMPEG and the .acv file are in the same directory so I don’t see how this is possible. The batch file works fine if I double click on it. It’s only when run from the C# program that FFMPEG can’t find the .acv file.
Any help greatly appreciated,
Thanks
-
How to find currently streaming file in ffmpeg stream that uses a file list
27 février 2021, par DigitalDisasterI am using ffmpeg to stream to an RTMP server. I am using the option to provide ffmpeg a text file with a list of files to stream. My file looks like this :


ffconcat version 1.0
file 'stream_file1.flv'
file 'stream_file2.flv'
file 'stream_file3.flv'



It loops through these files while streaming. Is there a way to programmatically find out when ffmpeg switches between each file ? Either from ffmpeg dumping some logs that I can injest, or by using python to check the state of the stream every second ?