Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (52)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (7221)

  • ffmpeg : Is there a way to create video from images and overlay on image at same time ?

    2 mai 2019, par sarkon

    I am trying to create a video from still images using ffmpeg. The command I use to do this is

    ffmpeg -y -r 3 -i input_images%03d.png -c:v libx264 -vf fps=24 -pix_fmt yuv420p output.mp4

    However, I would like to overlay this video on still image, without creating a video of the still image first. So, for example, if I have the following images

    [still, frame1, frame2, frame3]

    I’d like a command to create a video of frame1, frame2, and frame3 overlayed on still.

    all with one command. Is there a way to do this ?

    I’ve looked at several answers to related problems (e.g., Add image overlay on video FFmpeg) but they don’t answer my question, exactly.

  • how to put image files from one folder to make a video in python

    23 septembre 2015, par Gaurav16

    I have written a code to collect all image files from one folder, so that I can make a video out of it.

    But while compiling I getting an error saying "Error creating movie, return code: 4 Try running with --verbose-debug"

     #import numpy as np
    import matplotlib.pyplot as plt
    import matplotlib.animation as animation
    import glob, os
    from PIL import Image
    fig = plt.figure()
    #size = 128, 128
    ims=[]
    #print(len(ims))
    #im=Image.open(ims[5])
    #im.show()
    for infile in glob.glob("*.png"):
       file, ext = os.path.splitext(infile)
       im = Image.open(infile)
       im1=plt.imshow(im)
       ims.append([im1])
    print(len(ims))    
    ani = animation.ArtistAnimation(fig, ims)
    ani.save('MovWave.mpeg', writer="ffmpeg")
    plt.show()
  • vf_avgblur_opencl : Don't run kernel on pixels outside the image

    24 mars 2018, par Mark Thompson
    vf_avgblur_opencl : Don't run kernel on pixels outside the image
    

    The output frame size is larger than the image containing a subsampled
    plane - use the actual size of the image being written rather than the
    dimensions of the intended output frame.

    Reviewed-by : Dylan Fernando <dylanf123@gmail.com>

    • [DH] libavfilter/vf_avgblur_opencl.c