Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (82)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately 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, par

    Mediaspip 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, par

    Le 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 Paniconi

    Changed 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=740

    Change-Id : I5b804b08069e29df3f08b9ec37f5b80151b4c910

  • fftools/ffmpeg : fix the wrong bitrate and speed stats

    20 octobre 2020, par Limin Wang
    fftools/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.ts

    before :
    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.77x

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] fftools/ffmpeg.c
  • FFmpeg RTSP to mp4 recording speed raises to x60 when camera microphone is ON

    20 juin 2022, par przemoch

    I'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.&#xA;1080p, ~10 fps, H.264, ~12000 kbps, microphone OFF

    &#xA;

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

    &#xA;

    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.

    &#xA;

    My command is

    &#xA;

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

    &#xA;

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

    &#xA;

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

    &#xA;

    I've tried all audio codecs available for this camera&#xA;audio config

    &#xA;

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

    &#xA;

    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)

    &#xA;

    Do you have any idea ?

    &#xA;