Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (74)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

Sur d’autres sites (7818)

  • Online timelapse creation with ffmpeg

    27 mai 2016, par Michael

    I would like to create a timelapse using a command line tool like ffmpeg. The usual way is to prepare a series of images first. In my case it is not possible, because discrete images would take too much space, and there is nearly no difference between subsequent images so they compress extremely well as a video.

    So I’m looking for a way to create a video file, keep it opened and then just append successive images to it without intermediate files.

  • Is it possible to slow down the audio more than 4 times in ffmpeg ?

    21 mars 2020, par AlexZheda

    It appears that ffmpeg does not allow to slow a video down more than 4 times.

    ffmpeg -i in.mp4 -filter_complex "[0:a]atempo=.5,atempo=.5,atempo=.5,asetpts=N/SR/TB[aa];[0:v]setpts=8*PTS[vv]" -map "[aa]" -map "[vv]" out_x8.mp4

    I am getting Too many packets buffered for output stream 0:0.
    error.
    Whenever I do only 2 times atempo=.5, the same command works.
    Why is that so and are there any workarounds for that ?

  • 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