
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (58)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
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 -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (11165)
-
Create a deep copy of internal x264 encoder's state
9 janvier, par Ragdoll CarI am using x264 library : https://github.com/mirror/x264


We can create a new encoder handler this way :


x264_param_t param{}; // fill with proper values
x264_t* handler = x264_encoder_open(&param);



But how can we create a deep copy of
handler
so we can have two the same encoders with exactly the same internal state ?

-
Create a deep copy of internal x264 encoder's state
9 janvier, par Ragdoll CarI am using x264 library : https://github.com/mirror/x264


We can create a new encoder handler this way :


x264_param_t param{}; // fill with proper values
x264_t* handler = x264_encoder_open(&param);



But how can we create a deep copy of
handler
so we can have two the same encoders with exactly the same internal state ?

-
FFmpeg on android is crashing in ff_h2645_extract_rbsp function
6 décembre 2019, par TheWindLaughI have used ffmpeg decode in my decode2 function, it just like this :
AVPacket pkt;
av_init_packet(&pkt);
pkt.data = (uint8*)vd+16;
pkt.size = vl-16;
m_is_decoding = true;
avcodec_send_packet(m_cctx, &pkt);
int ret = avcodec_receive_frame(m_cctx, m_cfrm);Everything works great up until the
avcodec_decode_video2
call :Build fingerprint: 'HUAWEI/VTR-AL00/HWVTR:9/HUAWEIVTR-AL00/9.1.0.201C00:user/release-keys'
Revision: '0'
cpuAbi/cpuAbi2: 'arm64-v8a#armeabi-v7a#armeabi'
pid: 5829, tid: 6106, name: .myapp.online >>> com.myapp.online <<<
signal 11 (SIGSEGV), code 2 (SEGV_ACCERR), fault addr 0xcc180000
backtrace:
#00 pc 0064c098 /data/app/com.myapp.online-r3eLwyIHdUEbHPM-MUYw1g==/lib/arm/libapp.so (ff_h2645_extract_rbsp+52)
#01 pc 0064c580 /data/app/com.myapp.online-r3eLwyIHdUEbHPM-MUYw1g==/lib/arm/libapp.so (ff_h2645_packet_split+592)
#02 pc 0037c9e0 /data/app/com.myapp.online-r3eLwyIHdUEbHPM-MUYw1g==/lib/arm/libapp.so
#03 pc 004e6d18 /data/app/com.myapp.online-r3eLwyIHdUEbHPM-MUYw1g==/lib/arm/libapp.so (avcodec_decode_video2+380)
#04 pc 004e76a4 /data/app/com.myapp.online-r3eLwyIHdUEbHPM-MUYw1g==/lib/arm/libapp.so
#05 pc 004eb344 /data/app/com.myapp.online-r3eLwyIHdUEbHPM-MUYw1g==/lib/arm/libapp.so (avcodec_send_packet+308)
#06 pc 001df578 /data/app/com.myapp.online-r3eLwyIHdUEbHPM-MUYw1g==/lib/arm/libapp.so (_bio_binder_codec_video_::decode2(void*, yuv_r*, void const*, int)+1384)
#07 pc 002e66b8 /data/app/com.myapp.online-r3eLwyIHdUEbHPM-MUYw1g==/lib/arm/libapp.so (hm_video_decode_yuv+244)
#08 pc 0003f598 /data/app/com.myapp.online-r3eLwyIHdUEbHPM-MUYw1g==/lib/arm/libapp_yunguan.so (Device::DecodeVideo()+336)
#09 pc 00037324 /data/app/com.myapp.online-r3eLwyIHdUEbHPM-MUYw1g==/lib/arm/libapp_yunguan.so (boost::detail::thread_data, boost::_bi::list1 > > >::run()+32)
#10 pc 00046455 /data/app/com.myapp.online-r3eLwyIHdUEbHPM-MUYw1g==/lib/arm/libapp_yunguan.so
#11 pc 00065ac7 /system/lib/libc.so (__pthread_start(void*)+22)
#12 pc 0001e9ad /system/lib/libc.so (__start_thread+32)