Recherche avancée

Médias (91)

Autres articles (55)

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

  • H.264 encoding using FFMPEG - some videos not working

    19 juin 2013, par Ben

    Can anybody provide their 'most robust' FFMPEG command line for encoding to H.264 ? We've tried a few but some videos do not want to play ball. I'm sorry, I don't have the exact errors on hand - was just hoping to get somebody else's command line, before I spend time trying to work out exactly which type of videos aren't encoding, or why.

    Thanks heaps.

  • How to Tile Videos with FFmpeg [duplicate]

    1er juin 2021, par G-Power

    I'm quite surprised that this question was never asked on Stack Exchange before... Unless I missed on something.
I would like to tile a square number of videos (e.g. 4, 9, 16, etc.) into a single video.
All same format, same size, same everything.
I'm not that experienced with FFmpeg. So it would be cool if any answer given here were explained in detail, rather than just proposing a piece of code that I don't necessarily understand.
My videos will start at the same time and end at the same time... They're already prepared and all have the same length.

    


    Thank you in advance !

    


  • Merge multiple videos using FFMPEG in android

    30 novembre 2015, par Divya

    I’m required to merge ’n’ number of mp4 videos. For now I’m using ffmpeg library and achieved merging 2 videos using the following command :

     String[] complexCommand = {"ffmpeg", "-y", "-i", input_video1,
                               "-i", input_video2, "-strict", "experimental",
                               "-filter_complex",
                               "[0:v]scale=hd720,setsar=1:1[v0];[1:v]scale=hd720,setsar=1:1[v1];[v0][0:a][v1][1:a] concat=n=2:v=1:a=1",
                               "-ab", "48000", "-ac", "2", "-ar", "22050", "-s", "hd720", "-vcodec", "mpeg4", "-b:v", get_br + "k", merged_video_op_path};

    But how can I do it for n videos. Is there any command to do it ?
    Any help would be greatly appreciated.