Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (68)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

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

  • How to Split MP3 Files with FFmpeg ?

    27 octobre 2022, par Lucas

    How to split mp3 files with FFmpeg into the small mp3 files make it easy to manage, share and transfer ?
For example , I do have test.mp3 file with 1MB and I want to split into test00(i).mp3 files with smaller size.

    


    I've tried with windows tool but want to have script which is running with ffmpeg.

    


  • avfilter/split : check ff_insert_outpad() for failure

    25 août 2017, par Paul B Mahol
    avfilter/split : check ff_insert_outpad() for failure
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavfilter/split.c
  • Why Video and Audio Don't Match ?

    19 août 2021, par Ohpy

    there is an ffmpeg code.

    &#xA;

    fmpeg -i "1.mp4" -vf "zoompan=z=&#x27;if(lte(mod(time,4.99),2.03),4,0)&#x27;:d=1:x=iw/2-(iw/zoom/2):y=ih/2-(ih/zoom/2):fps=23.98" -af "firequalizer=gain_entry=&#x27;entry(0,-23);entry(250,-1100.5);entry(1000,0);entry(4000,1);entry(16000,16)&#x27;" -metadata title="" -metadata artist="" -metadata album_artist="" -metadata album="" -metadata date="" -metadata track="" -metadata genre="" -metadata publisher="" -metadata encoded_by="" -metadata copyright="" -metadata composer="" -metadata performer="" -metadata TIT1="" -metadata TIT3="" -metadata disc="" -metadata TKEY="" -metadata TBPM="" -metadata language="eng" -metadata encoder="" -threads 0 -preset superfast 1OUT.mp4&#xA;

    &#xA;

    This code zooms in and out of the image in the video. It also changes the sound frequency.

    &#xA;

    When the process of the video is finished, the image in the video and the sound do not match.

    &#xA;

    For example, the sound that should be at the 10th second of the video is at the 15th second. How can I prevent this ?

    &#xA;

    Can you help me ?

    &#xA;