Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (37)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (4853)

  • FFMPEG : overlay image on video and retain size

    7 avril 2019, par HB.

    I’m trying to overlay an image (transparent background with shape in the middle) "on top" of the video and get the image back. The image size is bigger then the video. Here is the command that I’m using :

    "-i", video.mp4, "-i", image.mp4, "-filter_complex", "[1:v][0:v]scale2ref=iw:ih[ovr][base];[ovr]colorchannelmixer=aa=1.0[ovrl];[base][ovrl]overlay[v]", "-map", "[v]", "-q:v", "2", directoryToStore + "/" + ImageName + ".jpeg"

    The above scales the image to the size of the video.

    I want the image and the video to retain their size and output an image of the 2 overlaid.

    Can someone please give me advice on how I can do this ?

  • converting audio from mp4 to wav and croping in the process using python

    7 mars 2019, par fastali

    I am looking for a package where I can use to convert the audio file from mp4 to wav simultaneously while also cropping the file using python.

    I have seen some posts about using ffmpeg to do the conversion but I dont seem to be able to run ffmpeg within python, and when converted to wav the files become around 10 times bigger which is kind of a storage issue.

    Does anyone have any suggestions except for pipelining it ?

  • Concat video files on linux by creating chapters

    3 mars 2019, par KK-Media

    I do have a bigger range of video files I would like to concat and mux into MKV via CLI. Additionally I do need to keep the structure of the files by generating chapters in the output file which represent the single files.

    I usually mux video files with mkvtoolnix but I did not find a way to concat various files by generating chapters.

    Does anybody knows a quick Linux CLI way to do this ?
    Thanks