Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (45)

  • Demande de création d’un canal

    12 mars 2010, par

    En 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 à (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (6617)

  • ffmpeg -hls_time option not working correctly when running as a service

    4 février 2019, par aexposito

    I am running a ffmpeg command as a systemd service to catch a live RTSP stream and generate hls chunks, the chunks are set to be 30 seconds long with the -hls_time option, when I run the command on the console myself it works ok, but when it runs from the service chunks, wish are supposed to be 30 seconds long are 7 or 8 seconds.
    This is the command :

    /usr/bin/ffmpeg -rtsp_flags prefer_tcp -i
    "rtsp ://192.168.1.16:554/user=admin&password=&channel=1&stream=1.sdp"
    -acodec copy -vcodec copy -hls_time 30 -hls_list_size 10 -hls_flags append_list+delete_segments -f hls -use_localtime 1
    -hls_segment_filename "/home/zurikato/video-backup/$FILENAME_FORMAT_hls.ts"
    /home/zurikato/video-backup/playlist.m3u8

    I’m a beginner in ffmpeg and linux services, so please indulge me if it is a simple matter.
    Thanks in advance

  • ffmpeg and libaom compilation failed "unable to open include file `third_party/x86inc/x86inc.asm"

    7 octobre 2023, par sam

    I'm trying to build ffmpeg using this guide :
https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu

    


    the problem is when i try to compile libaom using the following commands :

    


    cd ~/ffmpeg_sources && \
git -C aom pull 2> /dev/null || git clone --depth 1 https://aomedia.googlesource.com/aom && \
mkdir -p aom_build && \
cd aom_build && \
PATH="$HOME/bin:$PATH" cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX="$HOME/ffmpeg_build" -DENABLE_TESTS=OFF -DENABLE_NASM=on ../aom && \
PATH="$HOME/bin:$PATH" make && \
make install


    


    i get the following error :

    


    /root/ffmpeg_sources/aom/aom_dsp/x86/sad4d_sse2.asm:14: fatal: unable to open include file `third_party/x86inc/x86inc.asm'
CMakeFiles/aom_dsp_encoder_sse2.dir/build.make:62: recipe for target 'CMakeFiles/aom_dsp_encoder_sse2.dir/aom_dsp/x86/sad4d_sse2.asm.o' failed
make[2]: *** [CMakeFiles/aom_dsp_encoder_sse2.dir/aom_dsp/x86/sad4d_sse2.asm.o] Error 1
CMakeFiles/Makefile2:842: recipe for target 'CMakeFiles/aom_dsp_encoder_sse2.dir/all' failed
make[1]: *** [CMakeFiles/aom_dsp_encoder_sse2.dir/all] Error 2
Makefile:129: recipe for target 'all' failed
make: *** [all] Error 2


    


    Is there any fix for this issue ?

    


  • Reduce ffmpeg CPU usage

    20 juillet 2020, par Przemysław Chwiala

    I'm using python script to run ffmpg recording from rtsp stream in 60s segments + getting 1 jpg frame from every segment. It works ok but I'm wondering how to reduce cpu usage for this command. In htop I can see 9 PIDs and they uses about 50% of CPU (for one camera). Do you have any idea how to reduce it ?
This is command I'm using :

    


    ffmpeg -rtsp_transport tcp -stimeout 1000000 -i rtsp:// -vcodec copy -an -dn -y -loglevel error -segment_time 60 -strftime 1 -reset_timestamps 1 -f segment /home/recordings/9cc84d00-626c-4e16-b2b9-1b3667ee7b86/%Y-%m-%d/%H-%M.mp4 -strftime 1 -f image2 -ss 00:00:01 -vf fps=1/60 /home/recordings/9cc84d00-626c-4e16-b2b9-1b3667ee7b86/%Y-%m-%d/%H-%M.jpg


    


    And here is htop ss :
htop view