
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (38)
-
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 (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
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 (4495)
-
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.
-
Decoding h.264 in node.js without ffmpeg and send it to front or save it in fs
5 mars 2019, par JT.v26I’m doing the final project of a bootcamp.
The project consists of controlling a drone (Tello) with a mobile phone. So for this project I’m using react native. In which I insert a node.js inside the application (Node.js for Mobile Apps React Native) since the drone creates a wifi and I lose internet access to connect to a remote server.
All right so far, the drone has three udp ports enabled on the sdk to receive instructions, send status and send video.
The video gives it to me in raw.I did a test on the computer, downloading ffmpeg and converting that data and I could effectively have the video retransmission.
My questions are :
Is there any way I can use the same technique on the mobile without needing ffmpeg ?
Is there any way to import ffmpeg into android and communicate with nodejs ?
Is there any other solution where I can use another node that doesn’t have to be on the phone ?
Or you may even find some other solution to address this problem.
Thank you very much in advance