Recherche avancée

Médias (0)

Mot : - Tags -/tags

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (98)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (7670)

  • Revision 9390862702 : Merge "Rate control parameter adjustment"

    8 octobre 2013, par Deb Mukherjee

    Changed Paths :
     Modify /vp9/encoder/vp9_ratectrl.c



    Merge "Rate control parameter adjustment"

  • MediaPlayer doesn't play second audio track in HLS

    9 février 2017, par Yehor Nemov

    Does anybody know how properly play (via Android MediaPlayer) or convert media file with 1 video track and 2 audio tracks to enable 2nd audio playback ?

    Conversion is done with FFMPEG utility :

    ffmpeg -i sample.mp4 -map 0:0 -map 0:1 -map 0:2 \
       -vcodec h264 -acodec:0 aac -acodec:1 aac \
       -strict -2 -f hls -hls_list_size 0 sample.m3u8

    P.S. Media conversion is checked manually with VLC media player (audio tracks are presented and available to be switched).

  • FFMPEG mixing .wav files volume control [closed]

    1er avril 2024, par JoonSeo Yang

    I am working on Java, using the ffmpeg library with command line processing to mix 2 .wav files into one .wav file, but I would like to know how to control the volume of each original file.

    


    My problem : i have 2 audio files (human voice BGM), but BGM is too loud, so i can barely hear human voice, i would like to -> volume down the BGM file, or volume up voice file

    


    Here is my partial code

    


    String ffmpegCommand = file_exe.getAbsolutePath()
    + String.format(
        " -i %s -i %s -filter_complex amix=inputs=2:duration=first:dropout_transition=3 %s",
        file_1.getAbsolutePath(), file_2.getAbsolutePath(), outputFilePath);
Process process = Runtime.getRuntime().exec(ffmpegCommand);


    


    it is quite simple code. I need help on this, and it would be very thankful to which document to read to get such information

    


    PS.sorry for my poor eng.. Im not native :D

    


    I was wandering around documentations, but its quite hard to find what i want