
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (5)
-
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 (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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 (3522)
-
lavd/v4l2 : do not fail when VIDIOC_ENUMSTD returns EINVAL without a valid match
2 septembre 2013, par mrlikalavd/v4l2 : do not fail when VIDIOC_ENUMSTD returns EINVAL without a valid match
With some (buggy) drivers, the VIDIOC_G_STD ioctl returns a std_id that cannot
be matched with any of the enumerated v4l2_standard structures (for example
std_id = 0 or std_id = 0xffffff). Do not fail when we reach the end of the
enumeration without a valid match.Fixes ticket #2370
Note : This commit message has been modified by Giorgio Vazzana, the original
commit message was :"Fixed regression for mandatory VIDIOC_ENUMSTD support by v4l2"
Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
Ffmpeg - avio_open returns AVERROR -13
10 septembre 2021, par TolgaIn my project, I am trying to save mp4 video from frames. I am demuxing video first and then decode and save the .mp4 file beside frames. However, this mp4 file is only playable from command line with
ffplay
. I am trying to play it from media player. After little bit search I found that, I need to remux it to mp4 file after encoding. The examples that I reference for my project are official ffmpeg example and leandromoreira's code. However,avio_open()
parts returns-13
as error. I printed out withav_make_error_string(error, sizeof(error), response)
and gotPermission denied
. When I look for that error in theerror.h

there is no such an error defined.

-
shell_exec returns null ffmpeg for generating video thumb image
11 octobre 2014, par ManuI’m using ffmpeg for getting thumbnail image from video. Its working fine. But the shell_exec function returns null.
My command is,
$return=shell_exec('C:\ffmpeg\bin\ffmpeg.exe -i D:\wamp\www\test\demo.mov -f image2 -vframes 1 D:\wamp\www\test\test.jpg');
var_dump($return);Can I get the return value from this ? Kindly help me :)