Copy link to clipboard
Copied
Bonjour, j'ai Adobe Acrobat d'installer sur mon portable. J'ai Windows 11 français. J'aimerais activer la lecture audio et me faire lire mes PDF en Canada Français. Malheureusement quand je vais dans les options de lecture audio et dans la voix, j'ai qu'une seule option en Anglais.
Je cherche comment ajouter des voix dans cette option.
Est-ce que quelqu'un pourrait m'aider s'il vous plait ?
Copy link to clipboard
Copied
Hi there
Hope you are doing well, please go through the correct answer marked in the similar discussion https://adobe.ly/3LJCFTL and see if that works.
~Amal
Copy link to clipboard
Copied
J'ai trouvé la solution à mon problème. Je l'écrit ici en français si jamais cela peut aider quelqu'un.
Il faut ouvrir Power Shell ISE en mode administrateur
Il faut Copier/Coller les lignes ci-dessous :
$sourcePath = 'HKLM:\software\Microsoft\Speech_OneCore\Voices\Tokens' #Where the OneCore voices live
$destinationPath = 'HKLM:\SOFTWARE\Microsoft\Speech\Voices\Tokens' #For 64-bit apps
$destinationPath2 = 'HKLM:\SOFTWARE\WOW6432Node\Microsoft\SPEECH\Voices\Tokens' #For 32-bit apps
cd $destinationPath
$listVoices = Get-ChildItem $sourcePath
foreach($voice in $listVoices)
{
$source = $voice.PSPath #Get the path of this voices key
copy -Path $source -Destination $destinationPath -Recurse
copy -Path $source -Destination $destinationPath2 -Recurse
}Par la suite on exécute ce code.
Fermer PowerShelle et aller dans vos préférences de lecture dans Adobe Acrobat French - (Canada) est apparue dans mon cas après cela.
Copy link to clipboard
Copied
Hi there
Hope you are doing well and thanks for reaching out.
It seems that Acrobat is currently using only an English voice for Read Aloud because your Windows system does not have a French (Canada) voice installed. Acrobat relies on the voices available in your Windows settings.
Please try the steps below to add the French (Canada) voice:
If the voice still does not appear, please make sure both Windows and Acrobat are updated to the latest versions. Go to Help > Check for updates and reboot the computer once.
~Amal
Copy link to clipboard
Copied
Bonjour, j'ai Français Canada, je suis au Québec. Je ne comprend pas trop ou aller pour ajouter un autre Langue Français Canada.
Copy link to clipboard
Copied
Hi there
Hope you are doing well, please go through the correct answer marked in the similar discussion https://adobe.ly/3LJCFTL and see if that works.
~Amal
Copy link to clipboard
Copied
J'ai trouvé la solution à mon problème. Je l'écrit ici en français si jamais cela peut aider quelqu'un.
Il faut ouvrir Power Shell ISE en mode administrateur
Il faut Copier/Coller les lignes ci-dessous :
$sourcePath = 'HKLM:\software\Microsoft\Speech_OneCore\Voices\Tokens' #Where the OneCore voices live
$destinationPath = 'HKLM:\SOFTWARE\Microsoft\Speech\Voices\Tokens' #For 64-bit apps
$destinationPath2 = 'HKLM:\SOFTWARE\WOW6432Node\Microsoft\SPEECH\Voices\Tokens' #For 32-bit apps
cd $destinationPath
$listVoices = Get-ChildItem $sourcePath
foreach($voice in $listVoices)
{
$source = $voice.PSPath #Get the path of this voices key
copy -Path $source -Destination $destinationPath -Recurse
copy -Path $source -Destination $destinationPath2 -Recurse
}Par la suite on exécute ce code.
Fermer PowerShelle et aller dans vos préférences de lecture dans Adobe Acrobat French - (Canada) est apparue dans mon cas après cela.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now