
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (97)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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" (...) -
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 (...)
Sur d’autres sites (5336)
-
FFMpeg - move overlay from point a to b to c to d
26 août 2017, par techrI used somebody else’s code posted by LordNeckbeard here : FFmpeg move overlay from one pixel coordinate to another
I modified it a bit to this :
ffmpeg -i 4632.mpg -i 4632.bmp -filter_complex "[0]scale=320:240[over];
[1][over]overlay=enable='between=(t,0,50)':x=20+t*30:y=20+t*20" -s
1280:720 -c:a copy -y output.mpgI’d like to be able to limit the movement so the overlay does not go off screen.
How can I move a scaled clip overlay in four directions, X & Y starting from originating location and back ? -
How to incoporate ffmpeg in my audio input upload form
3 février 2018, par Michelle Dimwaitethis is not really a question but a request to point me to any starting direction.
i have a simple audio upload form which stores the audio to a database or just any folder.
I want to start by implementing ffmpeg so before this audio is stored in the folder, it goes through ffmpeg(converted to mp3 for example) and stores the converted version to the folder.
Can someone please point me to any tutorial or links where i can start more research.
I already installed ffmpeg.exe in xampp
much appreciated in advance -
Meteor edit audio files on the server
28 décembre 2015, par Mohammed HusseinI am building a Meteor application to split uploaded audio files
I upload the audio files and store them using GridFSchild = Npm.require(’child_process’) ;
var fs = Npm.require('fs');
storagePath= fs.realpathSync(process.env.PWD+'/audio');
StaticServer.add('/audio', clipsPath);and then using a method i split the audio file using
child.exec(command) ;the command is the ffmpeg command used to cut the source audio file and store it on the storagePath
the application worked fine locally but when I tried to deploy it to digital ocian i got errors , stating that the file /audio doesnot exist
I use mupx to deploy and the error appears after "verifying deployment"here is the error
-----------------------------------STDERR-----------------------------------
eteor-dev-bundle@0.0.0 No README data
=> Starting meteor app on port:80
/bundle/bundle/programs/server/node_modules/fibers/future.js:245
throw(ex);
^
Error: ENOENT, no such file or directory '/bundle/bundle/audio'
at Object.fs.lstatSync (fs.js:691:18)
at Object.realpathSync (fs.js:1279:21)
at server/startup.js:10:20
at /bundle/bundle/programs/server/boot.js:249:5
npm WARN package.json meteor-dev-bundle@0.0.0 No description
npm WARN package.json meteor-dev-bundle@0.0.0 No repository field.
npm WARN package.json meteor-dev-bundle@0.0.0 No README data
=> Starting meteor app on port:80
/bundle/bundle/programs/server/node_modules/fibers/future.js:245
throw(ex);
^
Error: ENOENT, no such file or directory '/bundle/bundle/audio'
at Object.fs.lstatSync (fs.js:691:18)
at Object.realpathSync (fs.js:1279:21)
at server/startup.js:10:20
at /bundle/bundle/programs/server/boot.js:249:5
=> Redeploying previous version of the app
-----------------------------------STDOUT-----------------------------------
To see more logs type 'mup logs --tail=50'
----------------------------------------------------------------------------the main quistion is , how to i generate an output file using ffmpeg command and store it in a place where I can access it and display it on the browser