Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (64)

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

  • ffmpeg batch convert mp3 to mp4 using a jpg with original names

    26 mars 2015, par Pixeldood

    I have huge number of mp3 files that i need to upload to youtube as 1080p .mp4 h264 files

    The question is :

    1. i need to use a shorty video loop or jpg for the output mp4 video merged with the original mp3
    2. the original file names are like artist-songname.mp3 for the output i need to capitalize the filenames first letters like "Artist-Songname.mp3"
      or at least how can i make the output the same name.
    3. i get it to work this much as below.

      ffmpeg -loop 1 -i hd.jpg -i original.mp3 -shortest -c:v libx264 -c:a copy output.mp4

  • What does the size used in ffmpeg logging indicate ?

    28 septembre 2020, par Jop Knoppers

    I am using FFmpeg to read a RTSP stream.

    


    FFmpeg sometimes gives a error message 'Past duration x.xx to large' including the following data in the logging :

    


    frame=174635061 fps=24 q=-0.0 size=875425493kB time=312:09:56.45 bitrate=32350.1kbits/s dup=3424 drop=5


    


    In my case 'size' is huge, I would like to understand what 'size' is indicating.
I have not been able to find a answer in the documentation at http://ffmpeg.org/documentation.html

    


    FFmpeg version : 3.2.15

    


  • How to make a nonstreamable mp4 streamable from a JS browser client ?

    14 mai 2020, par Daniel Kobe

    For my service we are sending videos that need processing. Unfortunately some of the videos are non streamable. By that I mean the metadata information is at the end of the file and not the beginning. With ffmpeg you can make a video streamable with this command : ffmpeg -i source.mp4 -a:v copy -a:c copy -movflags faststart output.mp4

    



    Is there anyway I can replicate ffmpegs faststart logic from a JS client ?

    



    I see that there are libaries like ffmpeg.js but I was hoping to avoid having a huge library in the code.