1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

OBS StudioをUbuntu 18.04で動かす(依存関係解決方法)

Posted at

はじめに

Qiita超初心者のあたらきこと、Atarakima新木です。
最近、Ubuntu 18.04 LTSで、YouTube配信ができないかと思い、OBS Studio (https://obsproject.com/ )を入れようと思ったのですが、エラーでインストールできませんでした。その一部を抜粋したものがこれです。

Error
obs-studio : Depends: libfdk-aac1 (>= 0.1.4) but it is not installable

これをググってみたら、依存関係のエラーとUI上にありましたが、何らかの問題でlibfdk-aac1がインストールできなかったようです。
もはやパッケージもダウンロードされていなかったので、これはリポジトリとかのエラーかと思い、いろいろ探ってみました。

インストール手順

全部Bashスクリプトがやってくれますが、内容を解説すると以下のとおりです。

  • 依存関係解決のため、libfdk-aac1をダウンロード・インストールしておく
  • OBS-Studioをインストール

それだけです。

以下、スクリプトの内容です。

obs-install.sh
wget http://ubuntutym.u-toyama.ac.jp/ubuntu/pool/multiverse/f/fdk-aac/libfdk-aac1_0.1.6-1_amd64.deb
sudo add-apt-repository ppa:obsproject/obs-studio
sudo apt update
sudo apt install ./libfdk-aac1_0.1.6-1_amd64.deb -y
sudo apt install ffmpeg -y
sudo apt install obs-studio -y
rm libfdk-aac1_0.1.6-1_amd64.deb

あとがき

何かエラーが出るなどありましたら、お知らせください。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?