Recherche avancée

Médias (1)

Mot : - Tags -/intégration

Autres articles (112)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

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

Sur d’autres sites (6185)

  • How to configure FFMPEG in PHP 5.2.17 and IIS 7 environment

    29 mars 2014, par KRA

    I have working PHP 5.2.17 (thread safe) in IIS 7 / Windows 7.

    I want to setup FFMPEG in my local server.

    I downloaded php ext from this link : 1.html">http://www.4shared.com/zip/YZkvqY6v/ffmpeg-php-win32-all_1.html

    Then I followed this tutorial : http://blog.halomede.com/2009/03/ffmpeg-php-installation-on-windows.html

    But ffmpeg is not displaying in phpinfo() ; as they mentioned in tutorial.

    Can you please let me know what wrong I am doing ? It will be very helpful.

    Thank you,

  • How to convert .flv file to .3gp using ffmpeg ? [migrated]

    19 octobre 2011, par Chetana

    I have converted any video format to 3gp file format using ffmpeg on one server.
    But on another server it not works.

    Following is my script :

    exec("ffmpeg -i test.flv -sameq -acodec libmp3lame -ar 22050 -ab 96000
       -deinterlace -nr 500 -s 320x240 -aspect 4:3 -r 20 -g 500 -me_range 20
       -b 270k -deinterlace -f flv -y test.3gp ");

    Can anyone tell me what is wrong in script ?

    Following is my ffmpeg setting :

    root@ninja [ ]# ffmpeg -formats
    ffmpeg version CVS, build 3277056, Copyright (c) 2000-2004 Fabrice Bellard
    configuration : —enable-mp3lame —enable-libogg —enable-gpl —disable-mmx
    —enable-shared
    built on Jun 17 2009 10:51:43, gcc : 4.1.2 20080704 (Red Hat 4.1.2-44)

  • FFMPEG - Not finding codec parameters

    26 février 2016, par Tanner Smith

    I’m trying to convert a sequence of images into a mpeg movie via FFMPEG, although I keep getting an error saying that it could not find the code parameters (Video : mjpeg). A Google search did not bring much up that was useful.

    ffmpeg -f image2 -i /tmp/img%03d.jpg video.mpgFFmpeg version SVN-r0.5.1-4:0.5.1-1ubuntu1, Copyright (c) 2000-2009 Fabrice Bellard, et al.
      configuration : —extra-version=4:0.5.1-1ubuntu1 —prefix=/usr —enable-avfilter —enable-avfilter-lavf —enable-vdpau —enable-bzlib —enable-libgsm —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-libdc1394 —enable-shared —disable-static
      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 Mar  4 2010 12:35:30, gcc : 4.4.3
    [mjpeg @ 0x9069870]dqt : 16bit precision
    [mjpeg @ 0x9069870]mjpeg : unsupported coding type (c9)
    [mjpeg @ 0x9069870]mjpeg : unsupported coding type (cf)
    [mjpeg @ 0x9069870]only 8 bits/component accepted
    [mjpeg @ 0x9069870]dqt : 16bit precision
    [mjpeg @ 0x9069870]huffman table decode error
    [mjpeg @ 0x9069870]mjpeg : unsupported coding type (ca)
    [mjpeg @ 0x9069870]mjpeg : unsupported coding type (ce)
    [mjpeg @ 0x9069870]mjpeg : unsupported coding type (cb)
    [mjpeg @ 0x9069870]decode_sos : invalid len (60581)
    [mjpeg @ 0x9069870]only 8 bits/component accepted
    [mjpeg @ 0x9069870]decode_sos : invalid len (56833)
    [mjpeg @ 0x9069870]invalid id 207
    [mjpeg @ 0x9069870]mjpeg : unsupported coding type (cd)
    [mjpeg @ 0x9069870]huffman table decode error
    [image2 @ 0x90682c0]Could not find codec parameters (Video : mjpeg)
    /tmp/img%03d.jpg : could not find codec parameters
    

    The images reside in the /tmp directory with names such as img001.jpg and img002.jpg.

    Any ideas ?

    Thanks
    - Tanner