Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

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)

  • How to set audio speed to 0.3 in Ffmpeg ?

    15 septembre 2020, par WebDiva

    I am using ffmpeg to set the audio and video speed to 0.3x. I can set the video speed but can't set the audio speed to 0.3x. Here is the command

    


    ffmpeg -y -i video.mp4 -vf "setpts=PTS/0.3" -r 50 -c:v mpeg4 -b:v 1500k -af "atempo=0.3" output.mp4


    


    It says :

    


    Value 0.300000 for parameter 'tempo' out of range [0.5 - 100]


    


    Is there a workaround ? Any help will be appreciated. Regards.

    


  • How can I speed up this side by side video stitch in FFMPEG

    21 octobre 2020, par ianf

    I have two videos the same size and pixel format (about 240x360) left and right that I want to stitch together.

    


    I'm using :

    


    ffmpeg -i left.mp4 -i right.mp4  -filter_complex "[0:v][1:v]hstack=inputs=2:shortest=1[v]; [0:a][1:a]amerge[a]" -map "[v]" -map "[a]" -ac 2 -shortest -y output.mp4


    


    which takes about 15 seconds on a 3 core machine. I see x1.25 on the conversion line.

    


    I know this isnt too bad, but any speed up I can make is going to help a lot as its in heavy use.

    


    Any ideas how I can improve this ?

    


  • How to speed up the ffmpeg video compression in android ? [duplicate]

    27 février 2017, par Anantha Babu

    This question already has an answer here :

    I am using following command to compress video in android . But it takes more time. e.g for 1 min video it takes 50sec to compress.

    -y -i "+mInputPath+" -vf -s 640x480 -threads 5 -preset ultrafast -strict -2 "+mOutputPath.getAbsolutePath();

    Does anyone know how to increase speed ?