Recherche avancée

Médias (91)

Autres articles (62)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (12070)

  • Uploading & Processing Videos in Rails app on Heroku

    8 octobre 2015, par scientiffic

    In my Rails app, users can upload videos. The videos need to get converted to mp4s to ensure they can play across browsers, and they are hosted on AWS S3.

    If the video conversion (using ffmpeg) happens quickly, the resulting mp4 is rendered directly on the page so the user can immediately view the uploaded video. Sometimes, though the conversion takes long enough that I get Heroku H12 errors (request timeout), which prevents the video preview from appearing.

    Is there a recommended workflow for dealing with processing larger files in a Rails app using Heroku ?

    The option that immediately comes to mind is processing in a background task using something like Sidekiq, but then the user doesn’t receive feedback when the upload is complete.

  • Stream Multiple Videos Using FFMPEG

    21 août 2020, par Devin Dixon

    I am currently streaming videos as such :

    


    


    ffmpeg -re -i video.mp4 -maxrate 3000k -bufsize 6000k -c:v libx264
-preset superfast -tune zerolatency -strict -2 -c:a aac -ar 44100 -f flv rtmp::locahost/live/123

    


    


    Let's say I have video1.mp4, video2.mp4, video3.mp4. Each might have a different resolution.

    


    Is there a way to stream them one right after each other in one command ?

    


  • FFMPEG concatenate 2 random and different videos

    7 mars 2019, par Abibad Abdou

    I am trying to make an app in which users can send a video and it will be concatenated with other videos automatically. So the videos are in random formats, but I am converting them before concatenation using this command :

    ffmpeg -y -i {orginalVideo.itsExtention} -vcodec wmv2 4.wmv

    For the concatenation I have the following command :

    ffmpeg -y -i concat.wmv -i 4.wmv -filter_complex "[0:0][0:1][1:0][1:1] concat=n=2:v=1:a=1" output.wmv

    but I get the following error

    Input link in1:v0 parameters (size 640x480, SAR 1:1) do not match the corresponding output link in0:v0 parameters (1080x1920, SAR 1:1)

    Failed to configure output pad on Parsed_concat_0
    Error reinitializing filters!
    Failed to inject frame into filter network: Invalid argument
    Error while processing the decoded data for stream #1:0

    Thank you for your answer