
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (111)
-
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 (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (10617)
-
Revert "Fix compilation on ppc64 and ppc with pic if gas-preprocessor is installed."
18 juin 2014, par Carl Eugen Hoyos -
Fix compilation on ppc64 and ppc with pic if gas-preprocessor is installed.
15 juin 2014, par Carl Eugen Hoyos -
FFMPEG : Compilation error for custom code
13 février 2014, par samI have a video decoder integrated in FFMPEG. All the code that i have currently integrated is pure C-code. For performance purposes, i have to integrate the corresponding SSE code into the FFMPEG's libavcodec.
So i followed the same steps as i did while integrating the pure c code. While configuring i used the following command :
./configure --enable-sse --disable-yasm
I have disabled yasm as i dont have one installed, if needed i can install it, but for c code integration, i had not installed it.
After configuring, i give the command
make
, but i get all errors in my SSE code. So my first question is :-> Does giving —enable-sse ensures that the sse code will get compiled or i need to do something extra ? (Note : my processor supports upto sse 4.2 and the code i want to integrate is also in SSE4.2)
Next, inorder to resolve this what i did was, i opened the
config.mak
file, and found all gcc commands and i appended them with a -msse4.2 option (this option i use to compile standalone SSE code that is, compiling code without integrating it with FFMPEG).After modifying the
config.mak
(which i think i shouldn't, because it is auto-generated on ./configure command), although i'm not getting any error in SSE code, but i get errors likeundefined variable ...
anderror:No previous prototype
for all the old C code which is already a part of the code( although in the source file i have included the required headers).So my second question is, I have manually modified config.mak file is it ok to do so ? If so, then how do i resolve the above issue ?
Any help regarding this issue will be really helpful to me. Moreover there is no info on net available on compiling the FFMPEG code with SSE (except for using —enable-sse option while configuring, which i think is not working for me).
Thanks in advance.