
Recherche avancée
Autres articles (53)
-
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (7687)
-
I have trouble converted ffmpeg command to ffmpeg-python
23 août 2022, par Fernando SwensonI am trying convert from HDR to SDR by using the following ffmpeg command, which works


ffmpeg -i input.mov -vf zscale=t=linear:npl=100,format=gbrpf32le,zscale=p=bt709,tonemap=tonemap=hable:desat=0,zscale=t=bt709:m=bt709:r=tv,format=yuv420p -c:v libx264 -crf 0 -preset ultrafast -tune fastdecode output.mp4



However, I have trouble converting this in ffmpeg-python format. Could you give me guidance on how to deal with semicolons, equals and weird = = cases ?


ffmpeg.input("input.mov", r=fps).filter('zscale', t='linear:npl').filter('format', 'gbrpf32le') ...




-
ffmpeg thumbnailer configure trouble in CentOS6
21 mai 2013, par Juneyoung OhI am using CentOS 6.4 86x64.
What I am planning to do is install ffmpegthumbnailer.
I have downloaded at the link below.
https://code.google.com/p/ffmpegthumbnailer/The problem is when I extract the tar.gz and command configure,
It alway says like this.
checking for FFMPEG... no
configure: error: Package requirements (libavutil libavformat libavcodec >= 52.26.0 libswscale) were not met:
No package 'libavutil' found
No package 'libavformat' found
No package 'libavcodec' found
No package 'libswscale' foundOf course, I already installed ffmpeg 1.2.
/usr/lib64/libswscale.so.0.11.0
/usr/lib64/libswscale.so.0and also have libswscale.so.
What can I do to solve this ?
Thanks:D
-
Revision b8b3f1a46d : Balancing coef-tree to reduce bool decodes This patch changes the coefficient t
8 mai 2013, par Deb MukherjeeChanged Paths :
Modify /configure
Modify /vp9/common/vp9_default_coef_probs.h
Modify /vp9/common/vp9_entropy.c
Modify /vp9/common/vp9_entropy.h
Modify /vp9/decoder/vp9_decodframe.c
Modify /vp9/decoder/vp9_detokenize.c
Modify /vp9/encoder/vp9_bitstream.c
Modify /vp9/encoder/vp9_block.h
Modify /vp9/encoder/vp9_boolhuff.c
Modify /vp9/encoder/vp9_encodemb.c
Modify /vp9/encoder/vp9_onyx_if.c
Modify /vp9/encoder/vp9_rdopt.c
Modify /vp9/encoder/vp9_tokenize.c
Balancing coef-tree to reduce bool decodesThis patch changes the coefficient tree to move the EOB to below
the ZERO node in order to save number of bool decodes.The advantages of moving EOB one step down as opposed to two steps down
in the other parallel patch are : 1. The coef modeling based on
the One-node becomes independent of the tree structure above it, and
2. Fewer conext/counter increases are needed.The drawback is that the potential savings in bool decodes will be
less, but assuming that 0s are much more predominant than 1's the
potential savings is still likely to be substantial.Results on derf300 : -0.237%
Change-Id : Ie784be13dc98291306b338e8228703a4c2ea2242