
Recherche avancée
Autres articles (81)
-
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 (11620)
-
avformat/rtsp : Set port_off to zero for low min/max port range
4 juillet 2021, par Andriy Gelmanavformat/rtsp : Set port_off to zero for low min/max port range
Fixes :
$ ffmpeg -min_port 32000 -max_port 32001 -i rtsp ://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov -f null -
[1] 303871 floating point exception (core dumped)Reviewed-by : Martin Storsjö <martin@martin.st>
Signed-off-by : Andriy Gelman <andriy.gelman@gmail.com> -
Looking for a RTSP-server that can listen on a configured port and support subtitle or text streaming
15 août 2021, par GotItI'm looking for a RTSP-server that can listen on a configured port (8554 for example), then if I run FFmpeg with :




ffmpeg -f v4l2 -i /dev/video0 -c:v libx264 -intra -an -f rtsp
-rtsp_transport tcp rtsp ://192.168.1.10:8554/test




Then the RTSP-server will RECORD the video, and to play it, I just need to run it with :




ffplay -i rtsp ://192.168.1.10:8554/test




I need the RTSP-server to support TCP transport and H264 video encoder and any of subtitle or text encoder (mov_text, T.140, etc.) and stream from a live-video.


Live555 only streams from files (VOD).
simple-rtsp-server only support video and audio, no subtitle.
I'd prefer something open-source. Thank you so much.


-
Forwarding rtsp feed from one local port to another
11 août 2021, par Thabet Sabhaso let's say I have an rtsp server running on port 554, and when a certain command is received, i want the rtsp server to start forwarding the feed (using rtsp+tcp) to a service running on the same machine but on port 553 (Linux OS), is that possible via a CL command, or do I have to use something like ffmpeg ?


currently this is what is being used, but I feel like this is redundant since all we're doing is just forwarding the feed to another port on the same machine.


const ffmpegOptions = [
"-rtsp_transport", "tcp",
"-i", "rtsp://127.0.0.1:554",
"-codec", "copy",
"-f", "rtsp",
"-rtsp_transport", "tcp",
"rtsp://127.0.0.1:553"
]

const myProcess = spawn('ffmpeg', ffmpegOptions);



Thanks.