Recherche avancée

Médias (91)

Autres articles (66)

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

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

Sur d’autres sites (5200)

  • What is video_track_timescale in ffmpeg ? [duplicate]

    12 mai 2019, par Sasidharan S

    This question already has an answer here :

    Can some one explain what is exact meaning of video_track_timescale ?

    And how the value of video_track_timescale is fixed ?

    For example I saw some configuration with -video_track_timescale 1000 may I know why and how 1000 is used ?

  • avcodec/h264_ps : Return error if pps has FMO parameters

    13 février 2020, par Andriy Gelman
    avcodec/h264_ps : Return error if pps has FMO parameters
    

    FMO is not supported and fields related to FMO are not parsed, meaning
    that any fields which follow will be corrupt.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/h264_ps.c
  • How to merge 2 overlapping videos into one video using ffmpeg or opencv ?

    5 juin 2019, par Muhammad Umer

    Merging two videos is easy, been answered couple of times. What I have is multiple overlapping videos. A video might have overlaps with video before it. Meaning if video 1 covers 1-5 timeline then video 2 may overlap 1, and cover 3 to 8. Merging them as is would result in 1-5|3-8, when i need 1-8 only.

    Videos are alphabetically sorted.

    My general idea of solution is...

    • grab last frame of the video
    • if it’s first video continue
    • if it’s not first video, ie. 2nd, search for frame saved in previous steps frame by frame
    • if it reaches to last frame of current video then there is no overlap continue
    • if it founds a frame then clip 2nd video up to that frame inclusive and then go to next frame
    • once all videos have been analyzed, merge them into one video.

    I need to translate this to ffmpeg commands. Or opencv if that’s a better tool.

    If there is better way of doing that, I’m interested in that too.