
Recherche avancée
Médias (10)
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (44)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (6827)
-
Running Live streaming of local user using ffmpeg at Web plateform
23 décembre 2019, par Sneha MakwanaI am using below command to stream my live desktop screen.
ffmpeg -f x11grab -r 1 -loglevel panic -s `xdpyinfo | grep 'dimensions:'|awk '{print $2}'` -i $DISPLAY -qscale 0 -f mpegts udp://192.168.3.151:1111
udp ://192.168.3.151:1111 - this is my streaming URL
I can see live streaming in the parole media player (in Linux platform), but I can’t see this in a cross-network (i.e from windows PC - in the same network)
Is there any web platform so I can see my streaming from anywhere (either windows or linux) just using unique streaming URL or do I need to change my streaming command or method ?
Any help is much appreciated
-
Running an .exe on cmd line from a visual studio c++ project
28 novembre 2017, par Pop24BACKGROUND
I have a visual studio c++ project "VideoAnalyser" which analyses a video for specific features based predominantly on OPENCV.
I now want to run this project against a large directory of video files. The issue I have is that they must first be converted to .avi file format in order to utilise the OPENCV functions within my project. I can do this with FFMPEG. It is a large directory and i do not want to create duplicates of every video file with the format changed. Rather, I’d take the video file, convert it, then run the "Video Analyser" against it destroy the reformatted file and then move onto the next video file and repeat. I can run FFMPEG independantly on the command line with no issues, however I’m unsure how to integrate this into my "Video Analyser" project which leads to...
MY QUESTION
How do I get my "VideoAnalyser" c++ project to run the FFMPEG exectuable through the cmd line ?
-
ffmpeg RTSP to RTMP - Syntax error when running in Python 3
9 avril 2020, par Walshie1987I'm trying to convert one of my CCTV RTSP streams to RTMP so I can add it onto a website. I've read many articles and understand that ffmpeg for Ubuntu 18.04 is the way to go.



I my script I've added the following code into Python 3.7 :



ffmpeg -i "rtsp://xx.xxx.xx.x:554/user=admin&password=123@&channel=1&stream=0.sdp" -f flv -r 25 -s 640x480 -an "rtmp://localhost:1935/uid/1/camera1"




but I get a syntax error in the quote mark at the end of the first link (rtsp link) I've searched for hours and can't see what anyone has mentioned this before. I've also reviewed the ffmpeg documentation and can't see any issues.



Please can anyone point me in the right direction ?



Thanks
Chris