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)

  • Is there a way to non-linear speed-up video with ffmpeg ?

    3 mars 2020, par leoossa

    I’ve seen thousands of websites suggesting using setpts to speedup video

    ffmpeg -i input.mp4 -filter:v "setpts=0.5*PTS" output.mp4

    The thing is - I don’t want to speed-up video in a linear way. I want it to accelerate. So I want ’acceleration’ (Wiki) to be constant and ’speed’ to be growing.

    From what I’ve seen on ffmpeg docs setpts can be an equation, I tried to play with PREV_OUTPTS but with no success.
    Is it even possible to achieve that with ffmpeg ?

  • ffmpeg : How to speed up (and keep only) a specified portion of an input video

    17 avril 2020, par shrimpwidget

    In my input video is a 48 second range that I wish to speed up. I wish to save only that sped up portion to a new video.

    



    Solution :

    



    ffmpeg -y -ss 00:00:03 -t 00:00:48 -i input.mp4 -an -crf 20 -pix_fmt yuv420p -vf "scale=1080:-1, setpts=PTS/10.0" "output.mp4"


    


  • What are the required domains to know to make a video editor application for android ? with features like Speed, Rotation, Transition, Trim, Split

    19 avril 2020, par Mahfuz

    I wanted to make a Video Editor application for Android. But I am not sure whether only FFMPEG is enough or not. In this application I want to add features like Trim, Split, Filter, Speed, Rotation, Transition, Text, Music etc. I think only FFMPEG is not enough, some other Library or Domain I have to know. Can any one help on this ?