1
0
Fork 0
python-docs-fr/library/sndhdr.po

206 lines
6.1 KiB
Plaintext
Raw Normal View History

2018-07-04 09:06:45 +00:00
# Copyright (C) 2001-2018, Python Software Foundation
2018-07-04 09:08:42 +00:00
# For licence information, see README file.
2016-10-30 09:46:26 +00:00
#
msgid ""
msgstr ""
2019-12-05 22:15:54 +00:00
"Project-Id-Version: Python 3\n"
2016-10-30 09:46:26 +00:00
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-01-15 22:33+0100\n"
"PO-Revision-Date: 2018-09-29 17:46+0200\n"
2017-11-14 12:57:56 +00:00
"Last-Translator: Julien Palard <julien@palard.fr>\n"
2018-07-04 09:14:25 +00:00
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
2017-05-23 22:40:56 +00:00
"Language: fr\n"
2016-10-30 09:46:26 +00:00
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: library/sndhdr.rst:2
2016-10-30 09:46:26 +00:00
msgid ":mod:`sndhdr` --- Determine type of sound file"
msgstr ":mod:`sndhdr` — Détermine le type d'un fichier audio"
2016-10-30 09:46:26 +00:00
2022-03-23 17:40:12 +00:00
#: library/sndhdr.rst:11
2016-10-30 09:46:26 +00:00
msgid "**Source code:** :source:`Lib/sndhdr.py`"
2017-11-14 12:57:56 +00:00
msgstr "**Code source :** :source:`Lib/sndhdr.py`"
2016-10-30 09:46:26 +00:00
2022-05-22 21:15:02 +00:00
#: library/sndhdr.rst:20
msgid ""
"The :mod:`sndhdr` module is deprecated (see :pep:`PEP 594 <594#sndhdr>` for "
"details and alternatives)."
2022-03-23 17:40:12 +00:00
msgstr ""
2022-05-22 21:15:02 +00:00
#: library/sndhdr.rst:23
2016-10-30 09:46:26 +00:00
msgid ""
"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 :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 value or ``0`` if unknown or difficult to decode. "
"Similarly, *channels* will be either the number of channels or ``0`` if it "
"cannot be determined or if the value is difficult to decode. The value for "
"*frames* will be either the number of frames or ``-1``. The last item in "
"the tuple, *bits_per_sample*, will either be the sample size in bits or "
"``'A'`` for A-LAW or ``'U'`` for u-LAW."
msgstr ""
2017-11-14 12:57:56 +00:00
"Le module :mod:`sndhdr` fournit des fonctions permettant d'essayer de "
"déterminer le type de données audio contenues dans un fichier. Lorsque ces "
"fonctions parviennent à déterminer le format de données, elles renvoient un :"
"func:`~collections.namedtuple`, contenant cinq attributs : (``filetype``, "
"``framerate``, ``nchannels``, ``nframes``, ``sampwidth``). La valeur de "
"*type* indique le format de données parmi ``'aifc'``, ``'aiff'``, ``'au'``, "
"``'hcom'``, ``'sndr'``, ``'sndt'``, ``'voc'``, ``'wav'``, ``'8svx'``, "
"``'sb'``, ``'ub'``, et ``'ul'``. La valeur de *sampling_rate* sera soit la "
"vraie valeur, soit, si elle est inconnue ou compliquée à obtenir, ``0``. De "
"même, *channels* vaut soit le nombre de canaux soit ``0`` s'il ne peut pas "
2017-11-14 12:57:56 +00:00
"être déterminé ou si la valeur est compliquée à décoder. La valeur de "
"*frames* sera soit le nombre de *frames* soit ``-1``. Le dernier élément du "
"*n*-uplet, *bits_per_sample* sera soit la taille d'un échantillon en bits, "
"soit ``'A'`` pour *A-LAW* ou ``'U'`` pour *u-LAW*."
2016-10-30 09:46:26 +00:00
2022-05-22 21:15:02 +00:00
#: library/sndhdr.rst:40
2016-10-30 09:46:26 +00:00
msgid ""
"Determines the type of sound data stored in the file *filename* using :func:"
"`whathdr`. If it succeeds, returns a namedtuple as described above, "
"otherwise ``None`` is returned."
msgstr ""
2017-11-14 12:57:56 +00:00
"Détermine le type de données audio stockée dans le fichier *filename* en "
"utilisant :func:`whathdr`. Si elle y parvient, le *namedtuple* décrit plus "
"haut est renvoyé, sinon, ``None``."
2016-10-30 09:46:26 +00:00
2022-05-22 21:15:02 +00:00
#: library/sndhdr.rst:54
2016-10-30 09:46:26 +00:00
msgid "Result changed from a tuple to a namedtuple."
msgstr "Le type renvoyé passe d'un *n*-uplet à un *n*-uplet nommé."
2016-10-30 09:46:26 +00:00
2022-05-22 21:15:02 +00:00
#: library/sndhdr.rst:50
2016-10-30 09:46:26 +00:00
msgid ""
"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 namedtuple as described above on success, or ``None``."
msgstr ""
2017-11-14 12:57:56 +00:00
"Détermine le type de données audio contenue dans un fichier, en se basant "
"sur ses entêtes. Le nom du fichier est donné par *filename*. Cette fonction "
"renvoie un *namedtuple* tel que décrit plus haut, si elle y parvient, sinon "
"``None``."
#: library/sndhdr.rst:57
msgid ""
"The following sound header types are recognized, as listed below with the "
"return value from :func:`whathdr`: and :func:`what`:"
msgstr ""
#: library/sndhdr.rst:61
msgid "Value"
msgstr ""
#: library/sndhdr.rst:61
msgid "Sound header format"
msgstr ""
#: library/sndhdr.rst:63
msgid "``'aifc'``"
msgstr ""
#: library/sndhdr.rst:63
msgid "Compressed Audio Interchange Files"
msgstr ""
#: library/sndhdr.rst:65
msgid "``'aiff'``"
msgstr ""
#: library/sndhdr.rst:65
msgid "Audio Interchange Files"
msgstr ""
#: library/sndhdr.rst:67
msgid "``'au'``"
msgstr ""
#: library/sndhdr.rst:67
msgid "Au Files"
msgstr ""
#: library/sndhdr.rst:69
msgid "``'hcom'``"
msgstr ""
#: library/sndhdr.rst:69
msgid "HCOM Files"
msgstr ""
#: library/sndhdr.rst:71
msgid "``'sndt'``"
msgstr ""
#: library/sndhdr.rst:71
msgid "Sndtool Sound Files"
msgstr ""
#: library/sndhdr.rst:73
msgid "``'voc'``"
msgstr ""
#: library/sndhdr.rst:73
msgid "Creative Labs Audio Files"
msgstr ""
#: library/sndhdr.rst:75
msgid "``'wav'``"
msgstr ""
#: library/sndhdr.rst:75
msgid "Waveform Audio File Format Files"
msgstr ""
#: library/sndhdr.rst:77
msgid "``'8svx'``"
msgstr ""
#: library/sndhdr.rst:77
msgid "8-Bit Sampled Voice Files"
msgstr ""
#: library/sndhdr.rst:79
msgid "``'sb'``"
msgstr ""
#: library/sndhdr.rst:79
msgid "Signed Byte Audio Data Files"
msgstr ""
#: library/sndhdr.rst:81
msgid "``'ub'``"
msgstr ""
#: library/sndhdr.rst:81
msgid "UB Files"
msgstr ""
#: library/sndhdr.rst:83
msgid "``'ul'``"
msgstr ""
#: library/sndhdr.rst:83
msgid "uLAW Audio Files"
msgstr ""
#: library/sndhdr.rst:88
msgid ""
"A list of functions performing the individual tests. Each function takes "
"two arguments: the byte-stream and an open file-like object. When :func:"
"`what` is called with a byte-stream, the file-like object will be ``None``."
msgstr ""
#: library/sndhdr.rst:92
msgid ""
"The test function should return a string describing the image type if the "
"test succeeded, or ``None`` if it failed."
msgstr ""
#: library/sndhdr.rst:95
msgid "Example:"
msgstr ""