
Recherche avancée
Médias (3)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (57)
-
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 -
Publier sur MédiaSpip
13 juin 2013Puis-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, parMediaSPIP 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 Admirarilibavformat : 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>
-
avformat/demux : Count EAGAIN as 100 bytes in relation to read limit in avformat_find_...
8 février 2022, par Michael Niedermayeravformat/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-6142535657979904Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
How to limit FFMPEG CPU usage on Android
17 mai 2022, par BjörnI am recording video on Android and saving it to mp4 files using MediaMuxer.
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.


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


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.


The command I use :


FFmpegKit.execute("-threads 1 -hide_banner -loglevel error -y"
 + " -ss " + convertMSToString(startTimeMs)
 + " -t " + convertMSToString(lenghtMs)
 + " -i " + inputFilePath
 + " -c copy " + outputFilePath)





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 ?