Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (71)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

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

Sur d’autres sites (7973)

  • FFMPEG - overlaying 4 videos not working, 2 videos is working perfectly

    31 octobre 2019, par Taapo

    I’ve been trying to overlay videos using ffmpeg.

    Pretty simple, using ProRes 4444 (with alpha channel).

    When I overlay two videos, there is no problem.

    When I try to overlay more than two, it only shows the first two entries. Is FFMPEG only capable of overlaying two videos ?

    ffmpeg.exe -y \
    -i test-transparent-03.mov \
    -i test-transparent-04.mov \
    -i test-transparent-02.mov \
    -i test-transparent-01.mov \
    -filter_complex overlay -c:v libx264 output.mp4

    This command is working perfectly :

    ffmpeg.exe -y \
    -i test-transparent-03.mov \
    -i test-transparent-04.mov \
    -filter_complex overlay -c:v libx264 output.mp4
  • Revision c7d3a475cb : Fixed Makefile.am to point to the correct path to FindLibYaml.cmake.

    3 mai 2012, par Marc Noirot

    Changed Paths :
     Modify /Makefile.am



    Fixed Makefile.am to point to the correct path to FindLibYaml.cmake.

  • How to point ffmpeg concatenate cmd to a specific directory-variable

    6 décembre 2023, par meteorkees

    a simple question, I think :/
I have a directory containing some mp4 files which i want to concatenate with ffmpeg.

    


    In this case the directory is stored in and can be recalled with

    


    ', str(folder_path[0]))>

    


    Now I want to concatenate all mp4 files within this folder with ffmpeg by first making the 'file.txt' list :

    


    > list_all_mp4_videos.txt ; done>

    


    Where and how do I point ffmpeg to the right directory ?

    


    tried this :
os.chdir(str(folder_path[0]))
for f in (*.mp4) ; do echo "file '$f'" >> list_all_mp4_videos.txt ; done

    


    And return is :
File "/home/testcase/source/RMS/Utils/BatchFFfileFramesOneMP4.py", line 150
for f in (*.mp4) ; do echo "file '$f'" >> list_all_mp4_videos.txt ; done
^
SyntaxError : invalid syntax