
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (92)
-
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Configuration spécifique pour PHP5
4 février 2011, parPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (5225)
-
How do I create a MPEG stream with private binary data using avconv ?
19 février 2013, par haoleI have some binary data that I need to transmit with a MPEG transport stream. I don't need to worry about the tables, because another software in the process is going to insert them into the stream.
I have a fixed private PID that I have to use. Is there a way to just "break" this binary data into TS packets with the my private PID using only this command line tool (avconv) ? If not, is it possible with the C library ?
-
Trying to create a batch file to convert mp4 to avi with ffmpeg [closed]
19 février 2013, par thirdtimeThis is what I have currently, and it works fine to convert, but what I want to do, is check and see if the file has already been converted first. Then, if it hasn't been converted, save the converted file to a different folder.
FOR %%f IN (E:/TV/TOP.GEAR*.MP4) DO
E:/TV/FFMPEG.EXE -i %%f -q:vi.e. file located at
e:/TV/filename.mp4
. Check ife:/TVTranscode/filename.avi
exists. If not, run theffmpeg.exe
line. The last bit of the ffmpeg line%f.avi
is the output, so I don't know how I would change the directory of the output. Any help would be greatly appreciated. -
How to use ffmepg create video from some bitmaps(the format is ARGB32) [closed]
16 février 2013, par xiangyunI have some bitmaps(the format is
ARGB32
), I want useffmepg
to create video from this bitmaps, the video format ismp4
, encoder video stream useH263
.
This is my frist time useffmpeg
,I had read sample code inffmpeg
doc, but I still don't know how to createmp4
file from serial bitmaps. And I want use this native code in android app. Anybody who had experience onffmepg
can help or teach me ?