Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (45)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (6488)

  • 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

    


  • FFmpeg image2 output : Control JPG image quality when using mjpeg_qsv

    11 avril 2022, par clic

    My FFmpeg command ouputs a series of JPG images. Simplified :

    


    


    ffmpeg -f dshow -video_size 3840x2160 -framerate 25 -i "video=My
Webcam" -qscale:v 5 -vcodec mjpeg_qsv "C :\out\%d.jpg"

    


    


    I want to use -vcodec mjpeg_qsv to leverage GPU acceleration. Usually (without "_qsv") I can control JPG image quality by using qscale:v , but it seems to have no effect in combination with mjpeg_qsv.

    


    Is it even possible to control JPG image quality when using mjpeg_qsv ? If yes, any ideas how ? Thanks !

    


  • how to call activex control method with multi parameter from java script ?

    15 octobre 2013, par user2882620

    I working on a project that requires me to call activex control function from dll using javascript. i am able to call method that has 1 parameter and method with no parameter, but i am not able to call those methods that has multiple parameter. The method that i am trying to call is a put method.

    STDMETHODIMP CFFMpeg::put_Snapshot(BSTR Path,long newVal){}

    trying to call this method using following java script code.

    document.getElementById('GFFMpeg1').snapshot(1) = 'qwerty';
    document.getElementById('GFFMpeg1').snapshot(2) = 1;

    but i am not getting anything.

    Please help me by providing appropriate solution to this problem. i've googled it alot but didn't find any solutions.

    thanks