Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (50)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

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

Sur d’autres sites (5826)

  • Capture Windows screen with ffmpeg

    4 mars 2021, par kamae

    The ffmpeg is cross-platform and very powerful software to handle video/audio or to stream it.
On Linux ffmpeg can capture X11 screen with a command below :

    



    ffmpeg -f x11grab -r 25 -s cif -i :0.0 out.mpeg


    



    But is it possible to grab Windows Desktop with ffmpeg ?

    


  • how to put EXEC command in loop in TCL with windows platform

    26 février 2019, par M. D. P

    how to put EXEC command in loop in TCL with windows platform.

    I need to run EXEC command continuously. but the problem after its first execution it stops.

    my code is

    proc a {} {
     set a 1
     for {set i 0} {$i < 10} {incr i} {
       puts "I inside first loop: $i"
       exec ffmpeg -f dshow -benchmark -i "video=Integrated Webcam" \
               -s 1280x720 c:/test/sample_image.avi
     }
    }
    a

    The above program should capture 10 video. but it captures only one video and comes out from the loop and stops the execution.

    can any of my friend help me by providing me the answer with the required modification in code.

  • Get memory utilization and time required for "proc" in TCL script on windows platform ?

    22 novembre 2017, par M. D. P

    I want to display memory utilization and the time taken by the "proc" in the TCL script on windows platform. My TCL script with "proc" is as follows :

    proc videocapture {} {

    exec ffmpeg -f dshow -t 00:00:10 -i "video=Integrated Webcam" c:/test/sample-a.avi >& temp.txt &

    }
    videocapture

    // above program is TCL script which captures video in background