
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 (65)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
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 (...)
Sur d’autres sites (10572)
-
Add a timestamp overlay using ffmpeg by Node Js
20 septembre 2015, par Nazmul Hossain BilashI am working on video editing. Currently I want to add time stamp on a video. I have found some command line code from a website. But how can I add this by Node Js FFMPEG module.
ffmpeg -f dshow -i video="HD Pro Webcam C920" -vf "drawtext=fontfile=arial.ttf:text='%m';fontcolor=white@0.8:x=7:y=460" -vcodec libx264 -vb 2000k -preset ultrafast -f mp4 output.mp4
Some notes : arial.tff lives in the same directory as ffmpeg
Here is the website link.
-
Revision 0451c6b6dd : Refactor per block rate distortion estimate Move the rate-distortion estimate f
22 avril 2015, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_rdopt.c
Refactor per block rate distortion estimateMove the rate-distortion estimate function outside the recursion
as an individual operating module.Change-Id : I662199223c256664bcd312084b3aebffb8a8034b
-
node.js : fluent-ffmpeg throws error when converting mp4 to mp3
4 mars 2014, par tldrI'm trying to convert an mp4 video to mp3 with node's fluent-ffmpeg module. Here is my code :
ffmpeg = require 'fluent-ffmpeg'
mp4 = '/Users/jashua/Desktop/video.mp4'
mp3 = '/Users/jashua/Desktop/audio.mp3'
proc = new ffmpeg({source:mp4})
.toFormat('mp3')
.setFfMpegPath('/Applications/ffmpeg')
.saveToFile(mp3, (stdout, stderr)->
return console.log stderr if err?
return console.log 'done'
)On running it, I get the following error :
TypeError: Cannot call method 'saveToFile' of undefined
at Object.<anonymous> (/Users/jashua/Desktop/ytdl.coffee:10:12, <js>:18:60)
at Object.<anonymous> (/Users/jashua/Desktop/ytdl.coffee:1:1, <js>:25:4)
at Module._compile (module.js:456:26)
</js></anonymous></js></anonymous>Any ideas ?
Solution :
proc = new ffmpeg({source:mp4})
proc.setFfMpegPath('/Applications/ffmpeg')
proc.saveToFile(mp3, (stdout, stderr)->
return console.log stderr if err?
return console.log 'done'
)
enter code here