
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (75)
-
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (5238)
-
NameError : global name 'caffe' is not defined [closed]
27 janvier 2020, par Sharat ChandraWe have ffmpeg 2.8, opencv 3.1 and caffe in a docker image under the base of ubunutu:xenial. And our goal is to update the ffmpeg version from ffmpeg to ffmpeg 3 or ffmpeg 4.
I have updated from ffmpeg 2.8 to ffmpeg 4.2 using the below code and getting issues in caffe. We are using Ubuntu:Xenial
RUN apt-get install -y software-properties-common \
&& add-apt-repository ppa:jonathonf/ffmpeg-4 \
&& apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y ffmpeg-
Getting this errors :
Traceback (most recent call last) :
File "classify.py", line 180, in
main()
File "classify.py", line 136, in main
caffe.set_mode_cpu()
NameError : global name ’caffe’ is not defined
-
-
ffmpeg timelapse very slow
24 septembre 2018, par LukeLRI’m using
ffmpeg -i IMG_5299.MOV -c:v libx264 -crf 20 -r 60 -filter:v "setpts=0.0015*PTS" -an IMG_5299-speedup.mkv
to create a 600x timelapse out of a H.265 4K 60fps video. I just want
ffmpeg
to pick every 600th frame and put it together to a new 60fps video. No interpolation, no nothing. Still, I only get 0.2 fps on a very recent i5-7600T CPU, while converting the same video without speedup usingffmpeg -i IMG_5299.MOV -c:v libx264 -crf 20 -an IMG_5299-2.mkv
gives me 5 fps. So why is speeding the video up 25x times slower than just converting it ? Is it doing any nifty interpolation for each frame out of 600 frames or something ?
EDIT : That’s the statusline I get after several minutes of encoding :
frame= 447 fps=0.2 q=28.0 size= 68639kB time=00:00:06.56 bitrate=85611.1kbits/s dup=0 drop=147650 speed=0.00233x
-
Revision d66a63f02b : Enable reduced set of intra modes in rtc coding This commit enables the use of
20 février 2014, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_pickmode.c
Enable reduced set of intra modes in rtc codingThis commit enables the use of DC, vertical, and horizontal intra
prediction mode in rtc non-RD mode decision. When the best cost value
of inter modes is above a given threshold, the encoder runs the
above three intra modes and selects the one that has minimum
prediction residual in terms of SAD.This together with recent changes on non-RD mode decision and coding
control improves compression performance of speed -6 by
derf 91%
yt 61%
hd 46%
stdhd 52%In terms of encoding speed, it is about 3 times faster than speed -5.
Change-Id : I6b483bfd0307e6482bb22a6676ae4e25a52b1310