Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (88)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (8729)

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

    


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