GNU/Linux >> Linux の 問題 >  >> Linux

/dev/urandom を Linux サウンド出力にパイプする方法は?

最近、バイトを送信できる単純なデバイスがあるかどうかはわかりません- /dev/dsp device は古い OSS のものであり、サウンド カードが /dev/snd のデバイスによって制御される最新の ALSA ベースのシステムにはおそらく存在しません。 .

おそらく aplay を使用したほうがよいでしょう または /dev/random からのデータを「再生」する何か ただし、データがどの形式であると仮定するかを指示するために、おそらく多くのスイッチを指定する必要があります。WAV データであるかのように再生するには、次のようにする必要があります。

aplay -c 2 -f S16_LE -r 44100 /dev/random

cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 10 | sed 1000000000q |aplay

cat /dev/urandom | tr -dc '0-9' | fold -w 10 | sed 1000000000q |aplay

cat /dev/urandom | tr -dc '0-9' | fold -w 10 | sed 1000000000q |aplay



cat /dev/urandom | tr -dc '&*(&(^)' | fold -w 10 | sed 1000000000q |aplay

cat /dev/urandom | tr -dc '&*(&(^)' | fold -w 10 | sed 1000000000q |aplay

cat /dev/urandom | tr -dc '~`[email protected]#$%^&*()' | fold -w 1 | sed 1000000000q |aplay

cat /dev/urandom | tr -dc "0-9a-z" |aplay

cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 |aplay -r 192000

pacat /dev/urandom
ubuntu で動作 追加のインストールなしで。


Linux
  1. / dev/randomを使用してLinuxでランダムパスワードを生成する方法

  2. / dev/randomと/dev/ urandomをいつ使用するか?

  3. Linux – / dev / urandomで「u」という文字は何を意味しますか?

  1. Linux – / dev / nullを作成する方法は?

  2. /dev/random または /dev/urandom を base64 でエンコードする方法は?

  3. Linux で /dev/one に相当するものを取得するにはどうすればよいですか

  1. Linux:/dev/console 、 /dev/tty 、 /dev/tty0 の違い

  2. echo または print /dev/stdin /dev/stdout /dev/stderr

  3. オーディオ出力に何かをパイプする方法は?