Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (54)

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

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (9689)

  • webmdashenc : Support for live stream manifests

    1er avril 2015, par Vignesh Venkatasubramanian
    webmdashenc : Support for live stream manifests
    

    This patch adds support for creating DASH manifests for WebM Live
    Streams. It also updates the documentation and adds a fate test to
    verify the behavior of the new muxer flag.

    Signed-off-by : Vignesh Venkatasubramanian <vigneshv@google.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/muxers.texi
    • [DH] libavformat/webmdashenc.c
    • [DH] tests/fate/vpx.mak
    • [DH] tests/ref/fate/webm-dash-manifest-live
  • Write timed Live Photo metadata to video using FFMPEG

    20 décembre 2020, par Luke Burns

    According to Apple Live Photo file format, there are three pieces of metadata that need to be written for a JPEG and MOV to be accepted as a live photo. I can use exiftool and ffmpeg to write the necessary content identifier metadata, but I'm having trouble with the timed metadata : ["com.apple.quicktime.still-image-time" : 0xFF].

    &#xA;

    I can't even manage to produce a copy of an existing live photo MOV file using ffmpeg that preserves the necessary timed metadata.

    &#xA;

    ffmpeg -i original.mov -map 0 -c copy -movflags use_metadata_tags copy.mov&#xA;

    &#xA;

    copies the global metadata (i.e. com.apple.quicktime.content.identifier), but loses the necessary still-image-time which can be confirmed using exiftool :

    &#xA;

    > exiftool -G -U -ee original.mov | grep &#x27;Still Image Time&#x27;&#xA;[QuickTime]     Still Image Time                : -1&#xA;> exiftool -G -U -ee copy.mov | grep &#x27;Still Image Time&#x27;&#xA;> &#xA;

    &#xA;

    How can I write the timed metadata using ffmpeg—specifically the still-image-time data ?

    &#xA;

  • Queuing up videos for live stream

    5 avril 2014, par Abdul Ali

    Would first like to tell that am new to streaming and ffmpeg.

    Would try to explain scenario as much as possible.

    A web service is intended to receive chunks of video from a user. those chunks need to be simultaneously sent to the web for live streaming for a seamless viewing.

    So the videos need to be queued up for streaming to the web so that it looks like a long single video. and the strict requirement is not to make any temp file on disk.

    Did read something about pipes but am completely alien to that concept as well.

    Kindly tell how / whether this can be achieved from FFMPEG or any other free tool .

    Language used is PHP . The received videos also need to be saved to disk in parallel for new users to see from start.