
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (93)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 (...)
Sur d’autres sites (10010)
-
ffmpeg capture RTSP stream to hourly file
11 novembre 2020, par David PatrickI'm using ffmpeg to capture a RTSP stream to a file using the following command :



ffmpeg -i rtsp://[IP Address]:[port]/[URL] -vcodec copy -r 60 -t 2600 -y /[outputfile].mp4




This works ok and captures 60 mins fine. What I'd like to be able to do is :



- 

- Output hourly files, e.g.
capture1.mp4 capture2.mp4
etc. - Put the current timestamp as the overlay in the current file (currently
VLC says something like
LIVE555...
). I'd like to change this to
source + timestamp
. - Delete old mp4 files over x days old, e.g. keep files for 1 or 2 days









Is this possible in ffmpeg or do i need to put a script wrapper around the ffmpeg command ? If so, any examples of those I can re-use please ?
This is on Ubuntu linux using latest ffmpeg package and using
apt-get install ffmpeg
to install so it's built from source.


Thanks


- Output hourly files, e.g.
-
ffmpeg capture RTSP stream to hourly file
23 avril 2017, par David PatrickI’m using ffmpeg to capture a RTSP stream to a file using the following command :
ffmpeg -i rtsp://[IP Address]:[port]/[URL] -vcodec copy -r 60 -t 2600 -y /[outputfile].mp4
This works ok and captures 60 mins fine. What I’d like to be able to do is :
- Output hourly files, e.g.
capture1.mp4 capture2.mp4
etc. - Put the current timestamp as the overlay in the current file (currently
VLC says something likeLIVE555...
). I’d like to change this to
source + timestamp
. - Delete old mp4 files over x days old, e.g. keep files for 1 or 2 days
Is this possible in ffmpeg or do i need to put a script wrapper around the ffmpeg command ? If so, any examples of those I can re-use please ?
This is on Ubuntu linux using latest ffmpeg package and usingapt-get install ffmpeg
to install so it’s built from source.Thanks
- Output hourly files, e.g.
-
How to run ffmpeg to record a virtual screen from a different docker container
3 octobre 2022, par Maged MiladI using 2 docker containers to manage my application, one of them is for the application itself and it's rendered on a virtual screen using XVFB and the another one have ffmpeg which supposed to record this screen, so I managed to get them work together if both the application and ffmpeg on the same docker container but don't know how to do it if they're on a different docker containers.


so in main container I run


Xvfb :99 -ac -screen +extension RANDR -1920x1080x24 -nolisten tcp &



and on the ffmpeg container I run


ffmpeg -video_size 1024x768 -framerate 25 -f x11grab -i :99+100,200 output.mp4



I tried to change the host to
application_container_name:99+100,200
and tried to use the ip address of the maintain application like172.17.0.2:99+100,200
but both didn't work.