
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (68)
-
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 ;
-
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (8217)
-
h274 : remove optimization pragma
25 août 2021, par Lynneh274 : remove optimization pragma
This results in warnings on compilers which don't support it,
objections were raised during the review process about it but went unnoticed,
and the speed benefit is highly compiler and version specific, and
also not very critical.We generally hand-write assembly to optimize loops like that, rather
than use compiler magic, and for 40% best case scenario, it's simply
not worth it.Plus, tree vectorization is still problematic with GCC and disabled by default
for a good reason, so enabling it locally is sketchy. -
Pass ffmpeg stream through opencv-python script
18 février 2019, par luddite478Please tell me how to pass my stream from ffmepg through python script, get response back, and pass it to ffmpeg again ?
For now i have something like this :FFMPEG_SCRIPT = [ "ffmpeg", '-i', 'fifo', '-pix_fmt', 'bgr24', '
-vcodec', 'rawvideo', '-an', '-sn', '-f', 'mpegts', '-' ]
pipe = sp.Popen(FFMPEG_SCRIPT, stdout = sp.PIPE, bufsize=4096)After this i’m just reading video-frames in while loop
while True:
frame = pipe.stdout.read(480*720*3)
sys.stdout.write(frame)So how can i access the frame after i wrote it to stdout at the last line ?
UPD
Ok, saving audio-track in the stream wasn’t easy. After some bash magic i was able to receive some decent output. Warning : this script is very far from ideal.
-
avformat/mvdec : fix reading number of audio channels
27 novembre 2021, par John-Paul Stewartavformat/mvdec : fix reading number of audio channels
The number of audio channels is stored after the magic number
identifying the audio format. Prior to this patch the code has been
reading it earlier, causing files with only one audio channel to be
handled incorrectly.Reviewed-by : Peter Ross <pross@xvid.org>