Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (97)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (6966)

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

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

    


  • How to merge two videos ?

    1er mai 2016, 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 ?