LinuxでSkypeビデオ通話を記録する方法は?


28

Skypeで録画ビデオインタビューを行いたいのですが、それを達成するための信頼できるツールを探しています。

遅いものやバグのないものはありますか?

私は(K)Ubuntuを実行しています。


gtk-recordmydesktopを試しましたか?私はそれでほとんど何でも記録することができます。ffmpeg -i x11grabも機能します。オーディオalsa-loopの動作に問題がある場合。
RobotHumans

askubuntu.comで質問してみてください。
アダムByrtek

回答:


11

ソフトウェアrecordMyDesktop http://recordmydesktop.sourceforge.net/about.phpがあり、必要な画面の任意の部分を記録できます。スカイプセッションの記録に使用します。

sudo apt-get install recordmydesktop

メインチャンネルからインストールします。


ヘッドセットを装着した状態でこれを使用すると、相手の音声が録音されます。デフォルトのマイクから音声を録音していたのだと思います(したがって、自分の声をキャプチャしましたが、相手の音声はキャプチャしていませんでした)。それを修正する方法はありますか?
マーカスジュニウスブルータス

11

このコマンドは、デスクトップ全体をキャプチャします。そのため、skype-conversation(またはその他)を記録する場合は常にこのコマンドを使用します

ffmpeg -f x11grab -s wxga -r 25 -i :0.0 -sameq /tmp/out.mpg   

1
ありがとう!ウェブカメラのウィンドウや他の人のウィンドウなど、特定のウィンドウのみを記録するにはどうすればよいですか?おそらく、編集しやすくするためにそれらを個別に記録する方法でさえも。
curiousguy

1
@curiousguy、特定のウィンドウをrecordmydesktopで記録するには、「xwininfo」を使用してウィンドウIDを取得してから、recordmydesktopで「--windowid」パラメーターを使用します。ウィンドウを特定のサイズ(ピクセル単位)に拡大縮小する場合は、さまざまな方法があります。Compizにはこれがオプションとして含まれていると思います。また、Openboxからウィンドウのサイズが通知されます。(私はFedoraを使用しています。)また、Openboxを使用するとウィンドウを「装飾解除」できます。これは、recordmydesktopがウィンドウの境界を記録している場合に役立ちます。しかし、ffmpegでこれが可能かどうかわかりませんか?
PJブルーネット

ubuntuでx11grabを有効にしてコンパイルするにはどうしますか?どのパッケージが必要ですか?
v010dya

8

バックグラウンド

ffmpegと利用可能なヘルプ記事(このサイトを含む)の量のおかげで、通話中(またはX11デスクトップアクティビティ中)にライブビデオとオーディオを記録することはそれほど難しくありません。ただし、より高い品質を目指す場合、メディアの取り込みと圧縮を同時に行うという単純なアプローチの限界にすぐに到達します。したがって、以下を可能にするツール(またはツールセット)の必要性:

  1. さらなる処理のために、圧縮せずに通話をファイルに記録し、電話をかけるときは音声だけに関心があることを認識します。
  2. 後で録音した通話を高品質で圧縮します。

次のBashスクリプト(myrecmyrec-novideoおよびmyproc)は、このタスクでの私の試みです。これらのスクリプトをより適切に作成する方法があると確信していますが、外出先でBashスクリプトを学習していました(動作させてから、非常に満足しています)。

前提条件

  1. ffmpeg
  2. pulseaudio
  3. skype

システムに存在する12存在しない場合は、好みのパッケージマネージャーでインストールします(私はを使用していますsynaptic)。以下のためskypeの訪問www.skype.com


ロスレスビデオとロスレスオーディオを記録する- myrec

  1. テキストファイルを作成する
  2. myrec名前を付けて保存します(またはあなたに合った名前)
  3. 作るmyrecのコマンドを発行して、実行可能:chmod +x myrec
  4. 以下のコードをそこに貼り付け、User settingsセットアップに合わせてセクションを変更します。

#!/bin/bash

echo "Record lossless audio and lossless video for further processing."
echo "Created file name always starts with temp_YYYYMMDD_HHMMSS."
echo "Syntax:"
echo "myrec [optional file description]"
echo "Optional file description is appended to the file name, with spaces replaced by underscores."
echo
echo

### User settings - adjust values to suit your system and needs

# I used to have the name of my webcam mic here, but that stopped working after a system update. "default" was the only fix I found. If you have more than one microphone connected, you may need to tell Pulseaudio which mic you want to be the default, I think pavucontrol is the utility for it.
# If you want to try supplying a name here, run pacmd, then within it the command list-sources will give you a list of possible microphones. Use the name field value without angle brackets.
microphone_audio_device="default"

# Run pacmd, within it the command list-sinks will give you a list of devices to choose from. Use the name field value without angle brackets.
speakers_audio_device="alsa_output.pci-0000_00_1b.0.analog-stereo.monitor"

# Select frame size.
# Some standard frame sizes for reference:
# wvga 852x480
# wxga 1366x768
# wsxga 1600x1024
# wuxga 1920x1200
# woxga 2560x1600
# wqsxga 3200x2048
# wquxga 3840x2400
# whsxga 6400x4096
# whuxga 7680x4800
frame_size="wsxga"

# Framerate in frames per second
framerate="30"

# Indicate which screen the video should be recorded from and an optional offset.
# For example:
# :0.0+10,20
# where 0.0 is display.screen number of your X11 server, same as the DISPLAY environment variable. 10 is the x-offset and 20 the y-offset of the frame, measured from the top left corner of the screen to the top left corner of the frame.
frame_position=":0.0"

# Include the trailing slash after target directory name.
# Expect a very large file!
target_directory="/target/directory/name/"

### End of user settings



record_command="ffmpeg -f pulse -thread_queue_size 512k -i $speakers_audio_device -f pulse -thread_queue_size 512k -i $microphone_audio_device -f x11grab -s $frame_size -r $framerate -thread_queue_size 512k -i $frame_position -map 0 -map 1 -map 2 -codec:a copy -codec:v libx264 -qp 0 -preset ultrafast"
temporary_file_prefix="temp_"

# The IFS (Internal Field Separator) system variable stores the character that separates command line arguments.
# We can use it to replace spaces with underscores.
temp=$IFS
IFS='_'
description="$*"
IFS=$temp

if [ $# -eq 0 ]; then
  $record_command $target_directory$temporary_file_prefix`date +%Y%m%d_%H%M%S`.mkv
else
  $record_command $target_directory$temporary_file_prefix`date +%Y%m%d_%H%M%S`_$description.mkv
fi

音声のみの録音は、次のセクションの別のスクリプトで処理されます。


ロスレスオーディオのみを録音する- myrec-novideo

  1. テキストファイルを作成する
  2. myrec-novideo名前を付けて保存します(またはあなたに合った名前)
  3. 作るmyrec-novideoのコマンドを発行して、実行可能:chmod +x myrec-novideo
  4. 以下のコードをそこに貼り付け、User settingsセットアップに合わせてセクションを変更します。

#!/bin/bash

echo "Record lossless audio for further processing."
echo "Created file name always starts with temp_YYYYMMDD_HHMMSS."
echo "Syntax:"
echo "myrec-novideo [optional file description]"
echo "Optional file description is appended to the file name, with spaces replaced by underscores."
echo
echo


### User settings - adjust values to suit your system

# I used to have the name of my webcam mic here, but that stopped working after a system update. "default" was the only fix I found. If you have more than one microphone connected, you may need to tell Pulseaudio which mic you want to be the default, I think pavucontrol is the utility for it.
# If you want to try supplying a name here, run pacmd, then within it the command list-sources will give you a list of possible microphones. Use the name field value without angle brackets.
microphone_audio_device="default"

# Run pacmd, within it the command list-sinks will give you a list of devices to choose from. Use the name field value without angle brackets.
speakers_audio_device="alsa_output.pci-0000_00_1b.0.analog-stereo.monitor"

# Include the trailing slash after target directory name.
# Expect a large file!
target_directory="/target/directory/name/"

### End of user settings



record_command="ffmpeg -f pulse -thread_queue_size 512k -i $speakers_audio_device -f pulse -thread_queue_size 512k -i $microphone_audio_device -map 0 -map 1 -codec:a copy -codec:a copy"
temporary_file_prefix="temp_"

# The IFS (Internal Field Separator) system variable stores the character that separates command line arguments.
# We can use it to replace spaces with underscores.
temp=$IFS
IFS='_'
description="$*"
IFS=$temp

if [ $# -eq 0 ]; then
  $record_command $target_directory$temporary_file_prefix`date +%Y%m%d_%H%M%S`.mkv
else
  $record_command $target_directory$temporary_file_prefix`date +%Y%m%d_%H%M%S`_$description.mkv
fi


記録されたファイルを処理します- myproc

  1. テキストファイルを作成する
  2. myproc名前を付けて保存します(またはあなたに合った名前)
  3. 作るmyprocのコマンドを発行して、実行可能:chmod +x myproc
  4. 以下のコードをそこに貼り付け、User settingsセットアップに合わせてセクションを変更します。


#!/bin/bash

echo "Compress files recorded with myrec or myrec-novideo."
echo "For files to be processed they need to reside in the storage directory and start with temp_"
echo "The two audio tracks (mic and speakers) are mixed together into one new stream, but they are also available as separate tracks in the final file."

# Mixing is because players I know cannot play two audio tracks from the same file simultaneously.
# The mic also captures sounds produced by the speakers. It has two effects:
# 1. You can use this single track to hear both yourself (the mic) and whatever came out of your speakers. Personally I did not like the degraded quality of recorded speaker sounds, hence the direct recording off the sound card and mixing that with the mic track.
# 2. Speaker sounds recorded by the mic are slightly delayed when compared to the direct recording off the sound card. The mixed track is thus hard to listen to.
# I do have echo cancellation module loaded in Pulseaudio, perhaps there is something wrong with my configuration?

### User settings

# Indicate storage directory without the trailing slash
storage_directory="/storage/directory/name"

### End of user settings

# Any temp_ file may contain 3 streams (audio, audio, video) indexed as (0, 1, 2), or just 2 streams (audio, audio) indexed as (0, 1).
# A file temp2_ contains just one stream: both audio streams from temp_ mixed.
# The step with temp2_ is necessary as the mixing option (-filter_complex) is a global option (i.e. not stream-specific). Attempts at doing it all in one go prevent the separate tracks from being copied into the final file.

for f in $storage_directory/temp_*
do
  if [ -e ${f/temp_/} ]
  then
    # Do not overwrite an existing final file. Prevents unnecessary work when the script is run regularly as a cron job.
    echo "$f: A final file (without temp_) already exists. Skipping. If you want to reencode, please delete the final file manually."
  else
    # Variable g will contain the name of the second temporary file with both audio streams mixed into one.
    g=${f/temp_/temp2_}

    # Mixing mic and sound card tracks into one stream
    ffmpeg -i "$f" -map 0:0 -map 0:1 -filter_complex amix=inputs=2:duration=longest:dropout_transition=2 -codec:a libvorbis -n "$g"

    # Create the final file: copy the mixed audio stream from temp2_, add and compress both separate audio streams from temp_, compress at high quality the video stream from temp_.
    # The question mark in -map 0:2? tells ffmpeg to ignore the error if this stream (video) is missing. Allows this same script to be used for audio-only recordings.
    ffmpeg -i "$f" -i "$g" -map 1:0 -map 0:0 -map 0:1 -map 0:2? -codec:a:0 copy -codec:a:1 libvorbis -codec:a:2 libvorbis -codec:v libx264 -qp 18 -preset slow -threads 0 -n "${g/temp2_/}"

    # Delete temp2_
    rm "$g"
  fi
done


ffmpegの柔軟性のおかげでmyproc、ビデオストリームを含む場合と含まない場合があるファイルを処理できます。


スクリプトの使用方法

  1. Skypeのビデオ通話ウィンドウが画面のどこに表示されるかを決定し、ウィンドウサイズを目的のサイズに設定します。Skypeはこのウィンドウ設定を記憶するので、一度だけ行う必要があります。以降の呼び出しごとに、ウィンドウは同じ場所に同じサイズで表示されます。myrec設定を忘れずに伝えてください。一般的に、ビデオコールウィンドウをウェブカメラの近くに配置して、反対側の人が自分が目で見ていると考える機会を得るようにします。
  2. ターミナルウィンドウを開きます。記録を開始するときはいつでも、次のコマンドを使用します。

    • オーディオとビデオを記録するには: . myrec some description
    • 音声のみを録音するには: . myrec-novideo some description

    some description両方のスクリプトでオプションです。Tabキーを使用してスクリプト名を展開し、入力を節約できます。 ffmpegは、という名前のファイルへの記録を開始しますtemp_YYYYMMDD_HHMMSS_some_description.mkv。ここYYYYMMDD_HHMMSSで、は記録の日付と時刻です。

  3. 停止する準備ができたら、記録qしているターミナルウィンドウでを押しffmpegます。
  4. 実行. myprocしてファイルを処理(圧縮)します。手動で実行することも、cron外出中に実行するジョブを設定することもできます。
  5. 圧縮が期待どおりに行われたことを確認したら、temp_ファイルを削除します。


課題

  1. 名前でマイクを指定できませんdefault。特別な値のみを使用できます。以前はそこにマイク名がありましたが、システムの更新後にこの設定が機能しなくなりました。それは私のセットアップのみ、またはに制限されたものpulseaudioです。
  2. マイクの音声には、私の声とスピーカーからの音が含まれています。スピーカーからの音は、サウンドカードから直接録音されたオーディオストリームの少し後ろにあります。Pulseのエコーキャンセルモジュールがロードされていますが、それは自分の音声エコーをキャンセルすることのみを意図していると思います。問題は、マイクの音声がサウンドカードの音声と混合されている場合、わずかな遅延により、結果のストリームが聞き取りにくくなることです。誰かがマイクがスピーカーからの音を録音するのを防ぐ方法を知っていますか?


最終ノート

これらのツールが役立つことを願っています。改善とコメントのためにあなたの考えを聞くのを楽しみにしています。


2
ワオ。gitアカウントを持っていない場合はgitアカウントを開始し、これらのスクリプトをそこに保持することもできます。
-RobertL

Xavras様、すべてのユーザー設定を修正し、一時ファイルのプレフィックスを変更し、ファイル形式から秒を除外しました。スクリプトを実行すると、「...〜/ Desktop / sky_20160506_12-10h.mkv:No such file or directory」というエラーが表示されます。事前にファイルを作成するか、rootとして実行すると役に立ちません。これはなぜですか?
superAnnoyingUser

@Studentこんにちは、あなたは今までにそれを整理しているかもしれませんが、私は今日だけあなたのコメントについての通知を受け取りました。あなたが引用したエラーを見ると、チルダ(〜)が適切なパスに解決されなかったと思います。/ home / student /のような完全な形式でパスを指定してみてください。記録または処理スクリプトで問題に遭遇しましたか?
Xavras Wyzryn

4

Open Broadcaster Software(OBS)Studioは、これらすべての要件を使いやすいフロントエンドに結び付けます。

それはオープンソースであり、クロスプラットフォームです:

Ubuntu 15.04以降の場合:

sudo add-apt-repository ppa:obsproject/obs-studio
sudo apt-get update && sudo apt-get install obs-studio ffmpeg

他のディストリビューション/以前のUbuntuバージョンについては、git wikiをご覧ください


0

xvidcapを使用すると、デスクトップから領域を選択して記録できます。コマンドで起動します

xvidcap

デフォルトで./test-0000.mpegでビデオを見つけます。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.