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
4487dd0e
Kaydet (Commit)
4487dd0e
authored
Eki 09, 2014
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#18615: Make sndhdr return namedtuples.
Patch by Claudiu Popa.
üst
aad627f2
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
39 additions
and
5 deletions
+39
-5
sndhdr.rst
Doc/library/sndhdr.rst
+11
-4
3.5.rst
Doc/whatsnew/3.5.rst
+7
-0
sndhdr.py
Lib/sndhdr.py
+6
-1
test_sndhdr.py
Lib/test/test_sndhdr.py
+13
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Doc/library/sndhdr.rst
Dosyayı görüntüle @
4487dd0e
...
...
@@ -16,8 +16,9 @@
The :mod:`sndhdr` provides utility functions which attempt to determine the type
of sound data which is in a file. When these functions are able to determine
what type of sound data is stored in a file, they return a tuple ``(type,
sampling_rate, channels, frames, bits_per_sample)``. The value for *type*
what type of sound data is stored in a file, they return a
:func:`~collections.namedtuple`, containing five attributes: (``filetype``,
``framerate``, ``nchannels``, ``nframes``, ``sampwidth``). The value for *type*
indicates the data type and will be one of the strings ``'aifc'``, ``'aiff'``,
``'au'``, ``'hcom'``, ``'sndr'``, ``'sndt'``, ``'voc'``, ``'wav'``, ``'8svx'``,
``'sb'``, ``'ub'``, or ``'ul'``. The *sampling_rate* will be either the actual
...
...
@@ -31,13 +32,19 @@ be the sample size in bits or ``'A'`` for A-LAW or ``'U'`` for u-LAW.
.. function:: what(filename)
Determines the type of sound data stored in the file *filename* using
:func:`whathdr`. If it succeeds, returns a tuple as described above, otherwise
:func:`whathdr`. If it succeeds, returns a
named
tuple as described above, otherwise
``None`` is returned.
.. versionchanged:: 3.5
Result changed from a tuple to a namedtuple.
.. function:: whathdr(filename)
Determines the type of sound data stored in a file based on the file header.
The name of the file is given by *filename*. This function returns a tuple as
The name of the file is given by *filename*. This function returns a
named
tuple as
described above on success, or ``None``.
.. versionchanged:: 3.5
Result changed from a tuple to a namedtuple.
Doc/whatsnew/3.5.rst
Dosyayı görüntüle @
4487dd0e
...
...
@@ -264,6 +264,13 @@ smtplib
implement custom authentication mechanisms (contributed by Milan Oberkirch in
:issue:`15014`).
sndhdr
------
* :func:`~sndhdr.what` and :func:`~sndhdr.whathdr` now return
:func:`~collections.namedtuple` \s (contributed by Claudiu Popa in
:issue:`18615`).
socket
------
...
...
Lib/sndhdr.py
Dosyayı görüntüle @
4487dd0e
...
...
@@ -32,6 +32,11 @@ explicitly given directories.
__all__
=
[
'what'
,
'whathdr'
]
from
collections
import
namedtuple
SndHeaders
=
namedtuple
(
'SndHeaders'
,
'filetype framerate nchannels nframes sampwidth'
)
def
what
(
filename
):
"""Guess the type of a sound file."""
res
=
whathdr
(
filename
)
...
...
@@ -45,7 +50,7 @@ def whathdr(filename):
for
tf
in
tests
:
res
=
tf
(
h
,
f
)
if
res
:
return
res
return
SndHeaders
(
*
res
)
return
None
...
...
Lib/test/test_sndhdr.py
Dosyayı görüntüle @
4487dd0e
import
sndhdr
import
pickle
import
unittest
from
test.support
import
findfile
...
...
@@ -18,6 +19,18 @@ class TestFormats(unittest.TestCase):
what
=
sndhdr
.
what
(
filename
)
self
.
assertNotEqual
(
what
,
None
,
filename
)
self
.
assertSequenceEqual
(
what
,
expected
)
self
.
assertEqual
(
what
.
filetype
,
expected
[
0
])
self
.
assertEqual
(
what
.
framerate
,
expected
[
1
])
self
.
assertEqual
(
what
.
nchannels
,
expected
[
2
])
self
.
assertEqual
(
what
.
nframes
,
expected
[
3
])
self
.
assertEqual
(
what
.
sampwidth
,
expected
[
4
])
def
test_pickleable
(
self
):
filename
=
findfile
(
'sndhdr.aifc'
,
subdir
=
"sndhdrdata"
)
what
=
sndhdr
.
what
(
filename
)
dump
=
pickle
.
dumps
(
what
)
self
.
assertEqual
(
pickle
.
loads
(
dump
),
what
)
if
__name__
==
'__main__'
:
unittest
.
main
()
Misc/NEWS
Dosyayı görüntüle @
4487dd0e
...
...
@@ -166,6 +166,8 @@ Core and Builtins
Library
-------
-
Issue
$
18615
:
sndhdr
.
what
/
whathdr
now
return
a
namedtuple
.
-
Issue
#
22462
:
Fix
pyexpat
's creation of a dummy frame to make it
appear in exception tracebacks.
...
...
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