Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (99)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (8239)

  • FFMPEG Python - Convert Webp to MP4 file from Python Script

    13 mai 2021, par Sar sinua

    is there any way to convert Webp file to MP4 in python script ?
i also know for running FFMPEG in python i should use below code

    


    import subprocess
subprocess.call('ffmpeg.....',shell=True)


    


  • How to call ffmpeg with arguments from C using popen on Linux ?

    14 décembre 2019, par Edoardo Colella

    I tried to use ffmpeg concatenation with popen command in C but I get "No such file or directory". If I use Linux terminal with the same command it works.

    C code :

    fp=popen("ffmpeg -i \"concat: audio/1.mp3|audio/2.mp3\" -acodec copyoutput.mp3", "r");
    pclose(fp);

    Error in Linux shell :

    audio/1.mp3|audio/2.mp3 No such file of directory found

    What could be the problem ?

  • ffmpeg build with msys2 + VS2017 hang

    20 décembre 2019, par lucky1928

    I am using windows10 + MSVC2017 Community + MSYS2 to build ffmpeg 4.0.1 with below steps :

    1. Start a Visual Studio 2017 "Developer Command Prompt"
    2. cd into msys64 directory, and then invoke MSYS2

      msys2_shell.cmd -msys2 -use-full-path

    3. In MSYS2 shell, cd into ffmpeg build directory.

    4. run ffmpeg config command :

      ./configure --prefix=./install --toolchain=msvc

    After press enter with above command line,sounds like it hang there forever.
    never print anything out and not exit as well.