Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (49)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • FFmpeg Reloading Changed image overlay whilst using a complex filter/

    23 mai 2017, par Johan Meh

    I am currently using this code to overlay an image over a stream . I would like to change the image being overlayed regularly. I am using a second script to cp a randomly selected jpg from a folder to a specific folder/advert.jpg every minute. When i run ffmpeg it keeps on using the original image even though the original image in the directory would have been overwritten.

    ffmpeg  -re  -i  "http://127.0.0.1:8000/251.m3u8" -loop 1 -i "/home/johan/CurrentAd/advert.jpg" -filter_complex "[1]trim=0:600,fade=in:st=0:d=2:alpha=1,fade=out:st=8:d=2:alpha=1,loop=999:1750:0,setpts=N/5/TB[w];[0][w]overlay=(W-w)/2:(H-h)/2:shortest=1" /var/www/html/sevo/sevo.m3u8  >/dev/null
  • mp3 and multiple image convert to mp4 [on hold]

    16 mai 2017, par Henrik C Wiberg

    I need some guidance to convert an mp3 audio file, along with multiple photos to an mp4 file, using php/laravel.

    It must end with a mp4 file with a slideshow of images along with an audio file.

    How do you recommend me to begin the task ?
    I have this Json :

    {
    - data [
    {
       id: 1,
       name: "item 1",
       image: "image_1.jpg",
       start: "2017-01-01T02:00:00",
       end: "2017-01-01T02:30:00"
     },
     {
       id": 2,
       name: "item 2",
       image: "image_2.jpg",
       start: "2017-01-01T02:31:00",
       end: "2017-01-01T02:50:00"
     },
     {
       id": 3,
       name: "item 3",
       image: "image_3.jpg",
       start: "2017-01-01T02:51:00",
       end: "2017-01-01T03:00:00"
     }
    ],
    - meta {
      audiofile: {
       mp3: 'example.com/audio/audiofile.mp3',
       start: "2017-01-01T02:00:00",
       end: "2017-01-01T03:00:00"  
    }
    }  

    This json must be converted to one mp4 file, where image has to be placed and displayed on a timeline while ’audiofile.mp3’ is playing.

    Or do you know some code samples I can see ? :-)

  • ffmpeg - slideshow from set of images ignoring first image

    24 novembre 2013, par Vishnu

    I can create slideshow with below command

    ffmpeg -y -f image2 -r 1/15 -i image%d.jpeg -y -r 45 video.mp4

    Video is created successfully ,, but its ignoring the 1st image..

    for example in current folder i have

    image1.jpeg
    image2.jpeg
    image3.jpeg

    but slide show is created with image2.jpeg and image3.jpeg only..(i.e 30 second video with 2 image is created..but i expected 45 second video with 3 images displaying 15 sec per image)