Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (102)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (12175)

  • Need a better understanding of HTML 5 audio/video meta data use and placement

    24 juin 2012, par nicoz

    I have spent a significant amount of time researching HTML 5 audio and video, however I am stuck understandong the encoding of the meta data. It seems that in my research, using programs like Handbrake (ffmpeg) it is recommend to check of "web optimized" (also using this type of setting when say exporting from imovie). I have concluded that this has to do with moving the file's meta data to the beginning of the file. This then gives the player/browser the info it requires to play immediately without having to wait to load the entire file.

    So here is where I am confused and the questions

    Does this only apply to mp4 files ? (I need to also encode/transcode .ogv and .webm)
    Where does the mp4 MOOV atom fit into this or is that what people are referring to, when they say move the meta data to the front of the file ?

  • How to add telemetry data from a video to jpg file ?

    10 septembre 2021, par code0x00

    I have a 360deg video that is created by Go Pro Fusion and has telemetry data in it. I want to extract the telemetry data and put inside of jpg file.

    


    I am extracting images using ffmpeg :

    


    ffmpeg -i VIDEO.mp4 -r 5 img%d.jpg


    


    How can i extract metadata(including telemetry data) for each frame and put that metadata inside jpg image of that frame.

    


    I tried using

    


    exiftool -ee -a -u -U -TagsFromFile video.mp4 img1.jpg


    


    But all the metadata that appear in video does not appear in image.

    


    I tried this :

    


    exiftool -track1:VideoFrameRate=29.97  img1.jpg 


    


    But getting this warning :

    


    Warning: Sorry, Track1:VideoFrameRate doesn't exist or isn't writable
Nothing to do.


    


    20.00


    


    I get this from video. But unable to set in jpg as mentioned above.

    


    And how to ensure that the images are assigned with the exact GPS data ?

    


  • Get video pixel data from Exoplayer in Android

    25 février 2018, par Oliver Metz

    Is it possible to grab the pixel data (e.g. as RGB byte array) from a running video within the ExoPlayer ? Ideally as the real video resolution and not the size as the shown View. I’d want to forward that data to OpenCV for ImageProcessing purposes.

    Alternatively I’m looking for a robust (ffmpeg based) Android framework to input videos into OpenCV where the input might be IP-Cameras, local files, online files and online streams.

    Any help is appreciated.