
Recherche avancée
Autres articles (65)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (9678)
-
Revision 9c061ef506 : Properly validate data size With "show_existing_frame" frames : Minimum data siz
5 janvier 2015, par Yaowu XuChanged Paths :
Modify /vp9/vp9_dx_iface.c
Properly validate data sizeWith "show_existing_frame" frames :
Minimum data size for profile 0 and 1 is 1 byte (8bits)
Minimum data size for profile 2 and 3 is 2 bytes (9bits)Otherwise :
Minimum data size is 8 bytes.This resolves the VP9 failure in fuzzing test build #56.
Change-Id : I146d9d37688f535dd68d24aacc76d464ccffdf04
-
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)


-
avformat : introduce AVFormatContext io_close2 which returns an int
30 novembre 2021, par Marton Balintavformat : introduce AVFormatContext io_close2 which returns an int
Otherwise there is no way to detect an error returned by avio_close() because
ff_format_io_close cannot get the return value.Checking the return value of the close function is important in order to check
if all data was successfully written and the underlying close() operation was
successful.It can also be useful even for read mode because it can return any pending
AVIOContext error, so the user don't have to manually check AVIOContext->error.In order to still support if the user overrides io_close, the generic code only
uses io_close2 if io_close is either NULL or the default io_close callback.Signed-off-by : Marton Balint <cus@passwd.hu>