Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (40)

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

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

  • fftools/ffmpeg : move elapsed time counter to the end of the status line

    9 mai, par Marton Balint
    fftools/ffmpeg : move elapsed time counter to the end of the status line
    

    Elapsed time is much less important than the actual progress, and I am guessing
    several ffmpeg CLI frontends use the existing status line for showing progress,
    so putting a new field in the beginning is less optimal anyway.

    Related to ticket #11582.

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

    • [DH] fftools/ffmpeg.c
  • avformat/hlsenc : correctly reset subtitle stream counter per-varstream

    16 août 2024, par Timo Rothenpieler
    avformat/hlsenc : correctly reset subtitle stream counter per-varstream
    

    Without resetting it, if there was a previous set of varstreams with
    subtitles, it would subtract from all the streams, leading to chaos and
    segfaults when trying to access for example stream -1.

    • [DH] libavformat/hlsenc.c
  • Add a seconds counter text to a sliced video with ffmpeg that starts from 0

    16 mars 2024, par virtualdj

    I'm trying to convert a small part of a screen recording video into a GIF with ffmpeg. I would like to add a seconds counter on it as the frame rate of the GIF file is reduced, so I can guess the time passing from the counter.

    &#xA;

    Normally, assuming to start at 43 seconds and cutting after 33 seconds, the example video would have been encoded to GIF with :

    &#xA;

    ffmpeg -i in.mp4 -vf "scale=300:-1,fps=5,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" -ss 43 -t 33 out.gif&#xA;

    &#xA;

    To print the timecode, I add the following after fps=5, :

    &#xA;

    drawtext=text=&#x27;%{pts\:hms}&#x27;:font=&#x27;Arial&#x27;:fontcolor=red:fontsize=14:x=(w-text_w)/2:y=(h-text_h-6),&#xA;

    &#xA;

    Doing so, prints a timecode on the output that starts from 00:00:43.000, not from zero. Similarly the timecode option :

    &#xA;

    drawtext=text=&#x27;&#x27;:font=&#x27;Arial&#x27;:fontcolor=red:fontsize=14:x=(w-text_w)/2:y=(h-text_h-6):timecode=&#x27;00\:00\:00\:00&#x27;:timecode_rate=5,&#xA;

    &#xA;

    will ouput 00:00:43:0. There doesn't seem to have a way to use the "output" timecode (that starts from 0) ; also, I would like to have the seconds only.

    &#xA;

    How can I do that ?

    &#xA;