
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (54)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Participer à sa documentation
10 avril 2011La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
Pour ce faire, vous pouvez vous inscrire sur (...) -
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)
Sur d’autres sites (10181)
-
How to use callback function in ffmpeg
9 septembre 2014, par chesschistatic int interrupt_cb(void *ctx)
I understand that many of the functions provided by the ffmpeg libraries are blocking. In order to control the blocking function to timeout, we can assign a callback function to interrupt_callback.
For example, the
avformat_open_input
may take 1 second to complete. If I set a timer for 500 milliseconds, will it never be able to connect to the RTSP server and return non-zero value ?What is the optimal value for setting this timeout ? What will these blocking functions behave when the timeout value is too small ?
What is the best approach to use this callback function ?
-
interrupt_callback in ffmpeg
8 septembre 2014, par chesschiI understand that many of the functions provided by the ffmpeg libraries are blocking. In order to control the blocking function to timeout, we can assign a callback function to interrupt_callback.
static int interrupt_cb(void *ctx)
What is the optimal value for setting this timeout ? What will these blocking functions behave when the timeout value is too small ?
For example, the
avformat_open_input
may take 1 second to complete and if I set a timer for 500 milliseconds, will it never be able to connect to the RTSP server and return non-zero value ?What is the best approach to use this callback function ?
-
Incomplete video file when converting GIF to WEBM using FFmpeg
28 février 2020, par Eduardo LemusConverting from Gif to WebM in Q mode outputs an incomplete video when targeting low CRF values. For example, running the command below produces a WebM video with a duration of 1.15 secs while the input Gif is 2.16 secs.
ffmpeg.exe -i in.gif -c:v libvpx-vp9 -b:v 0 -crf 10 -an -f webm out.webm
Targeting lower quality (e.g. CRF= 30), will produce the right and complete video output.