Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (66)

  • 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

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

  • configure : fix LARGEADDRESSAWARE flag with MSVC

    24 juillet 2015, par Hendrik Leppkes
    configure : fix LARGEADDRESSAWARE flag with MSVC
    

    Otherwise it would get translated like a library path (-L option),
    which breaks setting the flag.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] configure
  • avutil/opencl : is_compiled flag not being cleared in av_opencl_uninit

    5 mars 2015, par Srikanth G
    avutil/opencl : is_compiled flag not being cleared in av_opencl_uninit
    

    When OpenCL kernels are compiled, is_compiled flag is being set for each
    kernel. But, in opencl uninit, this flag is not being cleared.
    This causes an error when an OpenCL kernel is tried on different OpenCL
    devices on same platform.

    Here is the patch with a fix

    Reviewed-by ; Wei Gao <highgod0401@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavutil/opencl.c
  • How to change or modify pitch of audio file (music etc like .mp3 file)using FFMPEG ?

    18 octobre 2022, par syed kashifullah

    I want to change and modify pitch an .mp3 audio file using FFMPEG.&#xA;But I am unable to use FFMPEG to change or modify pitch of that sound.&#xA;what command (exact command) should be exactly use for changing pitch of an audio file ?

    &#xA;

     String outPutPath = new File("/storage/emulated/0/Share it Application/Over_the_HorizonTemp.wav").getPath();&#xA;                 &#xA;                String[] strFfmpeg  = {"ffmpeg","-i" ,strInputPath,"-af", "rubberband=tempo=1.0:pitch=1.5:pitchq=quality" ,outPutPath};&#xA;                execffmpegBinary(strFfmpeg);&#xA;

    &#xA;

    execffmpegBinary Function :

    &#xA;

    public void execffmpegBinary(String[] command) {&#xA;    Config.enableLogCallback(new LogCallback() {&#xA;        @Override&#xA;        public void apply(LogMessage message) {&#xA;            Log.e(Config.TAG, message.getText());&#xA;            Log.e("TAG", "apply: " &#x2B;message.getText());&#xA;        }&#xA;    });&#xA;    Config.enableStatisticsCallback(new StatisticsCallback() {&#xA;        @Override&#xA;        public void apply(Statistics statistics) {&#xA;&#xA;        }&#xA;    });&#xA;&#xA;    long executionId = FFmpeg.executeAsync(command, new ExecuteCallback() {&#xA;        @Override&#xA;        public void apply(long executionId, int returnCode) {&#xA;            if (returnCode == RETURN_CODE_SUCCESS) {&#xA;                &#xA;                Log.e("1TAG", "apply:return code "&#x2B;returnCode );&#xA;                Log.e("1TAG", "apply:execution Id "&#x2B;executionId );&#xA;                Log.e("1TAG", "apply:execution Id "&#x2B; new FFmpegExecution(executionId,command));&#xA;&#xA;&#xA;            } else if (returnCode == RETURN_CODE_CANCEL) {&#xA;                Log.e("2TAG", "apply:return code "&#x2B;returnCode );&#xA;                Log.e("2TAG", "apply:execution Id "&#x2B;executionId );&#xA;                Log.e("2TAG", "apply:execution Id "&#x2B; new FFmpegExecution(executionId,command));&#xA;&#xA;            } else {&#xA;                Log.e("3TAG", "apply: returnCode"&#x2B; returnCode);&#xA;                Log.e("3TAG", "apply:return code "&#x2B;returnCode );&#xA;                Log.e("3TAG", "apply:execution Id "&#x2B;executionId );&#xA;                Log.e("3TAG", "apply:execution Id "&#x2B; new FFmpegExecution(executionId,command));&#xA;&#xA;            }&#xA;        }&#xA;    });&#xA;}&#xA;

    &#xA;