Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (58)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • 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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (11253)

  • FFMPEG : Creating video stream from non-consecutively numbered png sequence [closed]

    8 mars 2016, par frageDE

    I have used VLC to decompose a video stream into frames, and it decomposed in a way that it leaps 5 frames per save, so the images are ordered like this :

    scene04436.png
    scene04441.png
    scene04446.png
    scene04451.png
    scene04456.png
    scene04461.png
    scene04466.png

    Now I want them to be a video stream again. I have already tried FFMPEG and AVCONV commands, they didn’t work out for me. The following command gives the error below :

    ffmpeg -framerate 1/5 -i scene%05d.png -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4

    EDIT : Yes, I tried Googleing the ffmpeg commands, they did not work, mostly gave the error of :

       ffmpeg version 0.8.17-4:0.8.17-0ubuntu0.12.04.1, Copyright (c) 2000-2014 the Libav developers built on Mar 16 2015 13:26:50 with gcc 4.6.3

    The ffmpeg program is only provided for script compatibility and will be removed in a future release. It has been deprecated in the Libav project to allow for incompatible command line syntax improvements in its replacement called avconv

    (see Changelog for details). Please use avconv instead.
    Input #0, image2, from 'scene%05d.png':
     Duration: 00:00:05.00, start: 0.000000, bitrate: N/A
       Stream #0.0: Video: png, bgra, 720x480, 0.20 tbr, 0.20 tbn, 0.20 tbc

    Unrecognized option 'c:v'
    Failed to set value 'libx264' for option 'c:v'

    EDIT2 : This is the version output on my console for the FFMPEG

    ffmpeg version 3.0 Copyright (c) 2000-2016 the FFmpeg developers
    built with gcc 4.6 (Ubuntu/Linaro 4.6.3-1ubuntu5)
    configuration: --disable-yasm
    libavutil      55. 17.103 / 55. 17.103
    libavcodec     57. 24.102 / 57. 24.102
    libavformat    57. 25.100 / 57. 25.100
    libavdevice    57.  0.101 / 57.  0.101
    libavfilter     6. 31.100 /  6. 31.100
    libswscale      4.  0.100 /  4.  0.100
    libswresample   2.  0.101 /  2.  0.101

    Any suggestions ?

  • FFmpeg converting video convert only audio in linux [on hold]

    29 février 2016, par Zuiche

    I’m trying to convert .flv to .mp4 in centos.
    I used "ffmpeg -i test.flv test.mp4" command.
    It works well in windows.
    But in linux, it’s result don’t have video, only have audio.

    I installed ffmpeg 3.0 using yum.

    ffmpeg command output :

    ffmpeg version 3.0
    Copyright (c) 2000-2016 the FFmpeg developers built with gcc 4.1.2 (GCC) 20080704 (Red Hat 4.1.2-55)
    configuration:
    libavutil      55. 17.103 / 55. 17.103
    libavcodec     57. 24.102 / 57. 24.102
    libavformat    57. 25.100 / 57. 25.100
    libavdevice    57.  0.101 / 57.  0.101
    libavfilter     6. 31.100 /  6. 31.100
    libswscale      4.  0.100 /  4.  0.100
    libswresample   2.  0.101 /  2.  0.101

    What’s wrong with my ffmpeg ?
    Thanks in advice.

  • ffmpeg convert rtp to mp4(http) streaming

    24 février 2016, par Asoul

    I want to use ffmpeg for transcoding RTP streaming to MP4(HTTP) streaming, so I can play in html video tag,

    but I can only transcode to flv format successfully.

    Below is my settings :

    [/etc/ffserver.conf]

    ...

    <feed>
     File /tmp/feed1.ffm
     FileMaxSize 5M
     ACL allow localhost
    </feed>

    <stream flv="flv">
     Feed feed1.ffm
     Format flv
     VideoFrameRate 40
     VideoBitRate 128
     VideoSize 1920x1080
     AVOptionVideo flags +global_header
     AudioBitRate 24
     AudioChannels 2
     AudioSampleRate 44100
     AVOptionAudio flags +global_header
    </stream>

    <stream mp4="mp4">
     Feed feed1.ffm
     Format mp4
     VideoFrameRate 40
     VideoBitRate 128
     VideoSize 1920x1080
     AVOptionVideo flags +global_header
     AudioBitRate 24
     AudioChannels 2
     AudioSampleRate 44100
     AVOptionAudio flags +global_header
    </stream>

    <stream avi="avi">
     Feed feed1.ffm
     Format avi
     VideoFrameRate 40
     VideoBitRate 128
     VideoSize 1920x1080
     AVOptionVideo flags +global_header
     AudioBitRate 24
     AudioChannels 2
     AudioSampleRate 44100
     AVOptionAudio flags +global_header
    </stream>

    [Commands]

    $ ffserver -d -f /etc/ffserver.conf

    $ ffmpeg -i MY_RTP_SOURCE  http://localhost:8090/feed1.ffm

    [Other information]

    1. Input format

    $ ffprobe -i MY_RTP_SOURCE

    Input #0, rtp, from ’MY_RTP_SOURCE’ :
    Duration : N/A, start : 47175.696200, bitrate : N/A
    Program 1
    Stream #0:1 : Video : h264 (High) (HDMV / 0x564D4448), yuv420p, 1920x1080, 25 tbr, 90k tbn
    Stream #0:0 : Audio : aac (LC), 44100 Hz, stereo, fltp, 255 kb/s

    1. AVI error message when access (at ffserver)

    Wed Feb 17 17:09:16 2016 127.0.0.1 - - New connection : GET /avi
    Wed Feb 17 17:09:16 2016 [avi @ 0x7fac8b800150]Too large number of skipped frames 873420092564 > 60000
    Wed Feb 17 17:09:16 2016 Error writing frame to output for stream ’avi’ : Invalid argument
    Wed Feb 17 17:09:16 2016 [avi @ 0x7fac8b800150]Too large number of skipped frames 873420092564 > 60000
    Wed Feb 17 17:09:16 2016 127.0.0.1 - - [GET] "/avi HTTP/1.1" 200 2598

    1. MP4 error mesage when access (at ffserver)
    Wed Feb 17 17:09:56 2016 127.0.0.1 - - New connection : GET /mp4
    Wed Feb 17 17:09:56 2016 [mp4 @ 0x7fac8c000150]muxer does not support non seekable output
    Wed Feb 17 17:09:56 2016 Error writing output header for stream ’mp4’ : Invalid argument
    Wed Feb 17 17:09:56 2016 127.0.0.1 - - [GET] "/mp4 HTTP/1.1" 200 62
    
    1. My ffmpeg version
    ffmpeg version 2.8.6 Copyright (c) 2000-2016 the FFmpeg developers
    built with Apple LLVM version 7.0.2 (clang-700.1.81)
    configuration : —prefix=/usr/local/Cellar/ffmpeg/2.8.6 —enable-shared —enable-pthreads —enable-gpl —enable-version3 —enable-hardcoded-tables —enable-avresample —cc=clang —host-cflags= —host-ldflags= —enable-opencl —enable-libx264 —enable-libmp3lame —enable-libvo-aacenc —enable-libxvid —enable-vda
    libavutil      54. 31.100 / 54. 31.100
    libavcodec     56. 60.100 / 56. 60.100
    libavformat    56. 40.101 / 56. 40.101
    libavdevice    56.  4.100 / 56.  4.100
    libavfilter     5. 40.101 /  5. 40.101
    libavresample   2.  1.  0 /  2.  1.  0
    libswscale      3.  1.101 /  3.  1.101
    libswresample   1.  2.101 /  1.  2.101
    libpostproc    53.  3.100 / 53.  3.100
    

    If anyone know how to solve it or need more information, please tell me, thanks !