Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (99)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

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

  • Revision 5068 : En fait c’était l’animate qui cassait sur ff et flowplayer... on fait ...

    20 février 2011, par kent1 — Log

    En fait c’était l’animate qui cassait sur ff et flowplayer... on fait juste le truc en auto du coup

  • Should I compile with -mssse3 in the presence of ASM SSSE3 code ?

    19 juillet 2012, par Philos

    I have a question regarding compiling a build of x264 on GCC.

    x264 has assembly code dealing with instruction sets such as SSE3 and SSSE3 and by default has auto-vectorization disabled in the makefile.

    Should I compile it with the -mssse3 flag anyways or could that actually cause a loss in performance ?

    And does -mssse3 imply -msse3 or is SSE3 separate from SSSE3 ?

  • Stream input to stream output using avserver

    13 janvier 2014, par Gustavo Sgarbi Campos

    I'm trying to use the avserver package to re-stream my ip camera's stream in order to be able to record this stream and access it remotelly without having to stream it twice from the camera, to avoid overloading the wireless network.

    Following this link https://libav.org/avserver.html I came up with the following command :

    avserver -f /etc/avserver.conf & avconv -i http://user:password@192.168.1.121/videostream.asf http://localhost:80/feed1.ffm

    This gives me the following output

    avserver version 0.8.3-6:0.8.3-6ubuntu2, Copyright (c) 2000-2012 the Libav developers
    built on Oct  1 2012 15:03:26 with gcc 4.7.2
    avconv version 0.8.3-6:0.8.3-6ubuntu2, Copyright (c) 2000-2012 the Libav developers
    built on Oct  1 2012 15:03:26 with gcc 4.7.2
    Mon Jan 13 20:13:44 2014 AVserver started.
    [asf @ 0x153cac0] max_analyze_duration reached
    [asf @ 0x153cac0] Estimating duration from bitrate, this may be inaccurate
    Input #0, asf, from 'http://admin:gafit@192.168.1.121/videostream.asf':
    Duration: N/A, start: 0.000000, bitrate: 32 kb/s
    Stream #0.0: Video: mjpeg, yuvj422p, 320x240, 100 tbr, 1k tbn, 1k tbc
    Stream #0.1: Audio: adpcm_ima_wav, 8000 Hz, 1 channels, s16, 32 kb/s
    Incompatible pixel format 'yuvj422p' for codec 'mpeg1video', auto-selecting format 'yuv420p'
    [buffer @ 0x153ec80] w:320 h:240 pixfmt:yuvj422p
    [avsink @ 0x1544820] auto-inserting filter 'auto-inserted scaler 0' between the filter 'src' and the filter 'out'
    [scale @ 0x1543460] w:320 h:240 fmt:yuvj422p -> w:320 h:240 fmt:yuv420p flags:0x4
    [mp2 @ 0x1544aa0] Requested sampling rate unsupported using closest supported (16000)
    Mon Jan 13 20:13:50 2014 Feed '/tmp/feed1.ffm.ffm' stream number does not match registered feed
    Output #0, ffm, to 'http://localhost:80/feed1.ffm':
    Metadata:
    encoder         : Lavf53.21.0
    Stream #0.0: Video: mpeg1video, yuv420p, 320x240 [PAR 1:1 DAR 4:3], q=2-31, 200 kb/s, 1000k tbn, 60 tbc
    Stream #0.1: Audio: mp2, 16000 Hz, 1 channels, s16, 128 kb/s
    Stream mapping:
    Stream #0:0 -> #0:0 (mjpeg -> mpeg1video)
    Stream #0:1 -> #0:1 (adpcm_ima_wav -> mp2)
    Press ctrl-c to stop encoding
    Mon Jan 13 20:13:50 2014 127.0.0.1 - - [POST] "/feed1.ffm HTTP/1.1" 200 4096

    When I try to open this stream via VLC, using

    http://192.168.1.15/test.asf

    I get the following additional output

    Mon Jan 13 20:17:39 2014 192.168.1.6 - - [GET] "/test.asf HTTP/1.1" 200 115s dup=12210 drop=0    
    Mon Jan 13 20:17:39 2014 Codec for stream 0 does not use global headers but container format requires global headers
    Mon Jan 13 20:17:39 2014 Codec for stream 1 does not use global headers but container format requires global headers

    And I get nothing on VLC. I'm not quite sure what is going on or how to fix it, so any enlightning on this would be very welcome.

    Thank you all in advance !