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

81 lines
3.9 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Copyright (C) 2001-2018, Python Software Foundation
# For licence information, see README file.
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-10-01 16:00+0200\n"
"PO-Revision-Date: 2018-09-29 17:46+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: library/sndhdr.rst:2
msgid ":mod:`sndhdr` --- Determine type of sound file"
msgstr ":mod:`sndhdr` — Détermine le type d'un fichier audio"
#: library/sndhdr.rst:10
msgid "**Source code:** :source:`Lib/sndhdr.py`"
msgstr "**Code source :** :source:`Lib/sndhdr.py`"
#: 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 ""
"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 "
"ê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*."
#: 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 ""
"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``."
#: library/sndhdr.rst:49
msgid "Result changed from a tuple to a namedtuple."
msgstr "Le type renvoyé passe d'un *n*-uplet à un *n*-uplet nommé."
#: 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 ""
"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``."