web-dev-qa-db-ja.com

端末からビデオを再生する

このコマンドを使用して端末からビデオを再生しようとしています

vlc my_video.avi

コマンドを実行しようとしたときに表示されるエラー-

VLC media player 2.1.4 Rincewind (revision 2.1.4-0-g2a072be)
[0x8663910] main libvlc: Running vlc with the default interface. Use 'cvlc' to use    vlc without interface.
[0xaafddf80] filesystem access error:cannot open file the_file_path (no such file or directory)
[0xb040a990] main input error:open of 'file://the_file_path' failed

次に、「cvlc」を使用しようとしましたが、再び同じエラーが発生しました!

1
gsdf

Mplayerをインストールしてみてください

Sudo apt-get install mplayer

そして走る

mplayer -vo caca <movie_file

ビデオを再生できるかどうかを確認します

1
vembutech

ファイル名に問題があるはずです。私は2つのことを試しました。

  1. vlc wrongfileName.mp4そして、それはあなたが説明したエラーを私に与えました。
  2. vlc correctFileName.mp4これは異なるエラー出力を与えましたが、ファイルは開かれたので、タイプミスをしたか、スペースまたは特殊文字が含まれている場合はパスを引用する必要があると思います

参照用の2番目のエラー:

navjeet@navjeet-Lenovo-G50-80:~/Videos/Game Of Thrones GOT/Season 2$
vlc Game.of.Thrones.S02E08.HDTV.x264-ASAP.mp4 VLC media player 2.2.2
Weatherwax (revision 2.2.2-0-g6259d80) [000000000141a148] core libvlc:
Running vlc with the default interface. Use 'cvlc' to use vlc without interface. 
Failed to open VDPAU backend libvdpau_va_gl.so: cannot open shared object file: No such file or directory Failed to open VDPAU backend libvdpau_va_gl.so: cannot open shared object file: No such file or directory [00007f6b74000ee8] http access error: error:
HTTP/1.1 522 Origin Connection Time-out [00007f6b840019d8] http access error: error: HTTP/1.1 522 Origin Connection Time-out [00007f6b74000ee8] core access error: connection failed: Network is unreachable [00007f6b74000ee8] core access error: connection failed:
Network is unreachable [00007f6b74000ee8] http access error: cannot connect to services.tvrage.com:80
1
EetSandhu

なぜプリインストールされているtotemを誰も提案しなかったのですか? ^^

cd /path/to/location/of/video
totem video.mp4
0