
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 (25)
-
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (4488)
-
Revision 39c5a4b8be : tools_common.sh : Set VPX_TEST_EXE_SUFFIX for windows targets. Change-Id : Ic3c79
23 avril 2014, par Tom FineganChanged Paths :
Modify /test/tools_common.sh
tools_common.sh : Set VPX_TEST_EXE_SUFFIX for windows targets.Change-Id : Ic3c792bcb76917c4d4b829d0377a9c36e06dd77d
-
Building ffmpeg on Windows
27 février 2014, par NiranjanI've the source code of ffmpeg and would like to build it in my win7. I've minGW installed on my machine. I found a step by step instruction from this link :
http://www.gooli.org/blog/building-ffmpeg-for-windows-with-msys-and-mingw/
The link 'Download updated bash for MSYS' did not follow. It showed the file is not found. When I try to build the program the way explained in the site, it shows an error :
Unknown option “–extra-cflags=-mno-cygwin”.
See ./configure –help for available options.
./myconfig : –extra-ldflags=-Wl,–add-stdcall-alias : command not found
./myconfig : –target-os=mingw32 : command not foundFrom a similar question posted here, I followed the link http://ffmpeg.arrozcru.org/ but the static build downloaded from the site was corrupted. Pls help.
-
How to use the -threads option in fluent-ffmpeg for a windows server ?
8 janvier 2020, par MetroSlimI’m struggling to find the right way to pass the -threads option to fluent-ffmpeg and to make it work nicely on a windows server.
My actual process is code as follow :
ffmpeg(video.pathToFile)
.input(musicFile)
.output(outputVideoFile)
.outputOptions([
'-c:v libx264',
'-c:a aac',
'-shortest',
'-threads 2',
])
.on('end', () => {
console.log("Merge done in : ", Math.round(+new Date()/1000) - unixTimestamp, 'sec');
video.pathToFile = outputVideoFile;
resolve(video);
})
.on('error', (error) => {
reject(error);
})
.on('progress', function(info) {
console.log('progress ' + info.percent + '%');
})
.run();But it doesn’t seems to work, I still get a 95% of CPU usage and I have 4 physicals cores on my windows server.