
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (82)
-
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
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. -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (5725)
-
Install graphicsmagik and ffmpeg for nodeJS application running as docker container
25 septembre 2017, par user3142695I am deploying a nodeJS application (which is based on meteorJS and build with
meteor build
) to a docker container on my ubuntu 16.04 server.
My application needsgraphicsmagick
andffmpeg
.
As far as I know, theffmpeg
should be in thelibav-tools
package.My question is how do I get those two needed packages into my application running as docker container ?
I think it is wrong to install them via
apt-get graphicsmagick
on the server itself, right ?For this nodeJS application I’m using this Dockerfile to create a docker image :
FROM node:4.8-slim
# Copy the application files
COPY . /
# Set required environment variables
ENV NODE_ENV production
ENV MONGO_URL mongodb://mongo:27017/
ENV ROOT_URL http://localhost
ENV PORT 80
EXPOSE 80
# Download the required packages for production
RUN (cd programs/server && npm install --silent)
# Make the application run when running the container
CMD ["node", "main.js"]My application uses this package.json :
{
...
"dependencies": {
...
"ffmpeg": "0.0.4",
"fluent-ffmpeg": "^2.1.2",
"gm": "^1.23.0",
...
}
}Running
npm install
should addgm
andffmpeg
, but I think I need those packages installed in the docker container itself. -
Live streaming application using ffmpeg and C#
22 février 2016, par sameerI am building an c# application for live streaming. I am able to stream the feed from web cam to rtmp server using ffmpeg but unable to display it on screen at the same time.
-
using file info from txt file to bull trim audio with ffmpeg
26 juin 2018, par thirtylightbulbsI have found how to trim individual audio files with ffmpeg. Is there any way to do it on bulk ? I have thousands of audio files each with different segments that need to be saved separately. The input file, time to start clipping, and duration are all in separate columns, row by row, in a text/excel file.