Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (53)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (6076)

  • unable to concat mass number of videos in ffmpeg [duplicate]

    25 mai 2021, par JohnTerry

    I want to concat n number of videos together using ffmpeg which can also have more than one codec or different resolutions. I know how to do it with fixed number of videos but input_videos.txt can contain any unknown number of videos. I checked relative posts but they did not have a solution for my problem.

    


    the command i am using for concatenating videos is -

    


    cmd = "ffmpeg -safe 0 -f concat -protocol_whitelist file,http,https,tcp,tls,crypto -segment_time_metadata 1 -i {} -vf select=concatdec_select,scale=1280:720 -af aselect=concatdec_select,aresample=async=1 -c:v libvpx-vp9 -deadline good -cpu-used 5 -c:a libopus {}".format(input_videos.txt, output_video.webm)


    


  • FFMPEG : AAC Number of bands exceeds limit

    6 avril 2017, par user1902291

    I am using the FFMPEG C API to decode the audio in an MP4 file.

    My code works when decoding an OGG or MP3 file, but fails on the first frame of AAC audio in an MP4

    I get this error from

    avcodec_send_packet(codecContext, packet)

    [aac @ 0x7f80eb9e3a00] Number of bands (31) exceeds limit (5)

    What is the "number of bands" and how do I increase it ? What does this message really mean ?

    Thank you in advance

  • Changing the number of frame in matlab [on hold]

    18 décembre 2015, par medic911

    I use ffmpeg for the decomposition of video on frames. I use this command :

    ffmpeg -i Barrier.avi -y -r 5 obrazek%03d.tif

    I want to work with the frames in MATLAB.
    Is it the opportunity to change the number of frames per second using code ? Can I change the number of frames per second in MATLAB ?