Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (36)

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

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (7167)

  • fate : update ref file for apng-clock test

    22 mars 2017, par James Almer
    fate : update ref file for apng-clock test
    
    • [DH] tests/ref/fate/apng-clock
  • ffplay : if playing only audio or video only, show the master clock diff in status...

    11 mai 2013, par Marton Balint
    ffplay : if playing only audio or video only, show the master clock diff in status line
    

    Showing A-V diff has no use if there is no audio and video stream, but showing
    the audio or video clock difference to the master clock can be useful.

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

    • [DH] ffplay.c
  • ffmpeg setpts to wall clock

    16 juin 2017, par VMM2017

    I want to reset PTS to wall clock. I am using setpts filter as follows :
    My command line is as follows :

    ffmpeg -y -re -i ${SOURCE} \ -vf setpts='(RTCTIME-RTCSTART)/(TB * 1000000)' -af asetpts='N/SR/TB' \ -c:v libx264 \ -c:a aac \ ${DEST}

    It seems like setpts='(RTCTIME-RTCSTART)/(TB * 1000000)' has no effect.

    With and without filter output pts stays same.

    What am I doing wrong ?