Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

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

  • 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 (...)

  • 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.

Sur d’autres sites (10289)

  • FFMpeg : h.264 to h.264 with the same quality and bitrate

    6 octobre 2018, par Vasya

    I have a some mp4 video file with 1 video stream, encoded in h.264 and with bitrate XYZ kb/s, for example, let’s have a name xxx.mp4 (not a home video, just a film). Its frames looks like some video data and two horizontal black strips on top and bottom side. On one of those strips there is some text, like "Our XXX super videos". I want to draw a black box on those text with dratext filter. Obviously, that processed video must be with almost same bitrate and same file size. But which options I must put in ffmpeg.exe to do so ? CRF 0 ? CRF 18 ? b:v XYZ ? Two-pass ? VBV with crf 23 -maxrate XYZ -bufsize 2M ?
    I want get video data without any losses in comprasion with original mp4 file.

  • Add video and audio into image, with blend=screen

    14 juillet 2019, par Jejel Boy

    i have an image sized 1800x1200, i want to crop it to 1800x1200. Manage to do that with"

    ffmpeg -i image.jpg -vf "crop=1200:1200:0:0" -y output.jpg

    I would also like to add a video.mp4 with black background as an overlay to the output, but blend=screen so black will be transparent.

    How do i continue with the script ?

  • How to make overlay not hidden under pad area

    26 juin 2023, par Yousuf Essa

    i have the following command where i want overlay two images above image

    


     String command = '-y -i $backgroundImage1 -i $overlayImage1 -i $overlayImage2  -filter_complex '
                  '"[1]scale=600:600[i1];'
                  '[2]scale=600:600[i2];'
                  '[0][i1]overlay=1200:1200[01];'
                  '[01][i2]overlay=800:800'
                  ',pad=width=iw:height=ih+1000:x=0:y=0:color=black'
                  '" $outPutPath';


    


    Now i notice if i position one of the overlay to be within the black pad area that i made so it be hidden behind it , how to solve, so the overlay on top pad ?

    


    if anyone could help so kindly edit my full command because i just start to learn ffmpeg , thanks