1
2

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 5 years have passed since last update.

Raspberry Pi で 動画を再生するには

Posted at

はじめに

OpenCVなどでavi形式に保存した動画を再生する方法をまとめてみた。

方法

まず最初にMPlayerを導入したのですが、

sudo apt-get install mplayer

再生してみると、動きがもっさりします。

で、別のツールでomxplayerを導入すると動きがスムーズになりました。下記がインストール方法です。

sudo apt-get install libpcre3 fonts-freefont-ttf
sudo apt-get install fbset
wget https://omxplayer.sconde.net/builds/experimental/omxplayer_0.2.6~boblight~git20130425~03cfbee7_armhf.deb
sudo dpkg -i omxplayer_0.2.6~boblight~git20130425~03cfbee7_armhf.deb

起動方法ですがシンプルに

omxplayer ./output.avi

とすると動画が再生されます。

Reference

RaspberryPiにいれるべきおすすめアプリまとめ25選
raspberryPi でMP4動画の快適再生するコマンド omxplayer とその使い方(キーボード操作

1
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?