
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (70)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 (10248)
-
mp3 : Make the seek more robust
11 juillet 2015, par Luca Barbato -
How to configure X264 build before running make on OS X
18 octobre 2013, par user1884325I'm trying to build an X264 executable which will run on any MAC OS X (>10.6) without any external dependencies. I downloaded the latest stable snapshot x264-snapshot-20131017-2245-stable.
I haven't been able to find a lot of documentation on the build procedure for x264 on OSX.
When I just run ./configure —disable-opencl and then make, I get several output files :
x264
libx264.a
.depend
x264.oI assume that the executable can run without the other files ?
Anyway, I tested the x264 in a terminal and at first it seemed to work, but when I try to
start x264 as a quiet background process like this :./x264 —quiet —profile baseline —level 3.2 —preset ultrafast —bframes 0 —force-cfr —no-mbtree —sync-lookahead 0 —rc-lookahead 0 —intra-refresh —input-csp rgb —fps 15 —input-res 1280x720 —bitrate 1100 —vbv-maxrate 1100 —vbv-bufsize 600 —threads 1 -o - -
nothing happens at all. If I go to Activity Monitor I should see x264 running, but it's not there.
Looong story short : How should the x264 build be configured before running make ??? I do not want to use openCL (—disable-opencl)
-
avcodec/ivi : make comments more Doxygen-friendly
28 février 2024, par Andrew Sayersavcodec/ivi : make comments more Doxygen-friendly
Doxygen eats the newline in the first comment, making it harder to read.
Join the lines and add a comma, so source and documentation are equally readable.Doxygen only associates the second comment with cust_dec.
The comments for cust_dec and cust_tab make perfect sense without it,
so downgrade it to a non-doxygen "//" comment.The third comment was missed by the command in the previous commit,
because it (correctly but uniquely) doesn't have a trailing comma.Signed-off-by : Andrew Sayers <ffmpeg-devel@pileofstuff.org>