
Recherche avancée
Autres articles (74)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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) (...)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (9365)
-
how to install ffmpeg-2.8.22 in RHEL 9.5
23 décembre 2024, par Shuang FanI want to install ffmpeg version 2.8.22 in my RHEL 9.5,i installed gcc 11.5.0, nasm 2.15.05 and yasm 1.3.0.87.g121a,but after i make ;make install ,it shows


make: *** No rule to make target 'x86util.asm', needed by 'libavutil/x86/cpuid.o'. Stop.



I downloaded source code from
https://codeload.github.com/FFmpeg/FFmpeg/tar.gz/refs/tags/n2.8.22

save in ffmpeg-2.8.22.tar.gz
usetar -zxvf ffmpeg-2.8.22.tar.gz
get FFmpeg-2.8.22 folder
change foldercd FFmpeg-2.8.22

configured with./configure --enable-shared --prefix=/root/prog/ThirdPart/ffmpeg-2.8.4/

Finally runmake -j4
andmake install

at the end of make install i get message from cmd :make: *** No rule to make target 'x86util.asm', needed by 'libavutil/x86/cpuid.o'. Stop.


-
swscale/slice : fix init of 32 bpc planes
11 décembre 2024, par Niklas Haasswscale/slice : fix init of 32 bpc planes
In input.c and output.c and many other places, swscale follows the rule of using
15-bit intermediate if output bpc is <= 8, and 19-bit (inside int32_t)
intermediate otherwise. See e.g. the comments on hyScale() on
swscale_internal.h. These are also the coefficients that yuv2gbrpf32_full_X_c()
is using.In contrast to this, the plane init code in slice.c (function fill_ones) is
assuming that we use 35-bit intermediates (inside 64-bit integers) for this
case, seemingly added by commit b4967fc71c63eae8cd96f9c46cd3e1fbd705bbf9 with
no further justification.This causes a mismatch whenever the implicitly initialized plane contents leak
out to the output, e.g. when converting from grayscale to RGB.Fixes : ticket #10716
Signed-off-by : Niklas Haas <git@haasn.dev>
Sponsored-by : Sovereign Tech Fund -
avformat/aacdec : strictly conform to K&R style
18 mai 2024, par Marcus B Spencer