
Recherche avancée
Autres articles (74)
-
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 (...) -
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 (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (6273)
-
SOLVED - IP camera - Reading live ASF video stream
30 mai 2014, par Emmanuel BrunetI’m trying to read a video stream from an IP camera and store it on disk as several sequential files in MP4 format. I’m using Debian 7.5 with ffmpeg 2.2.
Let’s assume the camera DNS name is webcam and, the user account / password is account / password
Input
the camera input stream is
ffprobe http://account:password@webcam/videostream.asf
Input #0, asf, from 'http://account:password@webcam/videostream.asf':
Duration: N/A, start: 0.000000, bitrate: 32 kb/s
Stream #0:0: Video: mjpeg (MJPG / 0x47504A4D), yuvj422p(pc), 640x480, 25 tbr, 1k tbn, 1k tbc
Stream #0:1: Audio: adpcm_ima_wav ([17][0][0][0] / 0x0011), 8000 Hz, 1 channels, s16p, 32 kb/sffmpeg conversion
This command opens the output file but doesn’t read / write anything.
ffmpeg -y -i http://account:password@webcam/videostream.asf -t 30 -c:v libx264 -c:a libfdk_aac -f mp4 ~/output.mp4
The process completes successfully and writes 1.1M to the output file.
Issue
When I open the /output.mp4 video (in totem), no image is displayed but a gray background but the progess bar moves forward until the end of the video.
Any idea ?
for reminder I also would like to save data to a disk file which upon a predefined amount of time should rotate to another output file.
Thanks in advance
-
IP camera - Reading live ASF video stream [on hold]
4 juin 2014, par Emmanuel BrunetI’m trying to read a video stream from an IP camera and store it on disk as several sequential files in MP4 format. I’m using Debian 7.5 with ffmpeg 2.2.
Let’s assume the camera DNS name is webcam and, the user account / password is account / password
Input
the camera input stream is
ffprobe http://account:password@webcam/videostream.asf
Input #0, asf, from 'http://account:password@webcam/videostream.asf':
Duration: N/A, start: 0.000000, bitrate: 32 kb/s
Stream #0:0: Video: mjpeg (MJPG / 0x47504A4D), yuvj422p(pc), 640x480, 25 tbr, 1k tbn, 1k tbc
Stream #0:1: Audio: adpcm_ima_wav ([17][0][0][0] / 0x0011), 8000 Hz, 1 channels, s16p, 32 kb/sffmpeg conversion
This command opens the output file but doesn’t read / write anything.
ffmpeg -y -i http://account:password@webcam/videostream.asf -t 30 -c:v libx264 -c:a libfdk_aac -f mp4 ~/output.mp4
The process completes successfully and writes 1.1M to the output file.
Issue
When I open the /output.mp4 video (in totem), no image is displayed but a gray background but the progess bar moves forward until the end of the video.
Any idea ?
for reminder I also would like to save data to a disk file which upon a predefined amount of time should rotate to another output file.
Thanks in advance
-
Streaming - How do you re-encode a twitch stream into a live hls-stream with custom framerate, codec, and resolution using ffmpeg ? [closed]
17 février 2017, par shayanFor example I could receive a twitch 720p/60fps (I have the link to the .m3u8 file) stream and encode it down to 360p/60fps for live viewing. I have used
ffmpeg
andyoutube-dl
for simple tasks but i don’t know how I can achieve this.