Recherche avancée

Médias (0)

Mot : - Tags -/publication

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

Autres articles (40)

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

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (7384)

  • How to increase the speed of the FFMPEG output to S3 bucket

    21 novembre 2020, par kmrinmoy07

    I am using ffmpeg to convert audio into different qualities using ffmpeg and then store the output into S3 bucket. But i saw that the rate of completion of the work is very slow as compared to completion of work into local storage directory in my server.

    


    Here is my Ffmpeg command -

    


        ffmpeg -i input.mp3 -ab 96k -f mp3 pipe:1 | aws s3 cp - s3://mybucket/output.mp3


    


    Can you please help me to increase the speed of the completion of work.

    


  • 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 ?

  • 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 ?