
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (82)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)
Sur d’autres sites (11625)
-
Revision a8b73616b3 : Re-enable datarate tests for speeds 5 and 6. Changed a parameter to make speed
4 avril 2014, par Marco PaniconiChanged Paths :
Modify /test/datarate_test.cc
Re-enable datarate tests for speeds 5 and 6.Changed a parameter to make speed 5 pass, and
valgring issue for speed 6 fixed :
https://code.google.com/p/webm/issues/detail?id=740Change-Id : I5b804b08069e29df3f08b9ec37f5b80151b4c910
-
fftools/ffmpeg : fix the wrong bitrate and speed stats
20 octobre 2020, par Limin Wangfftools/ffmpeg : fix the wrong bitrate and speed stats
The bitrate and speed stats are wrong if the copyts is enabled.
Please test with below command :
wget http://samples.mplayerhq.hu/MPEG2/foxksaz.ts
./ffmpeg -y -copyts -i ./foxksaz.ts -c:v libx264 -x264opts \
nal-hrd=cbr:force-cfr=1 -b:v 3500k -minrate 3500k -maxrate 3500k -bufsize \
1000k -c:a mp2 -muxrate 4500k -vframes 1000 test.tsbefore :
frame= 1000 fps=112 q=-1.0 Lsize= 9063kB time=09:10:12.41 bitrate= 2.2kbits/s speed=3.7e+03x
after :
frame= 1000 fps=112 q=-1.0 Lsize= 9062kB time=00:00:15.78 bitrate=4703.4kbits/s speed=1.77xSigned-off-by : Limin Wang <lance.lmwang@gmail.com>
-
FFmpeg RTSP to mp4 recording speed raises to x60 when camera microphone is ON
20 juin 2022, par przemochI'm working with some kind of recorder that uses FFmpeg to capture RTSP stream from various IP cameras. It used to work fine on every camera I tried. That were cameras from various manufacturers, but the configuration was pretty the same.

1080p, ~10 fps, H.264, ~12000 kbps, microphone OFF


Recently, I faced a problem with recording process on some Dahua cameras, when I turned the microphone ON.


Normally I use
segment
argument to get 60 s video clips, and when microphone is ON,speed
parameter grows up to x60 what causes saving clip almost every 1 s. This problem is even stranger as I don't capture audio (-an
option), and it occurs only on some Dahua models and doesn't show up on other models.

My command is


ffmpeg -rtsp_transport tcp -i 'rtsp://<user>:<password>@' -vcodec copy -an -dn -y -segment_time 60 -strftime 1 -reset_timestamps 1 -f segment %Y-%m-%d-%H-%M.mp4
</password></user>


This problem starts in 2-5 minutes since I change camera settings event if the recording process is already running.
The log from ffmpeg when problem shows up is following :


frame= 609 fps= 10 q=-1.0 size=N/A time=01:01:01.64 bitrate=N/A speed= 63x
frame= 609 fps= 10 q=-1.0 size=N/A time=01:01:01.64 bitrate=N/A speed= 63x
frame= 625 fps= 10 q=-1.0 size=N/A time=01:01:03.24 bitrate=N/A speed=61.4x
frame= 625 fps= 10 q=-1.0 size=N/A time=01:01:03.24 bitrate=N/A speed=61.4x
frame= 630 fps= 10 q=-1.0 size=N/A time=01:01:03.76 bitrate=N/A speed=60.8x
frame= 630 fps= 10 q=-1.0 size=N/A time=01:01:03.76 bitrate=N/A speed=60.8x
frame= 641 fps= 10 q=-1.0 size=N/A time=01:01:04.85 bitrate=N/A speed=59.8x
frame= 641 fps= 10 q=-1.0 size=N/A time=01:01:04.85 bitrate=N/A speed=59.8x



I've tried all audio codecs available for this camera



Camera model is Dahua IPC-EW5541-AS. The same problem is on Dahua IPC-HDBW4231F-AS, but IPC-HDW4433C-A works just normal.


I'm trying to understand what can be wrong here, and how to resolve this issue. It would be really useful for me to be able to turn on microphone and record audio stream in parallel (with other script)


Do you have any idea ?