Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (68)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (8039)

  • ffmpeg streaming to rtmp at 30fps

    19 janvier 2018, par user6326558

    I am trying to stream my desktop to facebook rtmp server using screen-capture-recorder :

    -re  -rtbufsize 256M -f dshow -i audio="Mikrofon (Realtek Audio)"
    -rtbufsize 256M -f dshow -i audio="virtual-audio-capturer"  
    -rtbufsize 1024M -f dshow -i video=screen-capture-recorder -r 30  
    -filter:v scale=1280:720 -c:v  h264_nvenc -pix_fmt yuv420p -preset fast
    -b:v 8M -maxrate:v 10M  -c:a aac -b:a 128k -ar 44100
    -f flv rtmp://live-api.facebook.com:80/rtmp/..............

    I am using h264_nvenc codec for gpu acceleration, but I can stream at only 12-18 fps. However, when I stream into a file :

    -re  -rtbufsize 256M -f dshow -i audio="Mikrofon (Realtek Audio)"
    -rtbufsize 256M -f dshow -i audio="virtual-audio-capturer"  
    -rtbufsize 1024M -f dshow -i video=screen-capture-recorder -r 30  
    -filter:v scale=1280:720 -c:v  h264_nvenc -pix_fmt yuv420p -preset fast
    -b:v 8M -maxrate:v 10M  -c:a aac -b:a 128k -ar 44100
    D:\test.mp4 -y

    I get 30 fps without problem, even when playing game (eg. Call of duty 6, pretty HW draining). Is it also possible to stream to rtmp at 30 fps with my command configuration ? Thank you

    If needed, my ffmpeg build config is :

    ffmpeg version 3.3.3 Copyright (c) 2000-2017 the FFmpeg developers

    built with gcc 7.1.0 (GCC)
    configuration : —disable-static —enable-shared —enable-gpl —enable-version3 —enable-cuda —enable-cuvid —enable-d3d11va —enable-dxva2 —enable-libmfx —enable-nvenc —enable-avisynth —enable-bzlib —enable-fontconfig —enable-frei0r —enable-gnutls —enable-iconv —enable-libass —enable-libbluray —enable-libbs2b —enable-libcaca —enable-libfreetype —enable-libgme —enable-libgsm —enable-libilbc —enable-libmodplug —enable-libmp3lame —enable-libopencore-amrnb —enable-libopencore-amrwb —enable-libopenh264 —enable-libopenjpeg —enable-libopus —enable-librtmp —enable-libsnappy —enable-libsoxr —enable-libspeex —enable-libtheora —enable-libtwolame —enable-libvidstab —enable-libvo-amrwbenc —enable-libvorbis —enable-libvpx —enable-libwavpack —enable-libwebp —enable-libx264 —enable-libx265 —enable-libxavs —enable-libxvid —enable-libzimg —enable-lzma —enable-zlib

  • ffmpeg rtmp streaming at 30fps

    19 janvier 2018, par user6326558

    I am trying to stream my desktop to facebook rtmp server using screen-capture-recorder :

    ffmpeg -re  -f dshow -i audio="virtual-audio-capturer" -hwaccel cuvid
    -f dshow -i video=screen-capture-recorder  -r 30 -rtbufsize 1024M
    -filter:v scale=480:360 -vcodec libx264
    -pix_fmt yuv420p -preset fast -b:v 8M -maxrate:v 10M  -c:a aac -b:a 128k
    -ar 44100 -f flv rtmp://live-api.facebook.com:80/rtmp/..............

    But when I start streaming, it says that fps is only 10 and sometimes it immediatelly on start-up yells following error. Then, when I start to do something on my computer, for example I run a game, I keep getting that warning 20 times per second, and streamed video is 0.5 fps.

    real-time buffer [screen-capture-recorder] [video input] too full or near
    too full (545% of size : 3041280 [rtbufsize parameter]) ! frame dropped !

    When I stream it into file,

    ffmpeg -re  -f dshow -i audio="virtual-audio-capturer" -hwaccel cuvid
    -f dshow -i video=screen-capture-recorder  -r 30 -rtbufsize 1024M
    -filter:v scale=480:360 -vcodec libx264
    -pix_fmt yuv420p -preset fast -b:v 8M -maxrate:v 10M  -c:a aac -b:a 128k
    -ar 44100 D:\test.mp4 -y

    it says streaming is 30 fps, but as soon as I start doing something, for example game, the metioned situation repeats, tens of errors, and 0,5 fps video.

    I tried chanching -rtbufsize from 8 to 2048 megabytes, nothing changed. I tried adding and disablinh hw acceleration, nothing changed. Can anyone tell me, what am I doing wrong ? Thank you

    Solved -rtbufsize 1024M must be before -i. Another thing, I rather used codec h264_nvenc from nvidia for cuda acceleration, now I can stream into file at 30 fps without problems and warnings, even while playing game (Call of duty 6, HW draining). However, when I try to stream to rtmp, I also get no warnings, but I can stream at only 15 fps. Is it also possible to stream to rtmp at 30 fps with my command configuration ?

    If needed, my ffmpeg build config is :

    ffmpeg version 3.3.3 Copyright (c) 2000-2017 the FFmpeg developers

    built with gcc 7.1.0 (GCC)
    configuration : —disable-static —enable-shared —enable-gpl —enable-version3 —enable-cuda —enable-cuvid —enable-d3d11va —enable-dxva2 —enable-libmfx —enable-nvenc —enable-avisynth —enable-bzlib —enable-fontconfig —enable-frei0r —enable-gnutls —enable-iconv —enable-libass —enable-libbluray —enable-libbs2b —enable-libcaca —enable-libfreetype —enable-libgme —enable-libgsm —enable-libilbc —enable-libmodplug —enable-libmp3lame —enable-libopencore-amrnb —enable-libopencore-amrwb —enable-libopenh264 —enable-libopenjpeg —enable-libopus —enable-librtmp —enable-libsnappy —enable-libsoxr —enable-libspeex —enable-libtheora —enable-libtwolame —enable-libvidstab —enable-libvo-amrwbenc —enable-libvorbis —enable-libvpx —enable-libwavpack —enable-libwebp —enable-libx264 —enable-libx265 —enable-libxavs —enable-libxvid —enable-libzimg —enable-lzma —enable-zlib

  • FFMPEG to fluent ffmpeg [on hold]

    16 janvier 2018, par Minh

    I use ffmpeg command on VPS but I want cover to github . Help me
    This is code

    ffmpeg - re - i http: //storage.livefb.com.vn/assets/video/video_307_1516075122469280.mp4 -i assets/bg/13.png -i assets/logo.png -filter_complex "[0:v][1:v] overlay=x=4:y=H-h:enable='between(t,0,t)' [tmp]; [tmp][2:v] overlay=x=14:y=H-h-10:enable='between(t,0,t)',drawtext=fontfile=assets/thanh.ttf:y=h-60:x=158:text='TDL AUTOFB INBOXFB LIVEFB
     0965367062 MINH THU ':fontcolor=white:fontsize=36,drawbox=enable='
    between(t, 2, 10)
    ':y=ih-ih/2:color=black@0.8:width=iw:height=50:t=max,drawtext=enable='
    between(t, 2, 10)
    ':fontfile=assets/thanh.ttf:y=h-h/2+10:x=(w-text_w)/2:text='
    được phát bởi livefb liên hệ minh thư để được hỗ trợ ':fontcolor=white:fontsize=30" -vcodec libx264 -pix_fmt yuv420p -r 30 -g 60 -b:v 1400k -profile:v main -level 3.1 -acodec libmp3lame -b:a 128k -ar 44100 -metadata title="" -metadata artist="" -metadata album_artist="" -metadata album="" -metadata date="" -metadata track="" -metadata genre="" -metadata publisher="" -metadata encoded_by="" -metadata copyright="" -metadata composer="" -metadata performer="" -metadata TIT1="" -metadata TIT3="" -metadata disc="" -metadata TKEY="" -metadata TBPM="" -metadata language="eng" -metadata encoder="" -threads 0 -preset superfast -f flv "rtmp://live-api.facebook.com:80/rtmp/187884241800146?ds=1&a=ATgAYCPa1TJeWa2t"