Recherche avancée

Médias (0)

Mot : - Tags -/images

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (97)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (6825)

  • FFmpeg convert .mov to .ogv

    24 juillet 2016, par Morten Hauberg

    I have some troubles converting my .mov to a .ogg file using FFmpeg.

    This command should work, right ?

    ffmpeg -i test.mov -s 640x320 -vcodec libtheora -acodec libvorbis out.ogv

    It gives me this output

    [0] => FFmpeg version SVN-r0.5.9-4:0.5.9-1, Copyright (c) 2000-2009 Fabrice Bellard, et al.
    [1] =>   configuration: --extra-version=4:0.5.9-1 --prefix=/usr --enable-avfilter --enable-avfilter-lavf --enable-vdpau --enable-bzlib --enable-libdirac --enable-libgsm --enable-libopenjpeg --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libvorbis --enable-pthreads --enable-zlib --disable-stripping --disable-vhook --enable-runtime-cpudetect --enable-gpl --enable-postproc --enable-swscale --enable-x11grab --enable-libfaad --enable-libdc1394 --enable-shared --disable-static
    [2] =>   libavutil     49.15. 0 / 49.15. 0
    [3] =>   libavcodec    52.20. 1 / 52.20. 1
    [4] =>   libavformat   52.31. 0 / 52.31. 0
    [5] =>   libavdevice   52. 1. 0 / 52. 1. 0
    [6] =>   libavfilter    0. 4. 0 /  0. 4. 0
    [7] =>   libswscale     0. 7. 1 /  0. 7. 1
    [8] =>   libpostproc   51. 2. 0 / 51. 2. 0
    [9] =>   built on Jun 10 2012 08:33:06, gcc: 4.4.5
    [10] =>
    [11] => Seems stream 0 codec frame rate differs from container frame rate: 1200.00 (1200/1) -> 30.00 (30/1)
    [12] => Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'test.mov':
    [13] =>   Duration: 00:00:06.26, start: 0.000000, bitrate: 809 kb/s
    [14] =>     Stream #0.0(und): Video: h264, yuv420p, 480x360, 30 tbr, 600 tbn, 1200 tbc
    [15] =>     Stream #0.1(und): Audio: aac, 44100 Hz, mono, s16
    [16] => Output #0, ogg, to 'out.ogv':
    [17] =>     Stream #0.0(und): Video: libtheora, yuv420p, 640x320, q=2-31, 200 kb/s, 90k tbn, 30 tbc
    [18] =>     Stream #0.1(und): Audio: vorbis, 44100 Hz, mono, s16, 64 kb/s
    [19] => Stream mapping:
    [20] =>   Stream #0.0 -> #0.0
    [21] =>   Stream #0.1 -> #0.1
    [22] => Press [q] to stop encoding

    It seems right, right ?

    But the movie is only about 1 second long.
    Why is that ?

    I do not have access to ffmpeg2theora, so please dont suggest that :)

  • Video length missing in FLV converted by ffmpeg-php

    19 janvier 2013, par Andrew

    I'm converting MP4 videos to FLV using ffmpeg-php on my CentOS server (without intervention from flvtool2 because it's not installed).

    The FLV videos are created, but no player is capable of retrieving the video duration, this creates serious issues when trying to seek the video. I'm using the player created by Moyea's Flash Video MX Pro, but the problem also happens with other FLV players as well, so I'm sure that ffmpeg-php is not createing the FLV with the proper length data.

    My MP4 videos are compatible because ffmpeg-php CAN get the video length properly from then, yet it does not apply that length information into the FLV file. I assume flvtool2 is ONLY to retrieve meta-data and has nothing to do with the output FLV video length, let me know if this is correct.

    This command I use for conversion :

    $command = "ffmpeg -i myvideo.mp4 -ar 22050 -ab 64k -f flv -s 320x240 -y myvideo.flv";
    $result = @shell_exec($command);

    This is my ffmpeg-php version :

    FFmpeg version 0.5, Copyright (c) 2000-2009 Fabrice Bellard, et al.
     configuration: --prefix=/usr --libdir=/usr/lib64 --shlibdir=/usr/lib64 --mandir=/usr/share/man --incdir=/usr/include --extra-cflags=-fPIC --enable-libamr-nb --enable-libamr-wb --enable-libdirac --enable-libfaac --enable-libfaad --enable-libmp3lame --enable-libtheora --enable-libx264 --enable-gpl --enable-nonfree --enable-postproc --enable-pthreads --enable-shared --enable-swscale --enable-x11grab
     libavutil     49.15. 0 / 49.15. 0
     libavcodec    52.20. 0 / 52.20. 0
     libavformat   52.31. 0 / 52.31. 0
     libavdevice   52. 1. 0 / 52. 1. 0
     libswscale     0. 7. 1 /  0. 7. 1
     libpostproc   51. 2. 0 / 51. 2. 0
     built on Jul 24 2009 01:40:27, gcc: 4.1.2 20080704 (Red Hat 4.1.2-44)

    Any help on this issue will be greatly appreciated.

  • ffmpeg error creating thumbnail different frame rate

    18 décembre 2012, par KJS

    When using this at the command line I get very bad images with only grey or stripes in them.
    It seems "the frame rate differs from container frame rate : 59.94 (60000/1001) -> 29.97 (30000/1001)".

    Is there any way I can fix this in the ffmpeg statement ?

    ffmpeg -ss 00:00:10 -i FILENAME.mp4 -vframes 1 FILENAME.jpg

    This is the output I get :

    FFmpeg version 0.5.2, Copyright (c) 2000-2009 Fabrice Bellard, et al.
     configuration: --prefix=/usr --libdir=/usr/lib64 --shlibdir=/usr/lib64 --mandir=/usr/share/man --incdir=/usr/include --disable-avisynth --extra-cflags=-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -fPIC --enable-avfilter --enable-avfilter-lavf --enable-libdirac --enable-libfaac --enable-libfaad --enable-libfaadbin --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora --enable-libx264 --enable-gpl --enable-nonfree --enable-postproc --enable-pthreads --enable-shared --enable-swscale --enable-vdpau --enable-version3 --enable-x11grab
     libavutil     49.15. 0 / 49.15. 0
     libavcodec    52.20. 1 / 52.20. 1
     libavformat   52.31. 0 / 52.31. 0
     libavdevice   52. 1. 0 / 52. 1. 0
     libavfilter    0. 4. 0 /  0. 4. 0
     libswscale     0. 7. 1 /  0. 7. 1
     libpostproc   51. 2. 0 / 51. 2. 0
     built on Jun 13 2010 23:44:18, gcc: 4.1.2 20080704 (Red Hat 4.1.2-48)

    Seems stream 0 codec frame rate differs from container frame rate : 59.94 (60000/1001) -> 29.97 (30000/1001)

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'FILENAME.mp4':
     Duration: 00:03:36.36, start: 0.000000, bitrate: 1305 kb/s
       Stream #0.0(eng): Video: h264, yuv420p, 640x428, 29.97 tbr, 29.97 tbn, 59.94 tbc
       Stream #0.1(eng): Audio: aac, 48000 Hz, stereo, s16
    Output #0, image2, to 'FILENAME.jpg':
       Stream #0.0(eng): Video: mjpeg, yuvj420p, 640x428, q=2-31, 200 kb/s, 90k tbn, 29.97 tbc
    Stream mapping:
     Stream #0.0 -> #0.0
    Press [q] to stop encoding
    [h264 @ 0x307f6b0]brainfart cropping not supported, this could look slightly wrong ...
    [h264 @ 0x307f6b0]AVC: Consumed only 14978 bytes instead of 14984
    [h264 @ 0x307f6b0]AVC: Consumed only 1147 bytes instead of 1153
    [h264 @ 0x307f6b0]Missing reference picture
    [h264 @ 0x307f6b0]AVC: Consumed only 1947 bytes instead of 1953
    [h264 @ 0x307f6b0]Missing reference picture
    [h264 @ 0x307f6b0]AVC: Consumed only 1870 bytes instead of 1876
    [h264 @ 0x307f6b0]Missing reference picture
       Last message repeated 1 times
    [h264 @ 0x307f6b0]AVC: Consumed only 810 bytes instead of 816
    [h264 @ 0x307f6b0]Missing reference picture
       Last message repeated 1 times
    [h264 @ 0x307f6b0]AVC: Consumed only 955 bytes instead of 961
    [h264 @ 0x307f6b0]Missing reference picture
       Last message repeated 1 times
    [h264 @ 0x307f6b0]AVC: Consumed only 1036 bytes instead of 1042
    [h264 @ 0x307f6b0]Missing reference picture
       Last message repeated 1 times
    [h264 @ 0x307f6b0]AVC: Consumed only 998 bytes instead of 1004
    [h264 @ 0x307f6b0]Missing reference picture
    frame=    1 fps=  0 q=3.3 Lsize=      -0kB time=0.03 bitrate=  -5.3kbits/s
    video:14kB audio:0kB global headers:0kB muxing overhead -100.149568%