Recherche avancée

Médias (0)

Mot : - Tags -/images

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

Autres articles (100)

  • 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

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • À propos des documents

    21 juin 2013, par

    Que faire quand un document ne passe pas en traitement, dont le rendu ne correspond pas aux attentes ?
    Document bloqué en file d’attente ?
    Voici une liste d’actions ordonnée et empirique possible pour tenter de débloquer la situation : Relancer le traitement du document qui ne passe pas Retenter l’insertion du document sur le site MédiaSPIP Dans le cas d’un média de type video ou audio, retravailler le média produit à l’aide d’un éditeur ou un transcodeur. Convertir le document dans un format (...)

Sur d’autres sites (8107)

  • 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

    


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

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