Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (90)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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 bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (10327)

  • FFmpeg -s error Option -s is deprecated, use -video_size. Option video_size not found.aq= 0KB vq= 0KB sq= 0B f=0/0

    5 janvier 2021, par Education 4Fun

    I'm trying to play a video like a preview before rendering
ffplay test.mp4 -af "volume=8.0,atempo=4.0" -vf "transpose=2,transpose=2,setpts=1/4*PTS" -s 640x480 -aspect 4:2
with -s its working finebut when i add -s its asking me to specify options
Option video_size not found.aq= 0KB vq= 0KB sq= 0B f=0/0
Let me know the syntax
thank you

    


    and some times after converting i don't find the change in the details
enter image description here

    


    ffmpeg -i 21.mp4 -vf "scale=1280*720" 21_edit.mkv


    


  • Evolution #3179 : Pouvoir désactiver l’héritage de logo entre les rubriques (via une constante)

    24 mars 2014, par - Equipement

    Je vote pour _LOGO_RUBRIQUE_DESACTIVER_HERITAGE

  • animated gif watermark with logo, text and user id using ffmpeg [duplicate]

    2 décembre 2020, par Pythonsguru

    I have a video, want to add a rotating watermark.gif with draw text on video using ffmpeg command I am using following command, I am using following command for .png it is working fine

    


    ffmpeg -i vid1.mp4 -i watermark.png -filter_complex "[0:v][1:v]overlay=10:10,drawtext=fontfile=arial.ttf:text='Hello':fontcolor=white@1.0:fontsize=30:y=90:x=30:'" -c:a copy -movflags +faststart output.mp4

    


    and using .gif it working fine but

    


    ffmpeg -i "vid1.mp4" -ignore_loop 0 -i "logo.gif" -filter_complex "[1:v]scale=60:50,rotate=PI/6:c=black@0:ow=rotw(PI/6):oh=roth(PI/6) [rotate];[0:v][rotate] overlay=5:5:shortest=1," -codec:a copy -y output.mp4

    


    want to add rotating .gif and text on video in single command