Recherche avancée

Médias (91)

Autres articles (81)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (16183)

  • ffmpeg converts .flv video to .gif with awful quality [migrated]

    22 février 2013, par Kamil Hismatullin

    I'm converting .flv movie to .gif file with ffmpeg.

    ffmpeg -i input.flv -ss 00:00:00.000 -pix_fmt rgb24 -r 10 -s 320x240 -t 00:00:10.000  output.gif

    It works great, but output gif file has a very law quality.

    Any ideas how can I improve quality of converted gif ?

    Output of command :

    $ ffmpeg -i input.flv -ss 00:00:00.000 -pix_fmt rgb24 -r 10 -s 320x240 -t 00:00:10.000  output.gif

    ffmpeg version 0.8.5-6:0.8.5-0ubuntu0.12.10.1, Copyright (c) 2000-2012 the Libav developers
     built on Jan 24 2013 14:52:53 with gcc 4.7.2
    *** THIS PROGRAM IS DEPRECATED ***
    This program is only provided for compatibility and will be removed in a future release. Please use avconv instead.
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'input.flv':
     Metadata:
       major_brand     : mp42
       minor_version   : 0
       compatible_brands: isommp42
       creation_time   : 2013-02-14 04:00:07
     Duration: 00:00:18.85, start: 0.000000, bitrate: 3098 kb/s
       Stream #0.0(und): Video: h264 (High), yuv420p, 1280x720, 2905 kb/s, 25 fps, 25 tbr, 50 tbn, 50 tbc
       Metadata:
         creation_time   : 1970-01-01 00:00:00
       Stream #0.1(und): Audio: aac, 44100 Hz, stereo, s16, 192 kb/s
       Metadata:
         creation_time   : 2013-02-14 04:00:07
    [buffer @ 0x92a8ea0] w:1280 h:720 pixfmt:yuv420p
    [scale @ 0x9215100] w:1280 h:720 fmt:yuv420p -> w:320 h:240 fmt:rgb24 flags:0x4
    Output #0, gif, to 'output.gif':
     Metadata:
       major_brand     : mp42
       minor_version   : 0
       compatible_brands: isommp42
       creation_time   : 2013-02-14 04:00:07
       encoder         : Lavf53.21.1
       Stream #0.0(und): Video: rawvideo, rgb24, 320x240, q=2-31, 200 kb/s, 90k tbn, 10 tbc
       Metadata:
         creation_time   : 1970-01-01 00:00:00
    Stream mapping:
     Stream #0.0 -> #0.0
    Press ctrl-c to stop encoding
    frame=  101 fps= 32 q=0.0 Lsize=    8686kB time=10.10 bitrate=7045.0kbits/s dup=0 drop=149    
    video:22725kB audio:0kB global headers:0kB muxing overhead -61.778676%

    Thanks.

  • FFmpeg audio capturing from mic is not working properly

    5 mars 2013, par Thirumalai murugan

    I am using the ffmpeg-20130205-git-c2dd5a1-win64-static version, I am trying to capture the audio and video and send it to the FMS server, I have tried with the following code initially

    ffmpeg -r 25 -f dshow -i video="Logitech HD Pro Webcam C920":audio="Rear Input (SoundMAX Integrated Digital High Definition Audio)" -vcodec libx264 -b:v 600k -b:a 128k -f flv rtmp://127.0.0.1/live/mystream

    it through the following error

    [dshow @ 00000000023f8920] Could not find audio device.
    video=Logitech HD Pro Webcam C920:audio=SoundMAX Integrated Digital High Definit
    ion Audio): Input/output error

    Then I modified the code as follows its working fine

    ffmpeg -f dshow -i video="Logitech HD Pro Webcam C920":audio="Rear Input (SoundMAX Integrated" -b:v 600k -acodec libmp3lame -b:a 128k -f flv rtmp://127.0.0.1/live/mystream

    I am unable to understand why its not accepting the full name of the audio driver and if I use the libx264 with the Logitech HD Pro Webcam C920 its not giving the video, video is blank (note : while using the iball c2.0 camera I am able to get the video)

    what is the wrong in my code ? how to publish in the libx264 format ?

  • Overlaying jpg onto Mp4 using -VF

    16 février 2013, par brux

    I am using the following command to overlay a jpg :

    ffmpeg -i in.mp4 -vf "movie=bb.png [movie] ; [in] [movie] overlay=0:0 [out]" -vcodec libx264 -acodec copy out.mp4

    This works as expected with the first file (listed below) but it doesnt work with the second file. There is no error when I try with the second file, rather is creates an unusually large file that would not open :

    File 1 :

    [me@me ~]$ ffmpeg -i 2013-02-08.mp4
    ffmpeg version 1.0.git Copyright (c) 2000-2012 the FFmpeg developers
     built on Jan 11 2013 00:12:08 with gcc 4.7.2 (GCC) 20120921 (Red Hat 4.7.2-2)
     configuration:
     libavutil      52.  8.100 / 52.  8.100
     libavcodec     54. 74.100 / 54. 74.100
     libavformat    54. 37.100 / 54. 37.100
     libavdevice    54.  3.100 / 54.  3.100
     libavfilter     3. 23.101 /  3. 23.101
     libswscale      2.  1.102 /  2.  1.102
     libswresample   0. 17.101 /  0. 17.101
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '2013-02-08.mp4':
     Metadata:
       major_brand     : isom
       minor_version   : 512
       compatible_brands: isomiso2avc1mp41
       creation_time   : 2013-02-08 20:31:49
       encoder         : Lavf53.24.0
     Duration: 00:00:03.20, start: 0.000000, bitrate: 1030 kb/s
       Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 720x576 [SAR 1:1 DAR 5:4], 1247 kb/s, 8.08 fps, 7.50 tbr, 15 tbn, 15 tbc
       Metadata:
         creation_time   : 2013-02-08 20:31:49
         handler_name    : VideoHandler
       Stream #0:1(eng): Audio: aac (mp4a / 0x6134706D), 8000 Hz, mono, s16, 12 kb/s
       Metadata:
         creation_time   : 2013-02-08 20:31:49
         handler_name    : SoundHandler
    At least one output file must be specified

    File 2

    [me@me ~]$ ffmpeg -i aq.mp4
    ffmpeg version 1.0.git Copyright (c) 2000-2012 the FFmpeg developers
     built on Jan 11 2013 00:12:08 with gcc 4.7.2 (GCC) 20120921 (Red Hat 4.7.2-2)
     configuration:
     libavutil      52.  8.100 / 52.  8.100
     libavcodec     54. 74.100 / 54. 74.100
     libavformat    54. 37.100 / 54. 37.100
     libavdevice    54.  3.100 / 54.  3.100
     libavfilter     3. 23.101 /  3. 23.101
     libswscale      2.  1.102 /  2.  1.102
     libswresample   0. 17.101 /  0. 17.101
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'aq.mp4':
     Metadata:
       major_brand     : isom
       minor_version   : 512
       compatible_brands: isomiso2avc1mp41
       creation_time   : 2013-02-19 20:33:16
       encoder         : Lavf53.24.0
     Duration: 00:00:03.20, start: 0.000000, bitrate: 1394 kb/s
       Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 720x576 [SAR 1:1 DAR 5:4], 1451 kb/s, 30 fps, 30 tbr, 30 tbn, 60 tbc
       Metadata:
         creation_time   : 2013-02-19 20:33:16
         handler_name    : VideoHandler
       Stream #0:1(eng): Audio: aac (mp4a / 0x6134706D), 8000 Hz, mono, s16, 12 kb/s
       Metadata:
         creation_time   : 2013-02-19 20:33:16
         handler_name    : SoundHandler
    At least one output file must be specified

    In case it is important I am capturing these videos with Android devices. The first mp4 file is created by a Nexus 7, the second (the file which wont overlay the image) is created using a HTC Desire.