Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

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

Sur d’autres sites (9174)

  • Batch mp3 to mp4 recursive using ffmpeg

    5 janvier 2021, par Yusoff

    Currently I'm using this to convert mp3 in a mp3 folder into mp4.

    


    How do I do it recursively so I don't have to copy the bat file into individual subfolders

    


    echo off
    
FOR /r %%i in (*.mp3) DO (
    
"C:\ffmpeg\bin\ffmpeg.exe" -i "%%a" -an -y -vcodec copy "E:\songs\mp3\%%~na.jpg"
    
"C:\ffmpeg\bin\ffmpeg.exe" -loop 1 -i  "E:\songs\mp3\%%~na.jpg" -i "%%a" -y -c:v libx264 -preset veryfast -tune stillimage -crf 50 -pix_fmt yuv420p -c:a aac -shortest -strict experimental -b:a 128k -shortest "E:\songs\mp3\%%~na.mp4" )
    
pause


    


  • Revision c37ecba7f7 : configure : factorize gcc machine option checks check_gcc_machine_option() repla

    19 mars 2014, par James Zern

    Changed Paths :
     Modify /build/make/configure.sh



    configure : factorize gcc machine option checks

    check_gcc_machine_option() replaces individual -m* checks

    Change-Id : I0f4a82020c0541b99209321907e80e071d1245e1

  • Simplest way to do do video editing in C++ ?

    23 décembre 2019, par CaptainCodeman

    I have a video file (approx 30,000 frames) and want to do some processing on the individual frames with a C++ program I’ve written.

    The simplest method would be to extract the frames using ffmeg, do the processing, and then encode the video again. However, this would require a few hundred gigabytes of disk space. Is there a way to stream it ?

    Or is there some library that lets me just open a video, alter the frames, and re-encode ?