
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (66)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa 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.
Sur d’autres sites (10831)
-
statistics.getTime() returns always total time of input file in milli seconds during the process in android
11 avril 2024, par HamzaIn 6.0-2 android how can i get the percentage because statistics.getTime() returns always total time of input file in milli seconds during the process but it was working proper in previous version 4.4.LTS because in that version it was returning the time based on how much process has complete.


Current behavior
It is returning total time of input file every time.


Here is the link of my test application https://github.com/HamzaBula/Reverse-Video-Demo


[Here is the screenshot for 4.4.LTS (frame and time both are perfect here)]
(https://i.stack.imgur.com/OEZED.png)


Expected behavior
The time value should have to increase with ongoing video processing.


Here is the screenshot for 6.0-2 (frame is perfect but time is not)


-
avcodec/mips : MSA (MIPS-SIMD-Arch) optimizations for HEVC horizontal and vertical...
17 avril 2015, par Shivraj Patilavcodec/mips : MSA (MIPS-SIMD-Arch) optimizations for HEVC horizontal and vertical mc functions
Signed-off-by : Shivraj Patil <shivraj.patil@imgtec.com>
Reviewed-by : Nedeljko Babic <Nedeljko.Babic@imgtec.com>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at> -
sws_scale vs libyuv performance, speed
4 janvier 2019, par Steven.YeunI tested to convert NV12 to RGB with ffmpeg(sws_scale) and libyuv(NV12ToRGB24)
I guessed libyuv more than fast sws_scale but it is not.
is it correct result ? and how to fast and low cpu usage conversion ?
i wrote test result.I3 windows10 64bit desktop
Vs2017 64bit debug build
VideoSize = 1280 x 692libyuv(NV12ToRGB24) test result
0.04400 sec
0.04500 sec
0.04300 sec
0.04400 sec
0.04400 sec
0.04600 sec
0.04400 sec
0.04400 sec
0.04500 sec
0.05000 seclibyuv(NV12ToRGB24) test code
clock_t begin, end;
begin = clock();
libyuv::NV12ToRGB24(avFrame->data[0], avFrame->linesize[0],
avFrame->data[1], avFrame->linesize[1],
matRGB.data, avFrame->width * 3,
avFrame->width,
avFrame->height
);
end = clock();
printf("%0.5f\n", (float) (end - begin) / CLOCKS_PER_SEC );--------------------------------------------------------------------------------
ffmpeg(sws_scale) test result
0.00300 sec
0.00300 sec
0.00300 sec
0.00300 sec
0.00300 sec
0.00300 sec
0.00300 sec
0.00300 sec
0.00300 sec
0.00300 secffmpeg(sws_scale) test code
begin = clock();
sws_scale(sws_ctx, avFrame->data,
avFrame->linesize, 0, avFrame->height, frame_bgr->data,
frame_bgr->linesize);
//cv::Mat mat(dest_height, dest_width, cv_format, frame_bgr->data[0], frame_bgr->linesize[0]);
end = clock();
printf("%0.5f\n", (float)(end - begin) / CLOCKS_PER_SEC);