Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (53)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Les images

    15 mai 2013
  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

Sur d’autres sites (7337)

  • Révision 18763 : Suppression de la prise en charge des tailles d’images en CSS inline, qui avait ...

    29 novembre 2011, par RastaPopoulos -

    SPIP 3 n’a pas à supporter IE6, notamment si c’est au détriment de la compatibilité avec les CSS actuelles (par exemple les grilles CSS qui redimensionnent les images suivant la largeur des colonnes).

  • Insert placeholder frames for non-sequential images-to-video with ffmpeg ?

    12 avril 2021, par Demi

    Is it possible to insert frames into a ffmpeg video thats made from images ?
I have thousands of images that have gaps such as

    


    1
2
50
89
300
etc...


    


    Can ffmpeg make a video from these and then insert an image for like 20 frames in between each to see that there is a gap when playing ?

    


  • Pipe PIL images to ffmpeg stdin - Python

    19 juillet 2017, par bluesummers

    I’m trying to convert an html5 video to mp4 video and am doing so by screen shooting through PhantomJS over time

    I’m also cropping the images using PIL so eventually my code is roughly :

    while time() < end_time:
       screenshot_list.append(phantom.get_screenshot_as_base64())
    .
    .
    for screenshot in screenshot_list:
       im = Image.open(BytesIO(base64.b64decode(screenshot)))
       im = im.crop((left, top, right, bottom))

    Right now I’m saving to disc all those images and using ffmpeg from saved files :

    os.system('ffmpeg -r {fps} -f image2 -s {width}x{height} -i {screenshots_dir}%04d.png -vf scale={width}:-2 '
         '-vcodec libx264 -crf 25 -vb 20M -pix_fmt yuv420p {output}'.format(fps=fps, width=width,
                                                                     screenshots_dir=screenshots_dir,
                                                                     height=height, output=output))

    But I want instead of using those saved files, to be able to pipe the PIL.Images directy to ffmpeg, how can I do that ?