
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 (75)
-
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (4759)
-
angular cli 6 fluent-ffmpeg cannot get to run ? Core node plugins fs,ps,child_process runtime errors
9 septembre 2018, par user6041243Just created new angular cli app 6. Did a npm install ffmpeg. First is says it can’t resolve (child_process, fs, path). Add those to browser with false in package.json. Builds but then get runtime errors in ffmpeg when I run it http://localhost:4200 in browser when it tries to do a method of fs or path because function doesn’t exist. Just wanting to know how to get ffmpeg or fluent-ffmpeg working in an angular cli project. Has anyone does this ? Any examples.
Seems like the fs, os, path, child_process aren’t available in browser ? Can ffmpeg node plugin be run in browser. Would like to run a statis web app with this on local machine running local ffmpeg executable.
Can this be done ?
-
How to extract organized palette from image/video with FFMPEG+Imagemagick ?
24 avril 2017, par user780756I use FFMPEG and Imagemagick to extract the color palette from an image or video with a Windows batch file,
:: get current folder name
for %%* in (.) do set CurrDirName=%%~nx*
:: get current filename
for /R %1 %%f in (.) do (
set CurrFileName=%%~nf
)
ffmpeg -i "%1" -vf palettegen "_%CurrFileName%_temp_palette.png"
convert "_%CurrFileName%_temp_palette.png" -filter point -resize 4200%% "_%CurrFileName%_palette.png"
del "_%CurrFileName%_temp_palette.png"This outputs something like,
I need this to have better transition throughout the color blocks though, like all blues from darkest to lightest then transitioning to greens, yellows etc. like,
Is there a way/switch to create this with either Imagemagick/FFMPEG ?
-
ffmpeg skip error frame encoding [migrated]
2 janvier 2014, par arasaI have a video file mkv that corrupted a part of time from 00:02:14 to 00:02:16, i checked with VLC and confirm that corrupt. I use ffmpeg to convert that file to mp4, but it stuck immediately when reading frame of corrupted time above ,
my cmd
ffmpeg -i myParty.mkv -map 0:0 -map 0:1 -c:v:0 copy -c:a:0 libfaac myParty.mp4
and the console output
time=00:01:07.07 bitrate=3888.7kbits/frame= 1846 fps=461 q=-1.0 size= 36862kB
time=00:01:17.03 bitrate=3920.1kbits/frame= 2065 fps=459 q=-1.0 size= 42284kB
time=00:01:26.18 bitrate=4019.1kbits/frame= 2304 fps=460 q=-1.0 size= 47726kB
time=00:01:36.14 bitrate=4066.4kbits/frame= 2532 fps=460 q=-1.0 size= 53049kB
time=00:01:45.60 bitrate=4115.3kbits/frame= 2763 fps=460 q=-1.0 size= 59768kB
time=00:01:55.22 bitrate=4249.4kbits/frame= 2989 fps=459 q=-1.0 size= 63995kB
time=00:02:04.79 bitrate=4200.8kbits/frame= 3235 fps=462 q=-1.0 size= 69583kB
time=00:02:14.95 bitrate=4223.9kbits/Read error at pos. 83945419 (0x500e7cb)
video:68846kB audio:3211kB subtitle:0 global headers:0kB muxing overhead 0.204359%is there any ffmpeg option can support skipping error portion in my such case ?
thanks for help