Recherche avancée

Médias (0)

Mot : - Tags -/organisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (36)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP 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" (...)

Sur d’autres sites (4932)

  • Issue with ffmpeg ubuntu

    12 octobre 2017, par Rahul Agnihotri

    I 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.jpg

    My 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 Shoham

    Im 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 ?