Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (107)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

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

  • How to extract frames from all videos in a folder using ffmpeg

    28 janvier 2015, par Olihoops

    I’m currently able to extract images from a file using the following line

    ffmpeg -i inputfile.avi -r 1 image-%d.jpeg

    However, I want to apply this to all the files in a folder, and place it in an output folder.

    Suppose I have the current folder holding all videos :

    input-videos/

    ----subfolder1/

    ------video.avi

    ----subfolder2/

    ------video.avi

    I want everything in the output folder :

    output/

    ----subfolder1/

    ------video/

    ----------*.jpeg

    ----subfolder2/

    ------video/

    ----------*.jpeg

    What is the simplest way to go about this using a bash script ? (or something else better)

  • How to extract frames from all videos in a folder using ffmpeg

    11 mai 2023, par Olivier

    I'm currently able to extract images from a file using the following line

    



    ffmpeg -i inputfile.avi -r 1 image-%d.jpeg


    



    However, I want to apply this to all the files in a folder, and place it in an output folder.

    



    Suppose I have the current folder holding all videos :

    



    input-videos/

    



    ----subfolder1/

    



    ------video.avi

    



    ----subfolder2/

    



    ------video.avi

    



    I want everything in the output folder :

    



    output/

    



    ----subfolder1/

    



    ------video/

    



    ----------*.jpeg

    



    ----subfolder2/

    



    ------video/

    



    ----------*.jpeg

    



    What is the simplest way to go about this using a bash script ? (or something else better)

    


  • How to concatenate multiple videos in a folder using ffmpeg and php [on hold]

    6 mai 2015, par Kiran Kumar Dash

    I am having videos in a folder with names vid1001.avi ,vid1002.avi and so on..

    How to concatenate all of them into a single video using php and ffmpeg through for loop or something like that