Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (111)

  • 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

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (6738)

  • ffmpeg Ghosting between RGB color channels [closed]

    24 mai 2024, par Blikpils

    This seems like a very specific question so i hope there is someone who can help me out.
Within FFMPEG i am trying to add (channel pack) 3 different grayscale videos in RGB within a webm or mp4 video. I got it to work to a degree via Merge planes.
This is what i tried :

    


    ffmpeg -y -i video1.webm -i video2.webm -i video3.webm -filter_complex "[0:v]format=gray[r]; [1:v]format=gray[g]; [2:v]format=gray[b]; [g][b][r]mergeplanes=0x001020:format=gbrp" -pix_fmt yuv420p -t 00:00:03 output.webm


    


    This is the result :
enter image description here

    


    As you see the 9 is visible in the red and blue channel and so are each of the other channels

    


    I have tried just extracting a single channel in a video, change the compression change the format change the color space, make sure that its all linear but each seem to have the limitation of some smearing/artifacts between the other channels.

    


    Is it at all possible to add different grayscale streams in the color channels without any artifacts and if so in which direction should i look ?

    


    Any help would be greatly appreciated !

    


  • How to install FFMPEG on Docker Image ? [closed]

    20 avril 2023, par BS Kim

    I'm working on an m1 MacBook.

    


    I have to make it into a docker image this time, but FFMPEG keeps getting in trouble.

    


    FROM openjdk:17-oracle
ENV APP_HOME=/Users/username/Documents/coding/
WORKDIR $APP_HOME
COPY build/libs/\*.jar application.jar
RUN apk add  --no-cache ffmpeg
EXPOSE 8080

CMD ["java", "-jar", "application.jar"]



    


    I set Dockerfile as above, but both apt-get and apk have command not file errors.(Not when building docker)

    


    How can I install or use FFMPEG inside my docker imgae ?

    


    I tried

    


    RUN apk add  --no-cache ffmpeg


    


    and

    


    RUN apt-get -y update
RUN apt-get -y upgrade
RUN apt-get install -y ffmpeg


    


    but neither works.

    


  • How to tell if faststart for video is set using ffmpeg or ffprobe

    5 septembre 2022, par jsherk

    I am having trouble figuring out how to determine if faststart is set on an MP4 video.

    



    I understand that "moov atom" is the data that needs to be located at the beginning of the file for faststart to be enabled, instead of at the end of the file.

    



    I specifically want to use ffmpeg or ffprobe to determine if it has been moved to the beginning or not already.

    



    On a side note, I understand I can run the following command to move it from the end to the beginning (but I want to find out if it is already there) :

    



    ffmpeg -i infile.mp4 -map 0 -c:v copy -c:a copy -c:s copy -c:d copy -c:t copy -movflags +faststart outfile.mp4