Mudanças entre as edições de "Open Broadcast Software no openSUSE 13.2"
De MochilaWiki
Ir para navegaçãoIr para pesquisar (Criou página com '<source lang="bash"> sudo zypper in cmake gcc-c++ ffmpeg-compat-devel ffmpeg-devel libXinerama-devel \ libv4l-devel x264-devel libXcomposite-devel freetype-devel fontconfig-d...') |
|||
(3 revisões intermediárias pelo mesmo usuário não estão sendo mostradas) | |||
Linha 1: | Linha 1: | ||
+ | == instalando dependências == | ||
+ | |||
<source lang="bash"> | <source lang="bash"> | ||
sudo zypper in cmake gcc-c++ ffmpeg-compat-devel ffmpeg-devel libXinerama-devel \ | sudo zypper in cmake gcc-c++ ffmpeg-compat-devel ffmpeg-devel libXinerama-devel \ | ||
Linha 7: | Linha 9: | ||
libpulse-devel fdk-aac-devel | libpulse-devel fdk-aac-devel | ||
</source> | </source> | ||
+ | |||
+ | == compilando OBS - GiT == | ||
+ | <source lang="bash"> | ||
+ | git clone https://github.com/jp9000/obs-studio.git | ||
+ | cd obs-studio | ||
+ | git submodule init && git submodule update | ||
+ | mkdir build && cd build | ||
+ | cmake -DUNIX_STRUCTURE=1 -DCMAKE_INSTALL_PREFIX=/usr .. | ||
+ | make -j | ||
+ | make install | ||
+ | ldconfig | ||
+ | </source> | ||
+ | |||
+ | Ou via zypper | ||
+ | * http://packman.links2linux.org/package/obs-studio | ||
+ | |||
+ | [[Categoria:Open Broadcast Software]] |
Edição atual tal como às 16h00min de 29 de março de 2015
instalando dependências
sudo zypper in cmake gcc-c++ ffmpeg-compat-devel ffmpeg-devel libXinerama-devel \
libv4l-devel x264-devel libXcomposite-devel freetype-devel fontconfig-devel \
pulseaudio-libs-devel v4l-utils faac faac-devel gstreamer-plugins-bad \
gstreamer-plugins-ugly gstreamer-ffmpeg vlc libtool libtool libjansson-devel \
libQt5Widgets-devel libQt5Network-devel libqt5-qtx11extras-devel libudev-devel \
libpulse-devel fdk-aac-devel
compilando OBS - GiT
git clone https://github.com/jp9000/obs-studio.git
cd obs-studio
git submodule init && git submodule update
mkdir build && cd build
cmake -DUNIX_STRUCTURE=1 -DCMAKE_INSTALL_PREFIX=/usr ..
make -j
make install
ldconfig
Ou via zypper