Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (41)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

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

Sur d’autres sites (4969)

  • What do big video companies use to transcode video ? [on hold]

    26 juin 2013, par jays

    I'm reading about video transcoders, and it seems that every open source project out there uses ffmpeg as a backend.

    I'm curious as to what big companies like youtube and justin.tv use to transcode video on such a large scale, since ffmpeg can be a bit of a CPU/memory hog. Or is ffmpeg about as good performance as you can get ?

  • How to extract a video segment from a video using FFMPEG ?

    7 février 2013, par Wajih

    I am a newbie to FFMPEG, I am stuck at using FFMPEG to extract a segment of video. Since I am using the direct command line interface.
    What would be the command line arguments if I am to extract say, video from frame 0 to frame 100000 or if I wanted to extract a video segment of 1 hour from a video that is 5 hours long ?

    Thanks !

  • Extract specific frames of youtube video without downloading video

    22 janvier 2023, par Kashish Arora

    I need to extract specific frames of an online video to work on an algorithm but I don't want to download the whole video because that would make it highly inefficient.

    


    For starters, I tried working with youtube videos. I can download whole of the video using youtube-dl in this way :

    


    ydl_opts = {'outtmpl': r'OUTPUT_DIRECTORY_HERE',}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
    ydl.download([url])


    


    And then I can capture individual frames.

    


    I need to avoid downloading the whole video. After some research, I have found that ffmpeg might help me do this. I found no way to download just the frames so if this is not possible, the second option is that I can download specific portions of the video. One such example in linux is here but I couldn't find any solution for python.

    


    What is a good way to download just the frames, or portions of videos (in python) without downloading the entire thing ?