Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (104)

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (8399)

  • Android MediaMetadataRetriever.METADATA_KEY_DATE gives only date of video on galaxy S7

    15 mai 2023, par Zaid Bin Tariq

    I am writing a code to get video creation date and time from metadata, i am using following code to get creation date

    



    MediaMetadataRetriever retriever = new MediaMetadataRetriever();
retriever.setDataSource(path_to_video);
String date = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DATE);


    



    it works perfect on all devices except Samsung Galaxy S7, it returns only date in "YYYY MM DD" format, no time stamp i need both date and timestamp.

    



    any help in this regard is much appreciated.

    


  • Android MediaMetadataRetriever.METADATA_KEY_DATE gives only date of video on galaxy S7

    3 octobre 2016, par Zaid Bin Tariq

    I am writing a code to get video creation date and time from metadata, i am using following code to get creation date

    MediaMetadataRetriever retriever = new MediaMetadataRetriever();
    retriever.setDataSource(path_to_video);
    String date = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DATE);

    it works perfect on all devices except Samsung Galaxy S7, it returns only date in "YYYY MM DD" format, no time stamp i need both date and timestamp.

    any help in this regard is much appreciated.

  • Create H.264 stream from single PNG

    28 avril 2017, par Jim Rhodes

    I have an application that uses RTSP to get a video stream from an IP camera. The application extracts the H.264 data from the RTP packets and sends it to a remote process that decodes the stream (using ffmpeg) and displays it. If the video stream is interrupted for any reason, I would like to insert a static image into the stream being sent to the remote process.

    I have a PNG that is the same resolution as the camera. I thought I could use ffmpeg to encode the PNG to H.264 to get an IFrame that I could insert into the stream but I have not had any success. Using ffmpeg I created an MP4 with H.264 encoding from the PNG image and then extracted what I believed was the H.264 data from the MP4 but when I try to decode it ffmpeg returns an error.

    Anyone have any ideas on how I could accomplish this ?