Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (10393)

  • Ffmpeg zoompan circle rotate angle zoomin ! Is it possible ?

    6 mai 2022, par Rino

    I want the zoomin to come as circle as showen on video if possible.
Image to animated video using ffmpeg zoompan(optional)

    


    Tried this one got error : 'not found option rotate'

    


    ffmpeg -i img001.jpg \
  -vf "zoompan=z='min(zoom+0.0005,1.5)':\
               y='if(gte(zoom,1.5),y,y+1)':
               x='x':
               d=225:
               rotate=-3*PI/180" \
  -c:v libx264 -t 10 output4.mp4


    


    Tried also this one, no luck, not what i wanted :(

    


    ffmpeg -i img001.jpg 
  -vf "zoompan=z='min(zoom+0.0005,1.5)':
               y='if(gte(zoom,1.5),y,y+1)':
               x='if(gte(zoom,1.5),x,x+1)':
               d=225" \
  -c:v libx264 -t 10 output4.mp4


    


    The effect shown in 3 seconds :
Sample video (min 3:17 - 3:20)
Sample video

    


    Any help is appreciated thanks

    


  • Can I pass a list of image into the input method of ffmpeg-python

    31 janvier 2023, par se7en

    My task involves using ffmpeg to create video from image sequence.
the code belows solves the problem.

    


    import ffmpeg

video = ffmpeg.input('/path/to/images/*.jpg', pattern_type='glob',framerate=20).output(video.mp4).run()


    


    However since the image data we are getting follows the pattern

    


    1.jpg,
2.jpg,
3.jpg
.
.
20.jpg
.
.
100.jpg


    


    the video get created with the glob pattern 1.jpg, 100.jpg, 11.jpg, 12.jpg, ... 2.jpg, 20.jpg, 21.jpg ... which is very unpleasant to watch.

    


    Is there anyway I can pass a list or anything else aside a path/glob pattern where the images are sorted in order.
Also as a bonus I will be happy if I can choose which files to add as an the input method input()

    


  • FFmpegWrapper - get exact segment start or end times ?

    21 décembre 2015, par Stefan Kendall

    Right now, I’m using FFmpegWrapper, and I watch for changes via kernel events. This gets the segments when they’re created, but I’m not sure how accurate this is.

    Really, I want to know the presentation timestamp of when the hls segment is created. Right now I capture and encode frames manually and write packets via
    FFOutputFile *outputFile;
    [_outputFile writePacket:_packet error:&error];

    So I have each frame’s presentationTimestamp, but I don’t know which frame goes to which eventual MPEG-TS segment. Once I write to the FFOutputFile, it’s a blackbox to me.

    Is there any way to know what frame will go to what segment ahead of time, or get a callback from FFmpeg when a new segment is written ?

    Exact times are ideal. Close times are better. Watching the directory for new files via kernel events is what I have right now, so any solution of that time magnitude isn’t useful.