Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (69)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (13918)

  • ffmpeg join multiple audio with acrossfade filter

    30 avril 2017, par alditis

    I have audio file multiple :

    001.ogg, 002.ogg, ..., 100.ogg

    I need join the files with overfade filter between they.

    I did it two in two a cumulative way :

    ffmpeg -i 001.ogg -i 002.ogg -filter_complex acrossfade=d=3:o=1:c1=tri:c2=tri -b:a 128k -o r01.ogg
    ffmpeg -i r01.ogg -i 003.ogg -filter_complex acrossfade=d=3:o=1:c1=tri:c2=tri -b:a 128k -o r02.ogg
    ffmpeg -i r02.ogg -i 004.ogg -filter_complex acrossfade=d=3:o=1:c1=tri:c2=tri -b:a 128k -o r02.ogg

    ....
    ffmpeg -i r98.ogg -i 100.ogg -filter_complex acrossfade=d=3:o=1:c1=tri:c2=tri -b:a 128k -o final.ogg

    But final.ogg does not have good sound on the firsts songs (less quality while more cumulative).

    How can I avoid less quality in the final.ogg ?

    Other way is concat but : How do you define the filter acrossfade using concat ?

    ffmpeg -i "concat:1.ogg|2.ogg|...|100.ogg" copy final.ogg
  • convert video to audio - ffmpeg

    2 mai 2024, par shakti goyal

    I'm trying to convert video to audio using ffmpeg in flutter based application but command is not working.

    


    Is there something wrong with the command ?

    


      void convert(File pickedVideo) async {
    Directory applicationDocDirectory = await getApplicationDocumentsDirectory();

    final outputPath = '${applicationDocDirectory.path}/output-audio-${const Uuid().v1()}.mp3';

    final session = await FFmpegKit.execute('-i ${pickedVideo.path} -vn -acodec mp3 $outputPath');

    final returnCode = await session.getReturnCode();

    print(ReturnCode.isSuccess(returnCode)); // return false
  }


    


  • AWS Chime : Video Merging Java Library

    18 mai 2023, par Swapnil Srivastav

    I am using AWS Chime to record interaction of two or more than two participants, I want to process this and build a final video.

    


    While making final video I want to mask one participant's video with some generic image and everything I want to do using Java.

    


    Is there any library available which can help me to do this ? I'm using Python as of today, ffmpeg library.