Recherche avancée

Médias (1)

Mot : - Tags -/vidéo

Autres articles (71)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (7190)

  • using default poster image with video and audio tags

    23 décembre 2016, par Ravinder Payal

    I have a web-application where users can share music and videos ( will be saved on sme-server utilized by Web-Application ) and as we know some audio /video files have posters/thumbnails included/attached with them.
    NOW, I want to show those posters with audio or video in HTML5.
    I know about poster tag, but it needs a separate image file to show. However, I want to show image file attached with song (audio / video).
    Any suggestion related any java-script or HTML api will be appreciated.
    I know about obtaining poster images with ff-mpeg(or similar libraries), but that will add an extra work load on my server. Thanks.

    Note :-I may consider any server side efficient solution alo.

    Thanks in advance.

  • Video frames with timestamp or export frame name and timestamp to excel file

    20 avril 2022, par Melodic_Knee

    I need to break a video into frames (60fps) and frame name must be in the fashion of %d_hh-mm-ss.ms.png, Or, any solution that gives frame name, and the time in excel file will work

    


    Note : - time here must be the time at which the frame appeared in the video

    


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

    


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

    


        private val destPath = "/storage/emulated/0/DCIM/TESTFOLDER"


    


        if (video != null) {
        val command =
            "ffmpeg -i $video -c copy -map 0 -segment_time 00:00:15 -f segment $destPath output%03d.mp4"

        mProgressDialog.show()

        try {
            val executionId = FFmpeg.executeAsync(command) { _: Long, returnCode: Int ->
                when (returnCode) {
                    RETURN_CODE_SUCCESS -> {
                        mProgressDialog.dismiss()
                        Toast.makeText(
                            this,
                            "Async command execution completed successfully",
                            Toast.LENGTH_SHORT
                        ).show()
                    }
                    RETURN_CODE_CANCEL -> {
                        mProgressDialog.dismiss()
                        Toast.makeText(
                            this,
                            "Async command execution cancelled by user.",
                            Toast.LENGTH_SHORT
                        ).show()
                    }
                    else -> {
                        mProgressDialog.dismiss()
                        Toast.makeText(
                            this,
                            "Async command execution failed",
                            Toast.LENGTH_SHORT
                        )
                            .show()
                    }
                }
            }
        } catch (e: Exception) {
            e.printStackTrace()
            Toast.makeText(this, e.message, Toast.LENGTH_SHORT).show()
        }
    }


    


    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.