Xvfb + ffmpeg / aconv não funciona

0

Estou tentando capturar a tela usando xvfb + aconv. Eu estou usando o docker para executar a imagem. Eu tentei quase tudo para fazê-lo funcionar, imagens diferentes do Ubuntu Centos, imagens diferentes do docker hub. Minha última compilação é simples: ubuntu: trusty (14.04) image + xvfb + avconv

FROM ubuntu:trusty
RUN echo "deb http://ppa.launchpad.net/mozillateam/firefox-next/ubuntu trusty main" > /etc/apt/sources.list.d//mozillateam-firefox-next-trusty.list
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys CE49EC21
RUN apt-get update
RUN apt-get install -y firefox xvfb python-pip
RUN pip install selenium
RUN mkdir -p /root/selenium_wd_tests
#ADD sel_wd_new_user.py /root/selenium_wd_tests
ADD xvfb.init /etc/init.d/xvfb
RUN chmod +x /etc/init.d/xvfb
RUN update-rc.d xvfb defaults

Eu instalei o avcnov através do apt-get então eu corro o Xvfb

Xvfb -ac :99 -screen 0 1280x1024x24

e firefox Então eu apenas corro

avconv -f x11grab -r 25 -s 1280x1024 -i :99 -vcodec libx264 -threads 4 $HOME/output.avi

e nada acontece, o avconv está preso, ele não inicia a captura

avconv version 9.20-6:9.20-0ubuntu0.14.04.1, Copyright (c) 2000-2014 the Libav developers
  built on Dec  7 2016 21:22:31 with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04.3)
[x11grab @ 0x2189c60] device: :99 -> display: :99 x: 0 y: 0 width: 1280 height: 1024

Alguém por favor, qualquer conselho, eu passei 4 dias tentando fazer o trabalho. Obrigado.

    
por ipauler 26.12.2017 / 23:00

0 respostas