
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (63)
-
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 (6575)
-
PySceneDetect FFmpeg Not Available
14 août 2023, par Dmitriy PushkarevI already installed FFmpeg and this is available in terminal I can convert video and etc, but it's completely not available in PySceneDetect.


pip installed FFmpeg-python and FFmpeg library and FFmpeg itself in system.


PySceneDetect returns :


ffmpeg could not be found on the system. Please install ffmpeg to enable video output support.



I think trouble with path, but can't put path in PySceneDetect. I can use path to binary FFmpeg, only in ffmpeg-python library, like this and it's working


This code working fine :


Here i using only FFmpeg-python library


stream = ffmpeg.input('vi0.mp4')
stream = ffmpeg.filter(stream, 'fps', fps=10, round='up')
stream = ffmpeg.output(stream, 'vi1.mp4')
ffmpeg.run(stream,cmd='./ffmpeg')



But can't it to get work with PySceneDetect


print(scenedetect.video_splitter.is_ffmpeg_available())



return False


split_video_ffmpeg(video_path, scene_list, show_progress=False)



returns "ffmpeg could not be found on the system. Please install ffmpeg to enable video output support."


-
qt-faststart : Fix the signedness of variables keeping the ftello return values
29 octobre 2012, par Michael Niedermayerqt-faststart : Fix the signedness of variables keeping the ftello return values
These variables are assigned the return values of ftello, which
returns an off_t, which is a signed type. On errors, ftello returns1, thus make sure this error return value can be stored properly.
Signed-off-by : Martin Storsjö <martin@martin.st>
-
Extracting N frames per second using ffmpeg
13 juillet 2022, par Sangeeth Kumarffmpeg -i input.mp4 -vf trim=10.021295:22.621295 -r 1 frames/frame_%d.png


This returns 24 frames instead of 12