Recherche avancée

Médias (1)

Mot : - Tags -/livre électronique

Autres articles (55)

  • 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 de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

Sur d’autres sites (7902)

  • avformat/mov : read PCM audio configuration box ('pcmC') if available

    7 juin 2022, par Ivan Baykalov
    avformat/mov : read PCM audio configuration box ('pcmC') if available
    

    For ipcm and fpcm streams, big-endian format is the default, but it can be changed
    with additional 'pcmC' sub-atom of audio sample description.

    Details can be found in ISO/IEC 23003-5:2020

    Fixes ticket #9763.
    Fixes ticket #9790.

    Patch simplified by Marton Balint.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mov.c
  • avfilter/vf_yadif : Fix handing of tiny images

    29 mai 2021, par Michael Niedermayer
    avfilter/vf_yadif : Fix handing of tiny images
    

    Fixes : out of array access
    Fixes : Ticket8240
    Fixes : CVE-2020-22021

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/vf_yadif.c
  • Set video's metadata by Python

    17 février 2023, par Anton Bohatov

    I need to upload the video to Google Photos. There is no way to set a date in request, only by metadata. I made a test by setting the date manually (windows, file options) and it works in Google Photos. So, I don't understand how to set it by Python. I found the needed value, but I can't set it.

    &#xA;

    import ffmpeg&#xA;&#xA;file_path = r"test.MP4"&#xA;vid = ffmpeg.probe(file_path)&#xA;&#xA;vid[&#x27;streams&#x27;][0][&#x27;tags&#x27;][&#x27;creation_time&#x27;]&#xA;

    &#xA;

    Result &#x27;2020-11-01T20:07:09.000000Z&#x27;

    &#xA;

    I tried vid[&#x27;streams&#x27;][0][&#x27;tags&#x27;][&#x27;creation_time&#x27;] = &#x27;2015-11-01T20:07:09.000000Z&#x27;

    &#xA;

    But nothing changes. Please help.

    &#xA;

    Note that this is about the video file's metadata, NOT WINDOWS DATA

    &#xA;