
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
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
Autres articles (112)
-
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 (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (12030)
-
Recorded by FFMpeg Video doesn't show the statistics in details
28 novembre 2019, par okandnmzI use the FFMpeg to record the video I received as input with "Pipe". Although the recording process was successful after recording, no statistics, details are given in the details tab (Right click to recorded video -> properties -> details tab) (Windows 10)
My FFMpeg commands something like that :
ffmpeg -vsync 1 -i %PIPE% ....
For this problem, I’ve already tried the following commands :
-metadata ....
-vstats ......Probably i misunderstood that commands so in the result both of them is not working. Should i specify that values (title, fps, bitrate...) in somewhere and for that aim is there any commands ?
(the recorded video source is not the existing file, its live stream) -
Select Input device in FFMPEG direct show
1er mars 2014, par M.YazdianI want to select my camera for input video through dshow in FFMPEG.
I can do it, But I like to do that by use webcam ID not webcam name...!!!ffmpeg -f dshow -i video-"A4tech USB Camera" -f flv rtmp://192.168.1.2/live/Camera1
In the dshow I should set the name of webcam in the video argument, So I need to set the device number to select webcam.
For example Webcam number 4 instead video="A4tech USB Camera".
Please advise to do that
Thanks in advance.
-
Use ffmpeg to show a webcam live stream in a browser
20 juillet 2020, par ToastI have a webcam that is connected to a server and I'd like to view a live stream of it in a web browser.


I'd like to include a
video
tag like this :

<video></video>



What is an
ffmpeg
command that will send a video stream to browser clients ?
I managed to record a video to disk with this command :

ffmpeg -f v4l2 -i /dev/video0 output.mkv



I'm not sure if
rtsp
andffmpeg
are a good choice and I'm open for alternative suggestions.
I'm looking for a solution that is simple to setup and demo. Scalability and support for older browsers don't matter and audio isn't needed. I'd prefer a solution that sends compressed video instead of individual images (MJPG).