
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (61)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (5776)
-
ffmpeg url protocol - annoying issue with url_seek
7 juin 2014, par GieasI’m trying to add my own URL protocol to my improved dranger’s video player using ffmpeg.
The URLPRotocol is : http://www.ffmpeg.org/doxygen/2.1/structURLProtocol.html
It seems that (For some weird reason) ffmpeg calls my ’url_seek’ before the movie even starts.
The function prototype is the same as lseek’s :
int64_t my_url_seek(URLContext *h, int64_t pos, int whence)
FFmpeg first calls the function with the values : POS = 0 , WHENCE = 65536
According to ffmpeg’s docs the value 65536 (AVSEEK_SIZE) means that ffmpeg wants the video size - so, my server responses to it with the video size.
But after that, it tries to seek with weird values :
POS = 8827210, WHENCE = 0, POS = 9912, WHENCE = 0 and so on.. (Same values all the time)
Anyways, according to ffmpeg’s doc whence should return the current position of the file (measured from the beginning of the file in bytes) and that is what I’m giving him (Except special case when it wants the video size as I mentioned before) - but it still doesn’t work.I don’t get it. What is it trying to do ? It can’t really be my fault because I did just use dranger’s video player and registered my own protocol. anyone has any idea what’s going on here ?
-
Possible to stream video over 115kbps ?
15 mai 2014, par Arcadio Alivio SinceroI need some advice from people experienced with streaming video.
I have a task to put together a system that allows video coming from RS-170 (composite) video cameras and have them displayed on an iPad. The catch is that no wireless (no Wi-Fi, no bluetooth) is allowed. Only a wired interface.
The physical I/O options on an iPad are apparently extremely limited, but I did manage to come across a company named Redpark that makes an RS232-to-Lightning cable. So my proposed solution is to have the video feeds go into a box with software that digitizes and encodes the video, and then sends it over RS232 to the iPad using that cable. The catch here is that the maximum bandwidth on that cable is 115kbps.
My preliminary testing of this setup on a prototype system have been less than stellar so far. I set up two PCs, each with serial ports, and hooked them together with a null modem. I then set the baud rates of the ports to 115kpbs and then attempted to stream a web cam video feed over the serial connection in real-time using ffmpeg. The results weren’t very encouraging, but I at least did manage to get some sort of image to show up.
I guess I need to play around with the ffmpeg encoding options some more. But I need to ask : am I wasting my time with this idea, or should what I am asking here be possible ?
-
grabbing hevc h265 stream using ffmpeg
26 août 2021, par hendymanI have a problem when I try to grab h265 encoded video from ip camera using rtsp protocol.
I want to save stream from camera and i use
https://github.com/sahilchaddha/node-rtsp-recorder/
to do this. Almost all works perfectly but output video has green bars and I don't know why.

These are my parameters


ChildProcess {
 _events: [Object: null prototype] {},
 _eventsCount: 0,
 _maxListeners: undefined,
 _closesNeeded: 1,
 _closesGot: 0,
 connected: false,
 signalCode: null,
 exitCode: null,
 killed: false,
 spawnfile: 'ffmpeg',
 _handle: Process {
 onexit: [Function],
 pid: 96408,
 [Symbol(owner_symbol)]: [Circular]
 },
 spawnargs: [
 'ffmpeg',
 '-i',
 'rtsp://[...]',
 '-vcodec',
 'copy',
 'videos/cam1/Aug-26th-21/video/2021-8-26-5-51-13.mp4'
 ],
 pid: 96408,
 stdin: null,
 stdout: null,
 stderr: null,
 stdio: [ null, null, null ],
 [Symbol(kCapture)]: false
}



and result
image