Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
55a8790c
Kaydet (Commit)
55a8790c
authored
Ara 10, 2002
tarafından
Greg Ward
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Aesthetic tweakery: factor read_sound_file() out of play_sound_file().
üst
36dacfa4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
5 deletions
+9
-5
test_ossaudiodev.py
Lib/test/test_ossaudiodev.py
+9
-5
No files found.
Lib/test/test_ossaudiodev.py
Dosyayı görüntüle @
55a8790c
...
...
@@ -12,7 +12,7 @@ import audioop
SND_FORMAT_MULAW_8
=
1
def
play
_sound_file
(
path
):
def
read
_sound_file
(
path
):
fp
=
open
(
path
,
'r'
)
size
,
enc
,
rate
,
nchannels
,
extra
=
sunaudio
.
gethdr
(
fp
)
data
=
fp
.
read
()
...
...
@@ -22,6 +22,12 @@ def play_sound_file(path):
print
"Expect .au file with 8-bit mu-law samples"
return
# Convert the data to 16-bit signed.
data
=
audioop
.
ulaw2lin
(
data
,
2
)
return
(
data
,
rate
,
16
,
nchannels
)
def
play_sound_file
(
data
,
rate
,
ssize
,
nchannels
):
try
:
a
=
ossaudiodev
.
open
(
'w'
)
except
ossaudiodev
.
error
,
msg
:
...
...
@@ -29,9 +35,6 @@ def play_sound_file(path):
raise
TestSkipped
,
msg
raise
TestFailed
,
msg
# convert the data to 16-bit signed
data
=
audioop
.
ulaw2lin
(
data
,
2
)
# set the data format
if
sys
.
byteorder
==
'little'
:
fmt
=
ossaudiodev
.
AFMT_S16_LE
...
...
@@ -83,7 +86,8 @@ def test_errors():
print
msg
def
test
():
play_sound_file
(
findfile
(
'audiotest.au'
))
(
data
,
rate
,
ssize
,
nchannels
)
=
read_sound_file
(
findfile
(
'audiotest.au'
))
play_sound_file
(
data
,
rate
,
ssize
,
nchannels
)
test_errors
()
test
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment