Recherche avancée

Médias (91)

Autres articles (35)

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

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • Les thèmes de MediaSpip

    4 juin 2013

    3 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
    Thèmes MediaSPIP
    3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...)

Sur d’autres sites (4027)

  • avcodec/adpcm : Use smaller scope for some variables

    8 juin 2021, par Andreas Rheinhardt
    avcodec/adpcm : Use smaller scope for some variables
    

    This is to avoid unused variables warnings after the code for
    the disabled encoders has been #if'ed away which will happen in
    a subsequent commit.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/adpcm.c
  • Most efficient way for ffmpeg to make thumbnails ? [Windows 10]

    26 janvier 2017, par gregm

    I normally use ThumbnailMe to make contact sheets of thumbnails. My default setting is 15 rows x 5 columns, so 75 images, in videos that are anywhere from 45 minutes to around 90 minutes. ThumbnailMe makes a contact sheet of this size virtually instantaneously. A recent requirement to make a LOT of contact sheets for a LOT of videos has me looking at a command line option so I can do these in batches. I’ve tried a couple different ways to make the thumbnails from the command line :

    ffmpeg -ss 300 -i myvideo.avi -vf fps=1/300 %d.jpg

    or

    ffmpeg -i myvideo.avi -vf fps=1/60 %d.jpg

    No matter which of these methods I use it takes roughly a minute to make just 16 screenshots (from there I would use ImageMagick to make the contact sheet). As I said above, ThumbnailMe can make a 15x5 grid of images at the mere press of a button. ThumbnailMe is built on an older command line program, Movie Thumbnailer, which I think used an old version of ffmpeg, or at least the codec libavcodec.

    If these other programs can create thumbnails so quickly why does it take ffmpeg so long to make them for me ? Even if I output the screenshots in a very small size, say 50x50, it still takes 2 secs for each image to be created.

  • swresample/resample : do not assert compensation_distance on rebuild_filter

    17 mars 2017, par Muhammad Faiz
    swresample/resample : do not assert compensation_distance on rebuild_filter
    

    when set_compensation is called with zero sample_delta,
    compensation does not happen (because dst_incr == ideal_dst_incr)
    but compensation_distance is set

    regression since 01ebb57c03abde89bca7bdbc552917efcb8f551d

    Found-by : wm4 <nfxjfg@googlemail.com>
    Reviewed-by : wm4 <nfxjfg@googlemail.com>
    Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>

    • [DH] libswresample/resample.c