python-docs-fr/library/sndhdr.po

82 lines
4.0 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
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
2017-04-02 20:14:06 +00:00
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
2017-11-14 12:57:56 +00:00
"PO-Revision-Date: 2017-11-15 14:37+0100\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
2016-10-30 09:46:26 +00:00
"Language-Team: LANGUAGE <LL@li.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"
#: ../Doc/library/sndhdr.rst:2
msgid ":mod:`sndhdr` --- Determine type of sound file"
2017-11-14 12:57:56 +00:00
msgstr ":mod:`sndhdr` --- Détermine le type d'un fichier audio"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/sndhdr.rst:10
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
#: ../Doc/library/sndhdr.rst:18
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 cannaux soit ``0`` s'il ne peut pas "
"ê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 "
"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
#: ../Doc/library/sndhdr.rst:35
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
#: ../Doc/library/sndhdr.rst:39 ../Doc/library/sndhdr.rst:49
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
#: ../Doc/library/sndhdr.rst:45
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``."