Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (58)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

Sur d’autres sites (14401)

  • Live stream the screen and microphone to azure media services with ffmpeg

    16 octobre 2020, par Panzer Ihnen

    I'm able to stream a video of my screen to Azure Media Services with ffmpeg, but when I add the audio input, the stream stops with this error :

    


    ffmpeg: frame=   27 fps=0.0 q=0.0 size=       0kB time=00:00:00.36 bitrate=   8.4kbits/s dup=0 drop=7 speed=0.703x
ffmpeg: frame=   43 fps= 42 q=0.0 size=       0kB time=00:00:00.36 bitrate=   8.4kbits/s dup=0 drop=7 speed=0.356x    
ffmpeg: frame=   58 fps= 38 q=27.0 size=      37kB time=00:00:00.36 bitrate= 818.6kbits/s dup=0 drop=7 speed=0.24x    
ffmpeg: av_interleaved_write_frame(): End of file
ffmpeg:     Last message repeated 1 times
ffmpeg: [flv @ 0633fec0] Failed to update header with correct duration.
ffmpeg: [flv @ 0633fec0] Failed to update header with correct filesize.
ffmpeg: Error writing trailer of rtmp://rtmpurl/stream: End of file
ffmpeg: frame=   59 fps= 32 q=26.0 Lsize=      37kB time=00:00:00.39 bitrate= 764.5kbits/s dup=0 drop=7 speed=0.214x    
ffmpeg: video:35kB audio:2kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
ffmpeg: [libx264 @ 0633c6c0] frame I:1     Avg QP:18.27  size: 30491
ffmpeg: [libx264 @ 0633c6c0] frame P:16    Avg QP:20.68  size:  4210
ffmpeg: [libx264 @ 0633c6c0] frame B:42    Avg QP:23.25  size:   152
ffmpeg: [libx264 @ 0633c6c0] consecutive B-frames:  5.1%  0.0%  0.0% 94.9%
ffmpeg: [libx264 @ 0633c6c0] mb I  I16..4: 12.7% 36.9% 50.4%
Ffmpeg Exited
ffmpeg: [libx264 @ 0633c6c0] mb P  I16..4:  0.4%  1.0%  0.6%  P16..4: 45.6% 10.5% 12.1%  0.0%  0.0%    skip:29.8%
ffmpeg: [libx264 @ 0633c6c0] mb B  I16..4:  0.0%  0.0%  0.0%  B16..8: 15.5%  0.3%  0.0%  direct: 0.3%  skip:83.9%  L0:46.5% L1:51.0% BI: 2.5%
ffmpeg: [libx264 @ 0633c6c0] 8x8 transform intra:41.1% inter:59.1%
ffmpeg: [libx264 @ 0633c6c0] coded y,uvDC,uvAC intra: 79.9% 96.5% 88.6% inter: 7.8% 15.8% 5.4%
ffmpeg: [libx264 @ 0633c6c0] i16 v,h,dc,p: 20% 13%  6% 61%
ffmpeg: [libx264 @ 0633c6c0] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 29% 21% 22%  4%  4%  5%  3%  3%  8%
ffmpeg: [libx264 @ 0633c6c0] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 38% 16% 10%  5%  7%  7%  5%  6%  6%
ffmpeg: [libx264 @ 0633c6c0] i8c dc,h,v,p: 54% 18% 23%  5%
ffmpeg: [libx264 @ 0633c6c0] Weighted P-Frames: Y:0.0% UV:0.0%
ffmpeg: [libx264 @ 0633c6c0] ref P L0: 55.1%  2.9% 29.5% 12.6%
ffmpeg: [libx264 @ 0633c6c0] ref B L0: 79.5% 14.0%  6.6%
ffmpeg: [libx264 @ 0633c6c0] ref B L1: 93.2%  6.8%
ffmpeg: [libx264 @ 0633c6c0] kb/s:333.49
ffmpeg: Conversion failed!


    


    My ffmpeg command is :

    


    -f dshow -i audio="Microphone device" -strict -2 -c:a aac -f gdigrab -framerate 30 -offset_x 161 -offset_y 203 -video_size 430x322 -show_region 1 -i title="Window Title" -b:v 415K -g 60 -keyint_min 60 -b:a 32K -ar 22050 -filter:a "volume=0.8" -pix_fmt yuv420p -c:v libx264 -preset medium -bufsize 400k -maxrate 400k -f flv rtmp://rtmpurl/stream


    


  • ffmpeg - trying to add a reversed section of original video to the back (boomerang effect)

    23 janvier 2020, par sn0ep

    I have a ffmpeg command as follows which basically scales the video down to 720p. Now i want to add a section to my command which will make a concatination of the video but in reverse. So that the video will also be in a loop like this :

    0s -> 10s -> 0s

    original command :

    ffmpeg -ss 0.0 -to 10.0 -i in.mp4 -filter_complex "fps=15,scale=720:-1" -y out.mp4

    Command after my edits :

    ffmpeg -ss 0.0 -to 10.0 -i in.mp4 -filter_complex "[0:v]fps=15,scale=720:-1,reverse,fifo[r];[0:v][r] concat=n=2:v=1 [v]" -map "[v]" -y out.mp4

    When executing im getting following erorrs :

    Parsed_concat_4 @ 0x7feb89d01d40] Input link in1:v0 parameters (size 720x1280, SAR 1:1) do not match the corresponding output link in0:v0 parameters (1080x1920, SAR 1:1)
    [Parsed_concat_4 @ 0x7feb89d01d40] Failed to configure output pad on Parsed_concat_4
    Error reinitializing filters!
    Failed to inject frame into filter network: Invalid argument
    Error while processing the decoded data for stream #0:1

    I’m very new into coding advanced ffmpeg commands.

  • avutil/imgutils : fix half-float representation of 0.0625

    27 décembre 2023, par Marton Balint
    avutil/imgutils : fix half-float representation of 0.0625
    

    We don't have a 16-bit float Y format, so no fate changes.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavutil/imgutils.c