
Recherche avancée
Autres articles (85)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
(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 (...)
Sur d’autres sites (5775)
-
ffmpeg feeding mp4 file to rtsp stream
20 mai 2019, par damini chopraI am trying to feed a mp4 file from ffmpeg to rtsp stream using the command on centos 7 :
from console 1 : ffmpeg -i space.mp4 -vcodec libx264 -tune zerolatency -crf 18 http://localhost:8050/feed1.ffm
from console 2 : I have started ffserver and it is started listening.
But when i open http://x.x.x.x:8050/feed1.ffm in browser it shows error :
File ??feed1.ffm ? not found
My ffserver.conf file is attached
-
RTSP Streaming on Jetson Xavier NX, Ubuntu 20.04 [closed]
12 décembre 2023, par Jani am working on a project, where i want to create a rtsp live server from a USB Camera.
To do that i downloaded the mediamtx rtsp server.


Then i am pushing the stream from the camera to the rtsp server, and display it using ffplay, or OpenCV in C++.


This is working, however i get a very low quality, and a delay of up to 1 second.


Is there any way to improve the delay ? If possible i would like to have the same quality and delay as if i read it with gst-launch-1.0.


The command for ffmpeg was


ffmpeg -i /dev/video0 -s 1280x720 -vsync 0 - f rtsp rtsp://localhost:8554/mystream



I also tried to utilize the hardware acceleration with cuda


ffmpeg -i /dev/video0 -s 1280x720 -vsync 0 -hwaccel cuda -hwaccel_output_format cuda -f x11grab -fflags nobuffer -i :0.0+0.0 -preset ultrafast -vcodec libx264 - tune zerolatency -g 1 -omit_video_pes_length 0 - f rtsp rtsp://localhost:8554/mystream



With this I get a better quality, but the delay is still very bad.


Any ideas on how to get a live stream with < 100ms ?
Did I maybe miss out some additional parameters for ffmpeg that resolve that problem ?


-
ffmpeg UDP stream incomplete using WEBM (VP9)
21 janvier 2018, par DerLarsI’m trying to encode a raw (YUV) video into VP9 and to stream it with ffmpeg via UDP.
Sender command :
ffmpeg -f rawvideo -pix_fmt yuv420p -s:v 352x288 -r 25 -i ReferenceVideo_200Frames.yuv -c:v libvpx-vp9 -lossless 1 -f webm udp ://localhost:1337
Receiver command : (started first)
ffmpeg -i udp ://localhost:1337 -vcodec copy ReferenceVideo_200Frames_Streamed.webm
The testvideo used for this has exactly 200 Frames.
The final output of the sender is :
frame= 200 fps= 14 q=0.0 Lsize= 7918kB time=00:00:07.96 bitrate=8147.3kbits/s speed=0.574x
video:7912kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead : 0.064364%But as soon as the sender finishes, the receiver gets stuck at : frame= 181 fps= 13 q=-1.0 size= 5226kB time=00:00:07.20 bitrate=5945.5kbits/s speed=0.531x
The final streamed video is now incomplete.
So my question is : What am I doing wrong that the stream is incomplete ? Did anyone face this issue too and was able to fix it ?
Many thanks in advance.