Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (50)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (6972)

  • changing frame-rate for .mov

    5 juin 2013, par Ryan Saxe

    So I have a script in python that uses urllib to download a bunch of images and I then use ImageMagick to add labels to the images and then throw them into a MOV file.

    My issue is that the MOV file is going at 30 frames per second, and that is way too fast for me to be able to watch what is happening. I need something that is more like 5-10 frames per second.

    Is there a way to do this in ImageMagick, FFmpeg or any other easily accessible and cross platform package ?

    EDIT 1 : showing my ImageMagick

    convert -quality 100 *.png my_movie.mov

    I wasn't able to find it, but is there some line I add like -frameRate or something like that to allow me to choose the frame rate ? I can also use FFmpeg along with it so if anybody knows, that would be greay

  • How to get perspective coordinates from file for image overlay with ffmpeg ?

    1er novembre 2016, par Victor.dMdB

    Is it possible to do something like this purely with ffmpeg ?

    Lets say we have a text file with the frame by frame coordinates for the 4 corners where the image should go. ffmpeg has a perspective filter, but how would one get ffmpeg to pull the frame coordinates from the text file ? I’m guessing with a pipe of sorts ?

  • ffmpeg horizonal flip makes video shorter

    26 mai 2020, par Adam Gosztolai

    I am trying to use the following command to flip my video horizontally

    



    ffmpeg -i video.mp4 -vf hflip -c:a copy video_flip.mp4


    



    However, I discovered that it makes the video shorter, which I did not intend.

    



    I originally created the video using FFMpegWriter in Python, the code looks something like this

    



    metadata = dict(title='video', artist='me', comment='Watch this!')
writer = FFMpegWriter(fps=25, metadata=metadata)
with writer.saving(fig, "video.mp4", 100):
    for t in range(100):
        ax.cla()        
        ax.plot(x,y)

        writer.grab_frame()


    



    What am I doing wrong ?