python-docs-fr/library/sndhdr.po

81 lines
3.9 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"
2020-10-02 08:55:01 +00:00
"POT-Creation-Date: 2020-10-01 16:00+0200\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
#: library/sndhdr.rst:10
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
#: library/sndhdr.rst:18
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 "
2017-11-14 12:57:56 +00:00
"tuple, *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
#: library/sndhdr.rst:35
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
2020-10-02 08:55:01 +00:00
#: library/sndhdr.rst:49
2016-10-30 09:46:26 +00:00
msgid "Result changed from a tuple to a namedtuple."
2017-11-14 12:57:56 +00:00
msgstr "Le type renvoyé passe d'un *tuple* à un *namedtuple*."
2016-10-30 09:46:26 +00:00
#: library/sndhdr.rst:45
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``."