Recherche avancée

Médias (1)

Mot : - Tags -/géodiversité

Autres articles (68)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

Sur d’autres sites (11405)

  • How to merge two videos ?

    20 mars 2023, par Alexander

    I use https://github.com/Zulko/moviepy library for merge two videos with python. It merged successfully but sound of videos is not exists in merged.mp4.

    



    The python code :

    



    clip1 = VideoFileClip("2.mp4",audio=True)
clip2 = VideoFileClip("1.mp4",audio=True)
final_clip = concatenate_videoclips([clip1,clip2],method="compose")
final_clip.write_videofile("merged.mp4")


    



    I also tried with ffmpeg

    



    ffmpeg -i 'concat:1.mp4|2.mp4' -codec copy merged.mp4


    



    ffmpeg couldn't merge videos. It create merged.mp4 which has only 1.mp4

    



    How can I merge two videos with python or another way ?

    


  • Multiple encoding of videos using AviSynth and X264 from a bat file

    16 février 2017, par FoxyFish

    at the moment i am encoding my videos (vhs restoration) using avisynth and x264 via dragging an .avs file onto a bat file.

    This is working great, but my problem (well not really a problem, more of an efficiency issue) is that i have to manually keep dragging my avs files onto the bat to start the process. Would it be possible to have the bat file convert a whole directory of videos (maybe 20 or so) one after the other in an automated way ?

    The .avs file is always the same for each video except the AviSource() line.

    I know i can loop the .bat for the number of videos present, but how do i load in the .avs file having a variable AviSource() ?

    How could i achieve this, or is it not possible ?

    Thanks.

  • Multiple encoding of videos using AviSynth and X264 from a bat file

    24 septembre 2019, par FoxyFish

    at the moment i am encoding my videos (vhs restoration) using avisynth and x264 via dragging an .avs file onto a bat file.

    



    This is working great, but my problem (well not really a problem, more of an efficiency issue) is that i have to manually keep dragging my avs files onto the bat to start the process. Would it be possible to have the bat file convert a whole directory of videos (maybe 20 or so) one after the other in an automated way ?

    



    The .avs file is always the same for each video except the AviSource() line.

    



    I know i can loop the .bat for the number of videos present, but how do i load in the .avs file having a variable AviSource() ?

    



    How could i achieve this, or is it not possible ?

    



    Thanks.