
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (49)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
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 -
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 (...)
Sur d’autres sites (9141)
-
lavc/pngdec : restructure exporting frame meta/side data
20 mars 2021, par Anton Khirnovlavc/pngdec : restructure exporting frame meta/side data
This data cannot be stored in PNGDecContext.picture, because the
corresponding chunks may be read after the call to
ff_thread_finish_setup(), at which point modifying shared context data
is a race.Store intermediate state in the context and then write it directly to
the output frame.Fixes exporting frame metadata after 5663301560
Fixes #8972Found-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
Low memory killer because of ffmpeg in Android
22 avril 2021, par engineer eceI'm running an application in Android embedded card. The application is implemented in C. It runs an ffmpeg process using
system()
API which streams transport stream data over IP. When I started the application, approximately 2 hours later, low memory killer daemon is killing the background processes slowly. After some time it's killing the application also. And the GUI screen is hanged completely.

ffmpeg command :

ffmpeg -loglevel quiet -re -i "udp://192.168.47.1:8080?buffer_size=10000000&fifo_size=100000000&overrun_nonfatal=1" -map 0:p:1 -f mpegts udp://192.168.47.172:9090?pkt_size=1316


low memory killer log :


[ 7975.838158@2] lowmemorykiller: Killing 'droid.deskclock' (4779), adj 906,
[ 7975.838158@2] to free 18940kB on behalf of 'kswapd0' (1978) because
[ 7975.838158@2] cache 109744kB is below limit 114688kB for oom_score_adj 529
[ 7975.838158@2] Free memory is 9276kB above reserved. nonmove free (32936kB),(63700kB)
[ 7976.045769@2] lowmemorykiller: Killing 'd.process.media' (4902), adj 906,
[ 7976.045769@2] to free 23028kB on behalf of 'kswapd0' (1978) because
[ 7976.045769@2] cache 112320kB is below limit 114688kB for oom_score_adj 529
[ 7976.045769@2] Free memory is 5440kB above reserved. nonmove free (31148kB),(66164kB)



Query :


- 

- Does ffmpeg consume more CPU & memory over the course of time, which in turn causing low memory killer ?




-
avcodec/wmaprodec : Make decoders init-threadsafe
5 mai 2021, par Andreas Rheinhardtavcodec/wmaprodec : Make decoders init-threadsafe
In this case this actually fixes a potential data race : The static VLC
tables were reinitialized every time an AVCodecContext has been
initialized ; while the mutex in avcodec_open2() ensured that the VLCs
could not be initialized concurrently by multiple threads, nothing
guaranteed that these VLCs are not read concurrently (when decoding a
packet with an already initialized AVCodecContext) while another thread
initializes them. This is undefined behaviour despite the values being
written coinciding with the earlier values.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>