Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (57)

  • 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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (8630)

  • libavformat : Remove MAX_PATH limit and use UTF-8 version of getenv()

    20 juin 2022, par Nil Admirari
    libavformat : Remove MAX_PATH limit and use UTF-8 version of getenv()
    

    1. getenv() is replaced with getenv_utf8() across libavformat.
    2. New versions of AviSynth+ are now called with UTF-8 filenames.
    3. Old versions of AviSynth are still using ANSI strings,
    but MAX_PATH limit on filename is removed.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/avisynth.c
    • [DH] libavformat/http.c
    • [DH] libavformat/ipfsgateway.c
    • [DH] libavformat/tls.c
  • avformat/demux : Count EAGAIN as 100 bytes in relation to read limit in avformat_find_...

    8 février 2022, par Michael Niedermayer
    avformat/demux : Count EAGAIN as 100 bytes in relation to read limit in avformat_find_stream_info()
    

    Fixes : Timeout
    Fixes : 43717/clusterfuzz-testcase-minimized-ffmpeg_IO_DEMUXER_fuzzer-5206008287330304
    Fixes : 45738/clusterfuzz-testcase-minimized-ffmpeg_IO_DEMUXER_fuzzer-6142535657979904

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/demux.c
  • How to limit FFMPEG CPU usage on Android

    17 mai 2022, par Björn

    I am recording video on Android and saving it to mp4 files using MediaMuxer.&#xA;This works great but a few times I also need to proccess these mp4 files to cut/combine them into a new mp4 while still recording. The speed of this proccessing is not vital.

    &#xA;

    For cutting and combining I use FFMPEG, specifically&#xA;https://github.com/tanersener/ffmpeg-kit. com.arthenica:ffmpeg-kit-full-gpl:4.5

    &#xA;

    The problem is that this sometimes causes 100% CPU usage and the recording to freeze. I have set maximum priority on the thread handling recording and minumum priority on the one starting FFMPEG. But the problem still occurs. The ffmpeg command seams to start many threads (despite me trying to limit it to one) as seen in the Android studio inspector.

    &#xA;

    The command I use :

    &#xA;

    FFmpegKit.execute("-threads 1 -hide_banner -loglevel error -y"&#xA;                        &#x2B; " -ss " &#x2B; convertMSToString(startTimeMs)&#xA;                        &#x2B; " -t " &#x2B; convertMSToString(lenghtMs)&#xA;                        &#x2B; " -i " &#x2B; inputFilePath&#xA;                        &#x2B; " -c copy " &#x2B; outputFilePath)&#xA;

    &#xA;

    enter image description here

    &#xA;

    Any ideas how I can limit the CPU usage of ffmpeg, or ensure that the camera thread/threads get higher priority so they do not freeze ?

    &#xA;