Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (66)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (14702)

  • avdevice/dshow : handle unknown sample time

    21 décembre 2021, par Diederick Niehorster
    avdevice/dshow : handle unknown sample time
    

    GetTime may return an error indication that the sample has not
    timestamps, or may return a NULL start time. In those cases, fall back
    to graph time. Emit log when that happens.
    Improve logging in the frame receive function : now logged against
    correct avclass instead of NULL.
    Better debug message in case sample dropped : could now be audio or
    video frame.

    Signed-off-by : Diederick Niehorster <dcnieho@gmail.com>
    Reviewed-by : Roger Pack <rogerdpack2@gmail.com>

    • [DH] libavdevice/dshow_pin.c
  • Unable to get current time in TCL. can i use flush here ?

    30 novembre 2017, par M. D. P

    unable to get current time for the bellow code :

    proc a {} {

            for {set i 0} {$i &lt; 3} {incr i} {
       puts " $i "


                    set imagetime [clock format [clock seconds] -format %Y%m%d_%H%M%S]
                    set videotime [clock format [clock seconds] -format %Y%m%d_%H%M%S]
       
                    exec ffmpeg -f dshow -i "video=Integrated Webcam" -s 1280x720 -benchmark c:/test/Image_$imagetime.jpg >&amp; c:/test/image_$imagetime.txt &amp;

                    after 15000

                    exec ffmpeg -f dshow -t 00:00:10 -i "video=Integrated Webcam" -s 1280x720 -benchmark c:/test/video_$videotime.avi >&amp; c:/test/video_$videotime.txt &amp;
                   
                    after 15000
            }
    }
    a

    the output is :

    enter image description here

    the problem here is, even though the variable for taking video time and image time is different, it is tacking same time for video and image.

    any reason or solution for this ????

    can i use flush command ???

    can i work with following code :

    proc a {} {

            for {set i 0} {$i &lt; 3} {incr i} {
       puts " $i "

    set time [clock format [clock seconds] -format %Y%m%d_%H%M%S]
                         
                    exec ffmpeg -f dshow -i "video=Integrated Webcam" -s 1280x720 -benchmark c:/test/Image_$time.jpg >&amp; c:/test/image_$time.txt &amp;

                    after 15000

                    exec ffmpeg -f dshow -t 00:00:10 -i "video=Integrated Webcam" -s 1280x720 -benchmark c:/test/video_$time.avi >&amp; c:/test/video_$time.txt &amp;
                   
                    after 15000
            }
    }
    a

    any answer ??

  • Could a compression algorithm be lossless and lossy at the same time ?

    27 octobre 2014, par Pasta Fresca

    I have seen ffmpeg has some codecs (e.g. H.264) which are defined as lossless and lossy at the same time, and from my understanding, lossless and lossy are mutually exclusive : a compression algorithm either losses information or doesn’t.

    How is it possible to be lossless and lossy at the same time ?

    Running ffmpeg -codecs 2>/dev/null| grep h264, I get :

    DEV.LS h264                 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 [...]

    DEV.LS stands for Decoder, Encoder, Video, Not only intraframe compression, Lossy compression, Lossless compression.