コマンドラインを使用して既存の VLC メディア プレーヤー ウィンドウで .mov ファイルを再生する

コマンドラインを使用して既存の VLC メディア プレーヤー ウィンドウで .mov ファイルを再生する

VLC メディア プレーヤー (2.1.4) のコマンド ラインを使用して .mov ファイルを再生しようとしていますが、毎回既存の VLC メディア プレーヤー ウィンドウに参加させたいと考えています。

以前のバージョンでは、コマンドライン オプション --one-, instance があったようですが、現在は利用できません。廃止されたようです。

これを行う新しい方法はありますか?

答え1

VLC のドキュメントによると、これらのパラメータはまだ存在しますが、プレイリスト ダイアログ ボックスで上書きできます。つまり、設定が--one-instance適切に動作しない原因になっている可能性があります。設定が正しいことを確認してください。VLC がすでに起動されている場合は、正しい設定については以下のスクリーン ショットを参照してください。

VLC スクリーンキャプチャ

次のコマンドライン パラメータも確認する必要があります。

     --one-instance, --no-one-instance
                                 Allow only one running instance (default
                                 disabled)
          Allowing only one running instance of VLC can sometimes be useful,
          for example if you associated VLC with some media types and you don't
          want a new instance of VLC to be opened each time you open a file in
          your file manager. This option will allow you to play the file with
          the already running instance or enqueue it. (default disabled)
      --started-from-file, --no-started-from-file
                                 VLC is started from file association (default
                                 disabled)
          Tell VLC that it is being launched due to a file association in the
          OS (default disabled)
      --one-instance-when-started-from-file, --no-one-instance-when-started-from-file
                                 Use only one instance when started from file
                                 manager (default enabled)
          Use only one instance when started from file manager (default enabled)
      --playlist-enqueue, --no-playlist-enqueue
                                 Enqueue items into playlist in one instance
                                 mode (default disabled)
          When using the one instance only option, enqueue items to playlist
          and keep playing current item. (default disabled)

関連情報