Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (98)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (17312)

  • lavfi/vf_libplacebo : generalize frame update to multiple inputs

    15 juin 2023, par Niklas Haas
    lavfi/vf_libplacebo : generalize frame update to multiple inputs
    

    In the event that some frame mixes are OK while others are not, the
    priority goes :

    1. Errors in updating any frame -> return error
    2. Any input incomplete -> request frames and return
    3. Any inputs OK -> ignore EOF streams and render remaining inputs
    4. No inputs OK -> set output to most recent status

    This logic ensures that we can continue rendering the remaining streams,
    no matter which streams reach their end of life, until we have no
    streams left at which point we forward the last EOF.

    • [DH] libavfilter/vf_libplacebo.c
  • Problem about get the video from webcam in julia

    12 août 2020, par Wendy Chen

    I used this code to get the video from webcam in julia, but it was unstable when I setting the time exceed 4 and one half minutes(ex. -t 00:05:00). Why is that so ? And what should I do ?
Thanks.

    


    using  PyCall
run(`$(PyCall.python) -m pip install ffmpy`)
ffmpy = pyimport("ffmpy")
ff=ffmpy.FFmpeg(
     inputs=Dict("rtsp://......@....."=>nothing),
     outputs=Dict("./Video.mp4"=>"-t 00:01:00"))
println(ff.cmd)
ENV["PATH"]="PATH/TO/ffmpeg.executable;"*ENV["PATH"]
ff.run()


    


  • How to capture screenshots from a video clip 50 minutes into the clip and do it fast ?

    3 janvier 2015, par Mint

    Ok it seems that whenever I tell ffmpeg to take a screen cap half way though the clip (clip can be as long as 10 hours) it uses 100% of 1 cpu core and takes ages… whereas if I let it do a frame at the start it goes real quick, as if it scans though the video to get to the middle instead of just jumping to it !

    Here is the code im currently using :

    ffmpeg -y -itsoffset -“500"  -i “clipname.mov" -vcodec png -vframes 1 -an -f rawvideo “clipScreenshot001.png”

    This can take several minutes.

    These are HD videos too, 720p/1080p and allot of the time they are raw unedited clips (e.g. very long).

    So I was hoping for some better software that will make screen captures from video much faster (has to be linux and scriptable).