
Recherche avancée
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 (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (7722)
-
How to sample `audio/video bit rate and fps ` every second on ffmepg
25 février 2014, par pocI can dump the rtsp streaming into video file by
ffmpeg -y -t 5 -i rtsp://172.19.1.42/live.sdp -acodec copy -vcodec copy lala.avi
Now, I wanna sample the streaming's
audio/video bit rate and fps
every second and dumpinto a text file,I can write a script for helping the work ,How could I get it ?
-
How to sample `audio/video bit rate and fps ` every second on ffmepg or vlc
25 février 2014, par pocI can dump the rtsp streaming into video file by
ffmpeg -y -t 5 -i rtsp://172.19.1.42/live.sdp -acodec copy -vcodec copy lala.avi
Now, I wanna sample the streaming's
audio/video bit rate and fps
every second and dumpinto a text file,I can write a script for helping the work ,How could I get it ?
-
ffmpeg disconnects with different audio sample rate
11 juillet 2017, par HRGAm using ffmpeg transcoder tool to convert a streaming audio input to another format.The raw audio data comes from a input device in wav format (.wmv) which can be accessed via server port (ex.8080) . The audio format is in wav with 16bits/sample and sample rate of 6000 hz.
When I use ffmpeg to read this audio input with above specs and convert to another format it works fine.Ex.
ffmpeg -f s16le -ar 6000 -ac 1 -i http://local:8080/sampleaudio.wmv -f webm out.webmBut if i use fmmpeg to read the audio input at sample rate of 4000hz (other than the actual rate) ,it disconnects from the server always .
Ex.
ffmpeg -f s16le -ar 4000 -ac 1 -i http://local:8080/sampleaudio.wmv -f webm out.webmThe error in the ffmpeg console is "Stream ends prematurely at 194604, should be 4800044"
I know the input rate at which ffmpeg is reading and the actual audio output is different .But am curious to know
why ffmpeg is disconnecting from the server ,what is happening behind the scene.
Also how to enable logs for network connections(http,sockets..)
Thanks