
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 (72)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (7410)
-
Issue with ffmpeg ubuntu
12 octobre 2017, par Rahul AgnihotriI am getting below given error while trying to use ffmpeg :
video:45kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead : unknown
The command i am executing is as follows :
sudo ffmpeg -i /home/agnihotri/Downloads/1.mp4 -vf fps=1/600 /home/agnihotri/positive/img%03d.jpgMy objective to extract or save a image every 10 seconds...however it only works for initial 30 seconds and then gives the error or issue.
Thanks in advance.
Rahul Agnihotri
-
Send a file and parameters to a OpenFaas Dockerfile function
29 juillet 2021, par Johannes KlaußI have a ffmpeg Dockerfile function that I deploy to my OpenFaaS :


FROM ghcr.io/openfaas/classic-watchdog:0.1.5 as watchdog

FROM jrottenberg/ffmpeg:4.1-alpine

RUN mkdir -p /home/app

COPY --from=watchdog /fwatchdog /usr/bin/fwatchdog
RUN chmod +x /usr/bin/fwatchdog

# Add non root user
RUN addgroup -S app && adduser app -S -G app
RUN chown app /home/app

WORKDIR /home/app

USER app

# Populate example here - i.e. "cat", "sha512sum" or "node index.js"
ENV fprocess="ffmpeg"
# Set to true to see request in function logs
ENV write_debug="false"

EXPOSE 8080

HEALTHCHECK --interval=3s CMD [ -e /tmp/.lock ] || exit 1

CMD ["fwatchdog"]



But I cannot figure out how I would be able to stream a file to the function and give parameters, so that ffmpeg knows about the file and parameter.
I am fairly new to OpenFaaS and maybe this is trivial, but I cannot wrap my head around it.


Any help would be much appreciated.


-
x264 failed to load avisynth - ubuntu 14.04
23 juin 2015, par ShohamIm trying to reduce a video.mov file (taken with canon dslr).
Im using x264 like so :x264 -o '/home/user/Desktop/MVI_0390.mp4' '/home/user/Desktop/MVI_0390.MOV'
And Im getting following error :
avs [error]: failed to load avisynth
raw [error]: raw input requires a resolution.
x264 [error]: could not open input file `/home/user/Desktop/MVI_0390.MOV' via any method!What am I doing wrong ?