Recherche avancée

Médias (0)

Mot : - Tags -/navigation

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

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • 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

Sur d’autres sites (5652)

  • Why is only one of multiple overlayed videos playing in FFmpeg ? [closed]

    27 mai 2023, par Sixtus Anyanwu

    Only one out of multiple overlayed videos is playing FFmpeg

    


    I am trying to overlay 2 playable videos on top of another video in ffmpeg.

    


    ffmpeg -hide_banner -i finalagain.mp4 -i Tatsumaki0trim.mp4 -i Tatsumaki1trim.mp4 -filter_complex "[0][1]overlay=x=(W-w)/2:y=(H-h)/2:enable='between(t,4,8)'[v1]; [v1][2]overlay=x=(W-w)/2:y=(H-h)/2:enable='between(t,0,4)'[v2]" -map "[v2]" -map 0:a -preset ultrafast trial.mp4

    


    But the 1st video gets played while the second remain static.
Here is the video on YouTube.
https://m.youtube.com/watch?v=XStgNnjTaLE&feature=youtu.be

    


  • What are the encoding techniques to be used while creating 3gp videos on iPhone

    23 avril 2013, par Mahesh

    Some converted 3gp video using ffmpeg library, played on iphone and some not played and that all video played on android,blackberry and J2ME without issues.

    1. please suggest to what type of encoding to be used while creating 3gp videos which is play in iphone without issues.
  • How to merge a video vertically by taking specific time slots from two different videos with a single ffmpeg command ?

    29 mars 2019, par Krishna CCK

    I have three ffmpeg commands. Two of those commands will trim the input videos and the third will merge into a single video.

    I want to run them as a single command instead of three, which consumes a lot of time because I’m taking output of the 1st and 2nd videos individually.

    Instead, I want to take specific parts from the videos which I need and merge them as a single video.

    The commands which I use for singie videos trim :-

    ffmpeg -y -i video1.mp4 -ss 4 -t 10000 -qscale:v 8 -strict -2 video1out.mp4

    ffmpeg -y -i video2.mp4 -ss 4 -t 10000 -qscale:v 8 -strict -2 video2out.mp4

    ffmpeg -i video1out.mp4 -i video2out.mp4 -filter_complex vstack -strict -2 merge.mp4