Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (48)

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

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (4715)

  • Changing Audio Volume using FFmpeg Android

    23 août 2018, par kataroty

    As I have understood, the only way to change FFmpeg volume is to do it throught a command line.

    This is what should change the volume of the audio :

    ffmpeg -i input.wav -filter:a "volume=1.5" output.wav

    Now I have used FFmpeg with command line before and it looked like this and gave me no errors :

       String[] cmd = { "-i" , pcmtowavTempFile.toString(), "-i", mp3towavTempFile.toString(), "-filter_complex", "amix=inputs=2:duration=first:dropout_transition=3", combinedwavTempFile.toString()};
       ffmpeg.execute(cmd, new ExecuteBinaryResponseHandler() {
           @Override
           public void onSuccess(String message) {                
               super.onSuccess(message);
               encodeWavToAAC();
           }
           @Override
           public void onFailure(String message) {
               super.onFailure(message);
               onError(message);
           }
       });

    But If I try to do it with audio volume in the same method, it just ignores it :

       String[] cmd = { "-i" , pcmtowavTempFile.toString(),  "-filter:a", "volume=1.3", pcmtowavTempFile.toString()};
       ffmpeg.execute(cmd, new ExecuteBinaryResponseHandler() {
           @Override
           public void onSuccess(String message) {
               super.onSuccess(message);
           }
           @Override
           public void onFailure(String message) {
               super.onFailure(message);

           }
       });

    I get neither, no success or error message with the last volume change method.

    Since the volume is there between " ", I tried adding this :

    String[] cmd = { "-i" , pcmtowavTempFile.toString(),  "-filter:a", "\"volume=1.3\"", pcmtowavTempFile.toString()};

    But the app started crashing after adding this line.

  • Remove 'options.useNoCache', use 'options.cacheBust'.

    24 mars 2014, par JamesMGreene
    Remove 'options.useNoCache', use 'options.cacheBust'.
    

    Fixes #359.

  • Remove 'options.trustedOrigins', use 'options.trustedDomains' instead.

    24 mars 2014, par JamesMGreene
    Remove 'options.trustedOrigins', use 'options.trustedDomains' instead.
    

    Fixes #231.