
Recherche avancée
Autres articles (105)
-
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 (...) -
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 (...) -
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 (12145)
-
Streaming h264 from a named pipe to a browser (how to set up the webserver)
22 août 2020, par DeanI have a h264 stream from a webcam : I set up this stream from a C library with
mkfifo
and I can display it with mplayer with the following line

execlp("xterm", "xterm", "-e", "mplayer", "-demuxer", "h264es", fifo_name, "-benchmark", "-really-quiet", NULL);



this will open an xterm window with an mplayer instance demuxing a h264 stream from the named pipe into it.


I must, somehow, stream this to a browser (one client is enough). Is there any way to achieve this by setting up a webserver on this same local machine, reading from this named pipe and sending the h264 stream to a remote browser ?


-
How to pipe openCV images to ffmpeg ?
23 septembre 2020, par vishwas.mittalWe are generating 4-channel
png
images one-by-one, and we want to pipeline it to FFmpeg to encode to WebM, with an audio file.

How can we do that with optimum speed ? (My target is >1x—more that better).


-
how to run python opencv using node js and pipe opencv output to ffmpeg and pipe ffmpeg output to nodejs
31 octobre 2020, par R Rconst express = require('express')
const app = express()


app.get('/', (req, res) =>


const { spawn } = require('child_process');
const pyProg = spawn('python', ['./ml.py']);
pyProg.stdout.on('data', (data) => {
 console.log(`stdout: ${data}`);
 });



)


app.listen(4000, () => console.log('Application listening on port 4000 !'))


#capture.py