Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (65)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (10285)

  • ATRAC3+ decoder

    3 janvier 2014, par Maxim Polijakowski
    ATRAC3+ decoder
    

    Cleanup by Diego Biurrun.

    Signed-off-by : Kostya Shishkov <kostya.shishkov@gmail.com>

    • [DH] Changelog
    • [DH] configure
    • [DH] doc/general.texi
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/allcodecs.c
    • [DH] libavcodec/atrac3plus.c
    • [DH] libavcodec/atrac3plus.h
    • [DH] libavcodec/atrac3plus_data.h
    • [DH] libavcodec/atrac3plusdec.c
    • [DH] libavcodec/atrac3plusdsp.c
    • [DH] libavcodec/version.h
    • [DH] libavformat/omadec.c
  • Showing in-video visual progress bar with FFMPEG ?

    20 mai 2024, par Taapo

    As OBS Studio lacks a visual indicator to show how far a video has progressed (and when you need to advance to the next scene), I was wondering if there is a command-line option (or solution) to get FFMPEG to re-encode the video and show a progress bar at the bottom of the video that shows how long the video has been playing so far.

    &#xA;

    Is there such a feature ?

    &#xA;

  • Split video with MobileFFmpeg

    17 septembre 2020, par Vitor Ferreira

    I need to split a video into pieces smaller than 15 seconds using ffmpeg on android.

    &#xA;

    For this I am using this library to use FFmpeg and tried to use the code below, but it did not work.

    &#xA;

        private val destPath = "/storage/emulated/0/DCIM/TESTFOLDER"&#xA;

    &#xA;

        if (video != null) {&#xA;        val command =&#xA;            "ffmpeg -i $video -c copy -map 0 -segment_time 00:00:15 -f segment $destPath output%03d.mp4"&#xA;&#xA;        mProgressDialog.show()&#xA;&#xA;        try {&#xA;            val executionId = FFmpeg.executeAsync(command) { _: Long, returnCode: Int ->&#xA;                when (returnCode) {&#xA;                    RETURN_CODE_SUCCESS -> {&#xA;                        mProgressDialog.dismiss()&#xA;                        Toast.makeText(&#xA;                            this,&#xA;                            "Async command execution completed successfully",&#xA;                            Toast.LENGTH_SHORT&#xA;                        ).show()&#xA;                    }&#xA;                    RETURN_CODE_CANCEL -> {&#xA;                        mProgressDialog.dismiss()&#xA;                        Toast.makeText(&#xA;                            this,&#xA;                            "Async command execution cancelled by user.",&#xA;                            Toast.LENGTH_SHORT&#xA;                        ).show()&#xA;                    }&#xA;                    else -> {&#xA;                        mProgressDialog.dismiss()&#xA;                        Toast.makeText(&#xA;                            this,&#xA;                            "Async command execution failed",&#xA;                            Toast.LENGTH_SHORT&#xA;                        )&#xA;                            .show()&#xA;                    }&#xA;                }&#xA;            }&#xA;        } catch (e: Exception) {&#xA;            e.printStackTrace()&#xA;            Toast.makeText(this, e.message, Toast.LENGTH_SHORT).show()&#xA;        }&#xA;    }&#xA;

    &#xA;

    I tried with video = /data/user/0/com.vitor238.videoEditor/cache/e4c9d2f3-6127-43fa-a293-e0de614f4993.mp4 and video = content://media/external/video/media/187130 but neither worked.

    &#xA;