
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (58)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (6383)
-
Does Apple AS assembler replace certain NEON instructions with equivalent ones on iOS ?
5 avril 2012, par Yi WangI was trying to use ffmpeg on iOS and was debugging a crash in the optimized arm code. I have discovered that some unsigned (.u16, .u32) instruction have been replaced by signed ones (.i16, .i32). It's easy to see because disassembled instruction on GDB doesn't quite match the source code.
For example,
vrshrn.u32 -> vrshrn.i32
vrshrn.u16 -> vrshrn.i16
vadd.u16 -> vadd.i16My questions :
- Is this behavior correct and expected ? If not, how do we correct it ?
- If they are equivalent, why do we nee need the unsigned ones at all ? Is it because that way the code is more explicit ?
- Is this behavior expected with other platform's toolkit ? For example, Android's toolkit ? (I have heard Apple's AS is an ancient one)
-
error while compiling x264 in linux
14 avril 2011, par kartulHey all
I'm trying to compile x264 under linux (x64). But it keeps throwing me an error. I've googled around but found nothing. Here's the commandline history :spin@around : /x264$ git clone git ://git.videolan.org/x264.git Cloning into x264... remote : Counting objects : 13539, done. remote : Compressing objects : 100% (4416/4416), done. remote : Total 13539 (delta 11005), reused 11225 (delta 9082) Receiving objects : 100% (13539/13539), 3.29 MiB | 2.79 MiB/s, done. Resolving deltas : 100% (11005/11005), done. spin@around : /x264/x264$ ./configure Found no assembler Minimum version is yasm-0.7.0 If you really want to compile without asm, configure with —disable-asm. spin@around : /x264/x264$ ./configure —disable-asm Platform : X86_64 System : LINUX asm : no avs : no lavf : no ffms : no gpac : no gpl : yes thread : posix filters : crop select_every debug : no gprof : no PIC : no shared : no visualize : no bit depth : 8
You can run 'make' or 'make fprofiled' now.
spin@around : /x264/x264$ make
gcc -Wshadow -O3 -ffast-math -Wall -I. -std=gnu99 -s -fomit-frame-pointer -fno-tree-vectorize -c -o x264.o x264.c
In file included from common/common.h:864,
from x264.c:33 :
common/rectangle.h : In function āx264_macroblock_cache_rectā :
common/rectangle.h:84 : error : āv4siā undeclared (first use in this function)
common/rectangle.h:84 : error : (Each undeclared identifier is reported only once
common/rectangle.h:84 : error : for each function it appears in.)
common/rectangle.h:84 : error : expected ā ;ā before āv16ā
common/rectangle.h:86 : error : ā__m128ā undeclared (first use in this function)
common/rectangle.h:86 : error : expected ā ;ā before āv16ā
common/rectangle.h:87 : error : expected ā ;ā before āv16ā
common/rectangle.h:89 : error : expected ā ;ā before āv16ā
common/rectangle.h:90 : error : expected ā ;ā before āv16ā
make : *** [x264.o] Error 1
spin@around : /x264/x264$and here is the file, from line 83 to 91 :
#if HAVE_VECTOREXT && defined(__SSE__) v4si v16 = v,v,v,v ;
M128( d+s*0+0 ) = (__m128)v16 ;
M128( d+s*1+0 ) = (__m128)v16 ;
if( h == 2 ) return ;
M128( d+s*2+0 ) = (__m128)v16 ;
M128( d+s*3+0 ) = (__m128)v16 ;
#else -
GSoC : Support fast guided filter.
10 mai 2021, par Xuewei MengGSoC : Support fast guided filter.
Two modes are supported in guided filter, basic mode and fast mode.
Basic mode is the initial pushed guided filter without optimization.
Fast mode is implemented based on the basic one by sub-sampling method.
The sub-sampling ratio which can be defined by users controls the
algorithm complexity. The larger the sub-sampling ratio, the lower
the algorithm complexity.Signed-off-by : Xuewei Meng <xwmeng96@gmail.com>
Reviewed-by : Steven Liu <liuqi05@kuaishou.com>