Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (49)

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

  • ffmpeg speed up video - Windows

    19 mars 2019, par Flash Thunder

    In manual it says :

    ffmpeg -i input.mkv -filter:v 'setpts=0.5*PTS' output.mkv

    But when I run :

    ffmpeg -i input.mp4 -filter:v 'setpts=0.5*PTS' speedup.mp4

    I get an error :

    [AVFilterGraph @ 0000000002500600] No such filter: 'setpts=0.5*PTS'
    Error opening filters!

    Not sure if it means that filter can’t be opened at all or simply this filter is not available.

    How do I run it correctly ? Or maybe my release does not support it, then where can I get the release that would work right ? Win32/x64 binary

  • How to change video speed by ffmpeg ?

    17 mai 2019, par Pooja Jadav

    I’m using ffmpeg for video filter.

    But, When I changed video speed, that time I got issue

    • Audio is longer than video :

      ffmpeg -i INPUT.mp4  -filter:v setpts=0.5*PTS -shortest -y -preset ultrafast OUTPUT.mp4

    I want to set audio’s length same as video’s length.

    • shortest = to extend audio streams to the same length as the video stream

    In my case, shortest is not working. Video file and audio file, both are different and then after merging in a video file. Video’s last frame stop and audio is continued working.

  • How to speed up ffmpeg when working with multiple files ?

    6 mai 2019, par OBX

    I have 100,000 files which I need to convert from .mp3 to .wav . However, at the moment it takes 1 minute to convert 10 files each of 1 hour duration.

    Here’s what I tried :

    for i in *.mp3
    do
        ffmpeg -i "$i" -acodec pcm_s16le -ac 1 -ar 16000 "stm/$(basename -s .mp3 "$i").wav"
    done

    Also tried GNU parallel as well, which takes same time as well :

    find ./set/ -name "*.mp3" | parallel 'ffmpeg -i {} -acodec pcm_s16le -ac 1 -ar 16000 {.}.wav'

    Is there a better hack to process the same in less time ?