
Recherche avancée
Autres articles (32)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (7123)
-
How can FFmpeg support the segment_size option ?
19 avril 2023, par DonethingThis option is used to limit the size of the file segment.


ChatGPT said that this option is available from version 4.1 (released in November 2018), but the compiled version I downloaded from the official website does not have this option.


Then I wanted to compile it myself. After Git clone the source code, I added segment support according to the configuration ChatGPT said and then compiled and installed it.


However, there was still no such option.


./configure --enable-gpl --enable-libx264 --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx265 --enable-libaom --enable-version3 --enable-libfdk-aac --enable-nonfree --enable-muxer=segment



Does FFmpeg have this option ? ? ?


-
Why ffmpeg C - API Doxygen document using c++ style of namespace for structure
25 décembre 2018, par VencatI’m new to ffmpeg C-API and learning it from doxygen document in official site. I hope the document explains about ffmpeg C-API, but I have seen some c++ style of class and namespace in it, for example please refer the below document part, where they are using c++ style of namespace for c structure.
AVClass Struct Reference :
https://ffmpeg.org/doxygen/trunk/structAVClass.html#details
can anyone clear this to me.?
-
ffmpeg's av_read_frame will block or not ?
24 janvier 2020, par DanielThere is a question posted on StackOverflow that asks if there is any mode to wait until a valid data comes with av_read_frame : link.
My question is the opposite :
Can I be sure that this method will always return with either -1, 0 or 1 ?I.e. it will not block ? In the official docs, there is no mention on this subject.
Some threads also mention setting up an interrupt callback for this purpose.
But I would need a solid non-blocking call which means I can do other tasks during waiting for a network video. If there is no exact way to define if av_read_frame can be set to non-blocking I would go with threads but I’d rather not doing that.