Recherche avancée

Médias (91)

Autres articles (102)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Monitoring de fermes de MediaSPIP (et de SPIP tant qu’à faire)

    31 mai 2013, par

    Lorsque l’on gère plusieurs (voir plusieurs dizaines) de MediaSPIP sur la même installation, il peut être très pratique d’obtenir d’un coup d’oeil certaines informations.
    Cet article a pour but de documenter les scripts de monitoring Munin développés avec l’aide d’Infini.
    Ces scripts sont installés automatiquement par le script d’installation automatique si une installation de munin est détectée.
    Description des scripts
    Trois scripts Munin ont été développés :
    1. mediaspip_medias
    Un script de (...)

Sur d’autres sites (4760)

  • Video encoding libraries for Windows

    8 février 2012, par John

    ffmpeg is a widely used cross-platform library. But it doesn't support Visual C++, meaning you have to jump through hoops.

    And considering they say the following, it's clear they don't give $0.02 about MSVC users and that makes me uncomfortable for a serious project.. how can one of the most widely used cross-platform libraries not support the most common toolset on the most common OS ?

    There have been efforts to make FFmpeg compatible with MSVC++ in the
    past. However, they have all been rejected as too intrusive,
    especially since MinGW does the job adequately. None of the core
    developers work with MSVC++ and thus this item is low priority. Should
    you find the silver bullet that solves this problem, feel free to
    shoot it at us.

    We strongly recommend you to move over from MSVC++ to MinGW tools.

    It seems unlikely all the Windows developers are doing all this messing about, so are there more Windows-friendly libraries around ?

  • How does one go about undoing an avformat_seek_file call in libavcodec ?

    2 juillet 2020, par John Allard

    I have an application written around libavcodec that sometimes attempts to seek ahead in a video while performing some work. The call to avformat_seek_file can only seek to a keyframe, so sometimes I end up in a situation where it ends up seek backwards from my current position in the decoding routine causing me to have to repeat work. For example, if I'm on frame 150 and I want to seek to frame 200, but the only key frames in the file are on frames 1 and 100, this call will have me seek back to frame 100, meaning I now have to decode 100 frames to get to 200 instead o 50 frames to get to 200 from my original decoding position of frame 150.

    


    Is there a way for me to tell avformat_seek_file to undo its last seek and reset me to my previous location ? Is there some other way for me to "save" my decoding state to undo this wrongful seek manually ?

    


    edit - it should be noted that my videos are always h264 encoded in an mp4 container.

    


  • (no accepted answer) How to merge 2 overlapping videos into one video using ffmpeg or opencv ?

    3 janvier 2021, 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.