Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (111)

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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (15754)

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