
Recherche avancée
Autres articles (111)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
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 (11282)
-
FFmpeg causing AttributeError : __enter__ on Win10
11 juillet 2020, par MarciI have a python code which runs perfectly on win7, but i struggle for hours now making it work on my win10 laptop.


Before manually installing FFmpeg i receive the error


"assert _HAS_FFMPEG, "Cannot find installation of real FFmpeg (which comes with ffprobe)."
AssertionError: Cannot find installation of real FFmpeg (which comes with ffprobe)"



so i downloaded, unzipped FFmpeg and set up the PATH. From now on i always receive the following error :


with FFmpegReader(str(sourcepath)) as src:
AttributeError: __enter__



I red that this error has something to do with the open() function. But the code works fine on my other computer ?!


I would highly appreciate any hints. i am rather new to this field. Sorry if that is a senseless question.


-
ffserver streaming h.264 raw data
11 novembre 2014, par Samuel David HudsonI have a c++/openGL application which generate a .h264 stream using a hardware encoder (nvidia grid). Im using ffserver to serve the stream to be consumed via a url.
The application writes out the stream data to a file on disk, which gets added to as time goes by.
ffserver.conf
# Port on which the server is listening. You must select a different
# port from your standard HTTP web server if it is running on the same
# computer.
HttpPort 8090
<stream>
File "/home/ec2-user/demo/movie.h264"
NoAudio
Format mpegts
</stream>The problem i am having is that whenever you view the stream, it starts from the begining of the data, rather than from ’now’. I want the stream to be as realtime as possible.
Does anyknow know how i might achieve this ?
-
How to use FFMPEG to capture a browser's tab content
7 avril 2017, par rikiI’m working on a project where I need to record HTML5 animations that are going to play in different browser’s tabs.
So I’ve been reading a bit, and apparently it could be done using FFMPEG, maybe using the gdigrab device :
https://www.ffmpeg.org/ffmpeg-devices.html#gdigrabWhere you can even grab from a specific window (like record calc.exe using title=Calculator)
I want to use this logic to capture each of the multiple browser tabs contents. (or at least one) But I don’t know the Firefox/Chrome tabs "title" or if they even work as windows.
I’d also need to record audio, so I would need to either mix the computer’s output device with the video from the tab.
If anyone has more information on how I could do this, I would greatly appreciate it.
Thanks,