Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (47)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • flac demuxer : parse the WAVEFORMATEXTENSIBLE_CHANNEL_MASK tag

    25 mai 2014, par Anton Khirnov
    flac demuxer : parse the WAVEFORMATEXTENSIBLE_CHANNEL_MASK tag
    

    It is used to store the channel mask for non-standard layouts.

    • [DBH] libavformat/flacdec.c
  • how to us google ML kit Selfie segmentation in flutter to overlay segmented user on top of chosen image or video ? [closed]

    4 avril 2024, par Amr

    I'm working on implementing a virtual background feature using the Google ML Kit selfie segmentation Flutter plugin. The goal is to separate the user from the background live from the camera feed, overlay the user on a chosen image or video, and then create a new video combining these elements.

    


    Currently, I'm successfully obtaining the mask using the plugin. However, I'm concerned about performance issues if I directly copy pixels to achieve the overlay effect, especially in real-time scenarios.

    


    I'm looking for alternative approaches or best practices to efficiently achieve this functionality without sacrificing performance. Any insights or suggestions on how to approach this would be greatly appreciated.

    


    I thought about using ffmpeg but not sure how to take the user pixels from the camera feed, I am not a flutter developer so not sure how to do so.

    


  • FFmpeg re-wrap of a TS-AAC audio transport stream file to M4A-AAC : what happens by default (no "-codec copy" etc.) ?

    22 avril 2022, par esp

    What happens if you simply do ffmpeg -i aFile.ts aFile.m4a as opposed to ffmpeg -i aFile.ts -codec copy aFile.m4a, when the TS file contains only a single stream, namely AAC, and knowing that m4a files also typically contain AAC.

    


    Does ffmpeg - even in the absence of any filters etc. - decode the original AAC and re-encode back to AAC (with whatever default parameters ffmpeg assumes for that - not necessarily matching those of the original) ? Or does it do something else ?

    


    I tried this both with and without "-codec copy" and the results in each case were AAC but the files were significantly different in size (Original TS : 8.5 MB, ffmpeg'd without "-codec copy" 7 MB, ffmpeg'd with latter 5.1 MB.

    


    At https://ffmpeg.org/ffmpeg.html it is stated (under "3.2 Stream copy"...

    


    


    Stream copy is a mode selected by supplying the copy parameter to the
-codec option. It makes ffmpeg omit the decoding and encoding step for the specified stream, so it does only demuxing and muxing. It is
useful for changing the container format or modifying container-level
metadata.
Implied by the inverse of that situation is that, in the absence of "-codec copy", ffmpeg will carry out the decoding and encoding steps.