
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 (98)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (3021)
-
avcodec/nvenc : Make sure that enum and array index match
28 septembre 2016, par Timo Rothenpieleravcodec/nvenc : Make sure that enum and array index match
Based on libav commits by Luca Barbato and Yogender Gupta :
https://git.libav.org/?p=libav.git;a=commit;h=352741b5ead1543d775ccf6040f33023e4491186
https://git.libav.org/?p=libav.git;a=commit;h=e02e2515b24bfc37ede6ca1744696230be55e50b -
why getting error using ffmpeg Could find no file with path 'frame_%4.bmp' and index in the range 0-4 ?
15 juillet 2024, par Daniel Lipthe command line


D :\Output1>ffmpeg -f image2 -framerate 1 -i frame_%4.bmp -loop 0 d :\video.gif


[image2 @ 000001f981d10380] Could find no file with path 'frame_%4.bmp' and index in the range 0-4
[in#0 @ 000001f981d0f040] Error opening input : No such file or directory
Error opening input file frame_%4.bmp.
Error opening input files : No such file or directory


screenshot image showing the files names on my hard disk.




-
avcodec/d3d12va_decode : check existance before assigning a new index
11 janvier 2024, par Tong Wuavcodec/d3d12va_decode : check existance before assigning a new index
Fixes #10759.
It can happen in H.264, MPEG2, VC1 that the current frame resource
memory is already in ref_resource. For example, for a interlaced frame,
the same curr memory is passed twice. For the second time it could possibly
reference itself. When this happens the curr is already given an index and
in ref_resources. When the reference frame index is required, we should check
the existance in the ref_resources first before assigning a new index for it.Signed-off-by : Tong Wu <tong1.wu@intel.com>