Recherche avancée

Médias (91)

Autres articles (85)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (6565)

  • error : av_interleaved_write_frame() : Unknown error

    12 avril 2014, par John Qualis

    I am new to ffmpeg. I am trying to stream my webcam using ffmpeg (x264 encoding) on a windows machine to ffserver on a linux server and restream it. I am getting the following error : av_interleaved_write_frame() : Unknown error
    I checked about it on the net and came across mails which said it could be related to version mismatch between ffmpeg and ffserver. I made sure that all libraries that are used by ffmpeg and ffserver have the same version. I am still getting this error. Appreciate any help in solving this issue.

    I am using the following command :

    .\ffmpeg.exe -f dshow -i video="Webcam C170":audio="Microphone (3- Webcam C170)" -an -g 94 -vcodec libx264 -b:v 512k -r 30 -f flv http://AA.BB.CC.DD:8090/feed1.ffm

    I get the followoing errors -

     [dshow @ 0003f240] real-time buffer 101% full! frame dropped!
       Last message repeated 1 times
    No pixel format specified, yuv422p for H.264 encoding chosen.
    Use -pix_fmt yuv420p for compatibility with outdated media players.
    [libx264 @ 02563520] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX
    [libx264 @ 02563520] profile High 4:2:2, level 3.0, 4:2:2 8-bit
    [libx264 @ 02563520] 264 - core 140 r2377 1ca7bb9 - H.264/MPEG-4 AVC codec - Copyleft
    2003-2013 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0
    analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chro
    ma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 thre
    ads=12 lookahead_threads=2 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compa
    t=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 o
    pen_gop=0 weightp=2 keyint=94 keyint_min=9 scenecut=40 intra_refresh=0 rc_lookahead=4
    0 rc=abr mbtree=1 bitrate=512 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_rat
    io=1.40 aq=1:1.00
    Output #0, flv, to 'http://184.173.147.99:8090/feed1.ffm':
     Metadata:
       encoder         : Lavf55.22.100
       Stream #0:0: Video: h264 (libx264) ([7][0][0][0] / 0x0007), yuv422p, 640x480, q=-
    1--1, 512 kb/s, 1k tbn, 30 tbc
    Stream mapping:
     Stream #0:0 -> #0:0 (rawvideo -> libx264)
    Press [q] to stop, [?] for help
    frame=   59 fps=9.0 q=28.0 size=       3kB time=00:00:00.46 bitrate=  58.6kbits/s
    av_interleaved_write_frame(): Unknown error

    In my /etc/ffserver.conf I have the following settings -

    <feed>

    File /tmp/feed1.ffm
    ##File /mnt/vmtmpfs/feed1.ffm
    FileMaxSize 50M

    ACL allow 127.0.0.1
    ACL allow 0.0.0.0 255.255.255.255

    </feed>

    <stream>
           Format flv
           Feed feed1.ffm

           VideoCodec libx264
           VideoFrameRate 30
           VideoBitRate 512
           VideoSize 320x240
           AVOptionVideo crf 23
           AVOptionVideo preset medium
           # for more info on crf/preset options, type: x264 --help
           AVOptionVideo flags +global_header
           # NoAudio

           AudioCodec aac
           Strict -2
           AudioBitRate 128
           AudioChannels 2
           AudioSampleRate 44100
           AVOptionAudio flags +global_header
           ACL ALLOW 0.0.0.0 255.255.255.255
    </stream>
  • Unknown encoder 'libx264' - Heroku Rails App

    11 février 2014, par scientiffic

    In my Rails app, I installed ffmpeg on Heroku in order to transcode uploaded video files.

    This worked fine until I added exiftool functionality (as outlined in this stackoverflow post) and I started getting the error 'Unknown encoder libx264' when I try to transcode videos (ONLY when I try uploading video through Heroku ; I don't get any errors when I upload videos locally). The full error message from my heroku logs is below :

    Running transcoding...
    ffmpeg -y -i /app/public/uploads/tmp/1392153416-9-9551/portrait.mp4 -vcodec libx264 -acodec libfaac -s 640x360  -vf transpose=1 -aspect 0.5625 /app/public/uploads/tmp/1392153416-9-9551/tmpfile.mp4

    Failed encoding...
    ffmpeg -y -i /app/public/uploads/tmp/1392153416-9-9551/portrait.mp4 -vcodec libx264 -acodec libfaac -s 640x360  -vf transpose=1 -aspect 0.5625 /app/public/uploads/tmp/1392153416-9-9551/tmpfile.mp4

    Unknown encoder &#39;libx264&#39;

    I don't know why I'm getting this error because I installed ffmpeg with the —enable-libx264 option (my full installation instructions are here), and when I run 'which x264' in the heroku bash, it does return the correct path.

    The strangest part is that I'm testing everything on my test server right now, and my deployed app on my main server is able to run the transcoding with no problems using libx264. The only difference between my main server and test server is the addition of exiftool.

    Does anyone have any idea what's going in here ??

  • Ubuntu 16.10 ffmpeg Unknown encoder 'libx264' ,I'm sure I have installed X264

    16 juin 2017, par itgoyo

    enter image description here

    Ubuntu 16.10 ffmpeg Unknown encoder libx264, I ’m sure I have installed X264