
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (111)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Installation en mode standalone
4 février 2011, parL’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
[mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)
Sur d’autres sites (10945)
-
Add a smooth streaming segmenter muxer
19 mars 2012, par Martin StorsjöAdd a smooth streaming segmenter muxer
-
Streaming .264 file while it is being encoded
1er décembre 2017, par 123435258I have been digging around on the internet for a solution of my problem but I still haven’t found any solution yet.
Let me describe my trouble.
I have an IP camera that is connected to the another system. The system has a UDP output and transmits every data that is taken from the camera at each 20ms in real-time.
I have written a Python code that takes the camera data from socket and turns it to a .264 video file while it is being encoded. To display it ;
I first create a rtp server for streaming and open the URL address in VLC and wait for the second command.
ffmpeg -i rtp://127.0.0.1:1234 -c copy -f flv rtp://127.0.0.1:1234/PSIA/Streaming/channels/2?videoCodecType=H.264
Then I give this second command as soon as I run my Python code.
ffmpeg -re -i C:\Python27\myVideo.264 -c copy -f rtp_mpegts rtp://127.0.0.1:1234 -c copy -f flv
What I would like to do is to display the video at real-time with 3 seconds delay forever. However, as mentioned above, the system gives the data at every each 20ms and ffmpeg can’t find the key frames to play the video at real-time at such a speed. I can display the video for 30 seconds with 5 seconds delay, then video turns into images in every 1s which is not a continuous video and which is not I want.
Any help would be appreciated. Thanks in advance !
-
Will streaming through RTSP affect normal UDP communication ?
8 mai 2015, par NyarukoI am programming a ground control station for a drone.
Originally all the data/command communication is through UDP between the PC and the drone.
Now I am trying to stream video from a IP camera I put on the drone, the video is 640*480 mpeg video.
And the protocol is RTSP, so I am thinking of using FFMPEG.
The IP camera, the drone and my PC is all connected to a router.
The Ip camera, the drone and my PC all have different IP address.My question is, in this case, usually, will the streaming affect my data/command communication through UDP and even cause it un-usable ?