
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (61)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (8803)
-
Anomalie #3624 : Caractères Ҫ dans l’URL réécrite
27 février 2016, par b bHa je crois avoir trouvé la source du problème. Le caractère utilisé dans
HÉLÈNE ET LES FAҪADES
n’est pas unÇ
c cédille majuscule "LATIN CAPITAL LETTER C WITH CEDILLA" U+00C7, mais unҪ
"CYRILLIC CAPITAL LETTER ES WITH DESCENDER" U+04AA cf :http://www.unicodemap.org/search.asp?search=FA%D2%AAADES%C3%87
Du coup, strtolower ne fait pas le job suivant la conf de localisation cf http://php.net/manual/fr/function.strtolower.php
Avec
mb_strtolower
ça renvoie bienhelene-et-les-faҫades
. Sinon, un des commentaires de la doc php propose "for cyrillic and UTF 8 usemb_convert_case
".Du coup, le fix serait de remplacer strtolower par mb_strtolower dans urls/arbo et urls/propres.
-
minimal ffmpeg build without filters
1er août 2020, par AndrewI'm trying to build a minimal version of ffmpeg that is as small as possible, with only support to decode AAC audio in an MP4 container, and write it out to PCM or WAV.


For some reason though, I can't find a way to build ffmpeg without it including all of these filters :


Enabled filters:
aformat atrim hflip transpose vflip
anull format null trim



Is there any way to disable these ?


I'm using this configure command :


./configure \
 --disable-fast-unaligned \
 --disable-pthreads \
 --disable-w32threads \
 --disable-os2threads \
 --disable-debug \
 --disable-stripping \
 --disable-safe-bitstream-reader \
 --disable-all \
 --enable-ffmpeg \
 --enable-avcodec \
 --enable-avformat \
 --enable-avfilter \
 --disable-filters \
 --enable-protocol=pipe \
 --disable-swresample \
 --disable-swscale \
 --disable-network \
 --disable-d3d11va \
 --disable-dxva2 \
 --disable-vaapi \
 --disable-vdpau \
 --enable-protocol=file \
 --disable-bzlib \
 --disable-iconv \
 --disable-libxcb \
 --disable-lzma \
 --disable-sdl2 \
 --disable-securetransport \
 --disable-xlib \
 --disable-zlib \
 --enable-encoder=pcm_s16le \
 --enable-muxer=pcm_s16le,wav \
 --enable-demuxer=mov \
 --enable-libfdk-aac \
 --enable-nonfree \
 --enable-decoder=libfdk_aac



-
avcodec/8bps : Consider width in the minimal size check
25 février 2024, par Michael Niedermayeravcodec/8bps : Consider width in the minimal size check
Fixes : Timeout
Fixes : 64479/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_EIGHTBPS_fuzzer-5434435386081280Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>