Mudanças entre as edições de "Open Broadcast Software no Fedora 21"
De MochilaWiki
Ir para navegaçãoIr para pesquisar (Criou página com '== instalando dependências == <source lang="bash"> yum install cmake gcc-c++ qt5-qtbase-devel qt5-qtx11extras-devel ffmpeg-compat-devel ffmpeg-devel jansson-devel libXinerama...') |
|||
Linha 27: | Linha 27: | ||
ldconfig | ldconfig | ||
</source> | </source> | ||
+ | |||
+ | |||
+ | * baseado em http://www.xpd259.co.uk/2014/11/building-open-broadcast-software-on.html | ||
+ | * http://rpmfusion.org/Configuration | ||
+ | * https://obsproject.com/index |
Edição das 23h08min de 2 de janeiro de 2015
instalando dependências
yum install cmake gcc-c++ qt5-qtbase-devel qt5-qtx11extras-devel ffmpeg-compat-devel ffmpeg-devel jansson-devel libXinerama-devel libXinerama libv4l-devel x264-devel libXcomposite-devel libgudev1-devel freetype-devel fontconfig-devel pulseaudio-libs-devel v4l-utils qt5-qtmultimedia-devel faac faac-devel gstreamer-plugins-bad gstreamer-plugins-ugly gstreamer-ffmpeg vlc libtool libtool
yum install @"C Development Tools and Libraries" git
compilando libfdk-aac
git clone https://github.com/ob-encoder/fdk-aac.git
Run the following to configure:
autoreconf -i && ./configure --prefix=/usr --enable-shared
Build and install with
make -j5 && sudo make install
compilando OBS - GiT
git clone https://github.com/jp9000/obs-studio.git
cd obs-studio && mkdir build && cd build
cmake -DUNIX_STRUCTURE=1 -DCMAKE_INSTALL_PREFIX=/usr ..
make -j
make install
ldconfig