How can I change the voice used by Firefox Reader View (Narrator) in Ubuntu?












9















**how to change firefox reader view voice in ubuntu**



The default voice as well as all alternative voices are very difficult to understand.



I cannot find any documentation about how this feature is wired up.










share|improve this question





























    9















    **how to change firefox reader view voice in ubuntu**



    The default voice as well as all alternative voices are very difficult to understand.



    I cannot find any documentation about how this feature is wired up.










    share|improve this question



























      9












      9








      9


      3






      **how to change firefox reader view voice in ubuntu**



      The default voice as well as all alternative voices are very difficult to understand.



      I cannot find any documentation about how this feature is wired up.










      share|improve this question
















      **how to change firefox reader view voice in ubuntu**



      The default voice as well as all alternative voices are very difficult to understand.



      I cannot find any documentation about how this feature is wired up.







      firefox text-to-speech






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited May 27 '18 at 21:57









      Rafael Muynarsk

      522519




      522519










      asked Sep 7 '17 at 6:58









      VJ RangaVJ Ranga

      4862518




      4862518






















          2 Answers
          2






          active

          oldest

          votes


















          7














          I managed to use the festival voice as default on Firefox.



          enter image description here



          In order to do that, we need to change some configurations on the file /etc/speech-dispatcher/speechd.conf. But first, I need to explain the basic idea of how it works. We can always see what voice is the default one used by speech-dispatcher using the command spd-say:



          spd-say "Hello. How are you?"


          In Ubuntu, the default Texto To Speech (TTS) voice that comes with speech-dispatcher is espeak. So we hear exactly the same voice when we use this other command:



          espeak "Hello. How are you?"


          That happens because spd-say is just using espeak voices as output. And well, Firefox does the same, it uses whatever voice is configured in speech-dispatcher as output to read web pages in the reader view mode (Ctrl+Alt+R).



          So, what we need to do here is to change the voice that comes as output in the spd-say command and, once we do that, Firefox is going to use a different TTS voice as default as well. I'm going to describe the process of making it work with the festival voice, but I believe the procedure is the same if you want to run a different TTS voice. First, we need to install festival:



          sudo apt-get install festival


          We can test its voice in the command line by typing:



          echo "Hello. How are you?" | festival --tts


          Now we need to change the file speechd.conf. So we type sudo vi /etc/speech-dispatcher/speechd.conf on the terminal and around the line 205 we'll see the following piece of commented configurations:



          #AddModule "espeak"       "sd_espeak"   "espeak.conf"
          AddModule "festival" "sd_festival" "festival.conf"
          #AddModule "flite" "sd_flite" "flite.conf"
          #AddModule "ivona" "sd_ivona" "ivona.conf"
          #AddModule "pico" "sd_pico" "pico.conf"
          #AddModule "espeak-generic" "sd_generic" "espeak-generic.conf"
          #AddModule "espeak-mbrola-generic" "sd_generic" "espeak-mbrola-generic.conf"
          #AddModule "swift-generic" "sd_generic" "swift-generic.conf"
          #AddModule "epos-generic" "sd_generic" "epos-generic.conf"
          #AddModule "dtk-generic" "sd_generic" "dtk-generic.conf"
          #AddModule "pico-generic" "sd_generic" "pico-generic.conf"
          #AddModule "ibmtts" "sd_ibmtts" "ibmtts.conf"
          #AddModule "cicero" "sd_cicero" "cicero.conf"

          # DO NOT REMOVE the following line unless you have
          # a specific reason -- this is the fallback output module
          # that is only used when no other modules are in use
          #AddModule "dummy" "sd_dummy" ""

          # The output module testing doesn't actually connect to anything. It
          # outputs the requested commands to standard output and reads
          # responses from stdandard input. This way, Speech Dispatcher's
          # communication with output modules can be tested easily.

          # AddModule "testing"

          # The DefaultModule selects which output module is the default. You
          # must use one of the names of the modules loaded with AddModule.

          #DefaultModule espeak
          DefaultModule festival


          It's necessary to make two changes here:




          1. Uncomment the line AddModule "festival" "sd_festival" "festival.conf"

          2. Add the line DefaultModule festival


          We need to run festival as a server in order to make speech-dispatcher use it as default. We can do that by adding the following line at the end of the file that's open when we use the command crontab -e:



          @reboot /usr/bin/festival --server


          Now it's done!! After rebooting the system Firefox and spd-say will be using the festival voice as output.





          Additional Information



          I believe that the procedure to make new voices work in Firefox will be always the same:




          1. Uncomment the module of the new TTS voice that we installed (/etc/speech-dispatcher/speechd.conf).


          2. Set a new default line for the TTS voice that we want (/etc/speech-dispatcher/speechd.conf).


          3. Run a server on the port specified on the files inside the folder /etc/speech-dispatcher/modules/.



          What called my attention on that is that there's a module for the Ivona voices there. Ivona is a proprietary product and today the only way to use it (as far as I know) is as a pay-as-you-go service on AWS, but its voices are really good and they sound very natural.



          The file /etc/speech-dispatcher/modules/ivona.conf is configured to listen to a server on the port 9123. I think perhaps there's a way to run a local server that gets the Ivona voices using my AWS APIs ( I'm not sure, but perhaps using a part of this Node.js app that's already developed) ... And if that's possible, it means that it's also possible to run Ivona on Ubuntu as the default voice of the system and consequently use it with the reader view mode on Firefox . Although I don't know how to do it now, it looks like an interesting possibility.






          share|improve this answer

































            5





            +50









            The voices used by the narrate function of the firefox reader mode depend on the platform you run it on. On Linux, firefox will use speech-dispatcher to render text to artificial speech.



            So whatever you have configured in your speech-dispatcher settings (/etc/speech-dispatcher/speechd.conf) should be picked up and used by firefox. There are various engines and voices available for speech-dispatcher, some of which can be installed via Ubuntu packages, e. g. speech-dispatcher-espeak-ng or speech-dispatcher-festival.



            There is limited support for selecting voices/languages from within the firefox reader GUI, but most settings have to be made on the OS side, which is speechd.conf on linux.



            Some settings are available via the about:config dialog if you search for "narrate":



            enter image description here



            I experimented quite a bit with different settings in both, about:config and speechd.conf, but could not get anything to work but the default that comes with Ubuntu. The feeling I get is that the interface between firefox and speech-dispatcher is not very stable, but maybe you are more lucky experimenting.



            This guy: https://bbs.archlinux.org/viewtopic.php?id=217411 seems to have had more success on Archlinux configuring things to use festival as output. I tried to reproduce this on Ubuntu 18.04 but could never get firefox to run with it.






            share|improve this answer























              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "89"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f953509%2fhow-can-i-change-the-voice-used-by-firefox-reader-view-narrator-in-ubuntu%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              7














              I managed to use the festival voice as default on Firefox.



              enter image description here



              In order to do that, we need to change some configurations on the file /etc/speech-dispatcher/speechd.conf. But first, I need to explain the basic idea of how it works. We can always see what voice is the default one used by speech-dispatcher using the command spd-say:



              spd-say "Hello. How are you?"


              In Ubuntu, the default Texto To Speech (TTS) voice that comes with speech-dispatcher is espeak. So we hear exactly the same voice when we use this other command:



              espeak "Hello. How are you?"


              That happens because spd-say is just using espeak voices as output. And well, Firefox does the same, it uses whatever voice is configured in speech-dispatcher as output to read web pages in the reader view mode (Ctrl+Alt+R).



              So, what we need to do here is to change the voice that comes as output in the spd-say command and, once we do that, Firefox is going to use a different TTS voice as default as well. I'm going to describe the process of making it work with the festival voice, but I believe the procedure is the same if you want to run a different TTS voice. First, we need to install festival:



              sudo apt-get install festival


              We can test its voice in the command line by typing:



              echo "Hello. How are you?" | festival --tts


              Now we need to change the file speechd.conf. So we type sudo vi /etc/speech-dispatcher/speechd.conf on the terminal and around the line 205 we'll see the following piece of commented configurations:



              #AddModule "espeak"       "sd_espeak"   "espeak.conf"
              AddModule "festival" "sd_festival" "festival.conf"
              #AddModule "flite" "sd_flite" "flite.conf"
              #AddModule "ivona" "sd_ivona" "ivona.conf"
              #AddModule "pico" "sd_pico" "pico.conf"
              #AddModule "espeak-generic" "sd_generic" "espeak-generic.conf"
              #AddModule "espeak-mbrola-generic" "sd_generic" "espeak-mbrola-generic.conf"
              #AddModule "swift-generic" "sd_generic" "swift-generic.conf"
              #AddModule "epos-generic" "sd_generic" "epos-generic.conf"
              #AddModule "dtk-generic" "sd_generic" "dtk-generic.conf"
              #AddModule "pico-generic" "sd_generic" "pico-generic.conf"
              #AddModule "ibmtts" "sd_ibmtts" "ibmtts.conf"
              #AddModule "cicero" "sd_cicero" "cicero.conf"

              # DO NOT REMOVE the following line unless you have
              # a specific reason -- this is the fallback output module
              # that is only used when no other modules are in use
              #AddModule "dummy" "sd_dummy" ""

              # The output module testing doesn't actually connect to anything. It
              # outputs the requested commands to standard output and reads
              # responses from stdandard input. This way, Speech Dispatcher's
              # communication with output modules can be tested easily.

              # AddModule "testing"

              # The DefaultModule selects which output module is the default. You
              # must use one of the names of the modules loaded with AddModule.

              #DefaultModule espeak
              DefaultModule festival


              It's necessary to make two changes here:




              1. Uncomment the line AddModule "festival" "sd_festival" "festival.conf"

              2. Add the line DefaultModule festival


              We need to run festival as a server in order to make speech-dispatcher use it as default. We can do that by adding the following line at the end of the file that's open when we use the command crontab -e:



              @reboot /usr/bin/festival --server


              Now it's done!! After rebooting the system Firefox and spd-say will be using the festival voice as output.





              Additional Information



              I believe that the procedure to make new voices work in Firefox will be always the same:




              1. Uncomment the module of the new TTS voice that we installed (/etc/speech-dispatcher/speechd.conf).


              2. Set a new default line for the TTS voice that we want (/etc/speech-dispatcher/speechd.conf).


              3. Run a server on the port specified on the files inside the folder /etc/speech-dispatcher/modules/.



              What called my attention on that is that there's a module for the Ivona voices there. Ivona is a proprietary product and today the only way to use it (as far as I know) is as a pay-as-you-go service on AWS, but its voices are really good and they sound very natural.



              The file /etc/speech-dispatcher/modules/ivona.conf is configured to listen to a server on the port 9123. I think perhaps there's a way to run a local server that gets the Ivona voices using my AWS APIs ( I'm not sure, but perhaps using a part of this Node.js app that's already developed) ... And if that's possible, it means that it's also possible to run Ivona on Ubuntu as the default voice of the system and consequently use it with the reader view mode on Firefox . Although I don't know how to do it now, it looks like an interesting possibility.






              share|improve this answer






























                7














                I managed to use the festival voice as default on Firefox.



                enter image description here



                In order to do that, we need to change some configurations on the file /etc/speech-dispatcher/speechd.conf. But first, I need to explain the basic idea of how it works. We can always see what voice is the default one used by speech-dispatcher using the command spd-say:



                spd-say "Hello. How are you?"


                In Ubuntu, the default Texto To Speech (TTS) voice that comes with speech-dispatcher is espeak. So we hear exactly the same voice when we use this other command:



                espeak "Hello. How are you?"


                That happens because spd-say is just using espeak voices as output. And well, Firefox does the same, it uses whatever voice is configured in speech-dispatcher as output to read web pages in the reader view mode (Ctrl+Alt+R).



                So, what we need to do here is to change the voice that comes as output in the spd-say command and, once we do that, Firefox is going to use a different TTS voice as default as well. I'm going to describe the process of making it work with the festival voice, but I believe the procedure is the same if you want to run a different TTS voice. First, we need to install festival:



                sudo apt-get install festival


                We can test its voice in the command line by typing:



                echo "Hello. How are you?" | festival --tts


                Now we need to change the file speechd.conf. So we type sudo vi /etc/speech-dispatcher/speechd.conf on the terminal and around the line 205 we'll see the following piece of commented configurations:



                #AddModule "espeak"       "sd_espeak"   "espeak.conf"
                AddModule "festival" "sd_festival" "festival.conf"
                #AddModule "flite" "sd_flite" "flite.conf"
                #AddModule "ivona" "sd_ivona" "ivona.conf"
                #AddModule "pico" "sd_pico" "pico.conf"
                #AddModule "espeak-generic" "sd_generic" "espeak-generic.conf"
                #AddModule "espeak-mbrola-generic" "sd_generic" "espeak-mbrola-generic.conf"
                #AddModule "swift-generic" "sd_generic" "swift-generic.conf"
                #AddModule "epos-generic" "sd_generic" "epos-generic.conf"
                #AddModule "dtk-generic" "sd_generic" "dtk-generic.conf"
                #AddModule "pico-generic" "sd_generic" "pico-generic.conf"
                #AddModule "ibmtts" "sd_ibmtts" "ibmtts.conf"
                #AddModule "cicero" "sd_cicero" "cicero.conf"

                # DO NOT REMOVE the following line unless you have
                # a specific reason -- this is the fallback output module
                # that is only used when no other modules are in use
                #AddModule "dummy" "sd_dummy" ""

                # The output module testing doesn't actually connect to anything. It
                # outputs the requested commands to standard output and reads
                # responses from stdandard input. This way, Speech Dispatcher's
                # communication with output modules can be tested easily.

                # AddModule "testing"

                # The DefaultModule selects which output module is the default. You
                # must use one of the names of the modules loaded with AddModule.

                #DefaultModule espeak
                DefaultModule festival


                It's necessary to make two changes here:




                1. Uncomment the line AddModule "festival" "sd_festival" "festival.conf"

                2. Add the line DefaultModule festival


                We need to run festival as a server in order to make speech-dispatcher use it as default. We can do that by adding the following line at the end of the file that's open when we use the command crontab -e:



                @reboot /usr/bin/festival --server


                Now it's done!! After rebooting the system Firefox and spd-say will be using the festival voice as output.





                Additional Information



                I believe that the procedure to make new voices work in Firefox will be always the same:




                1. Uncomment the module of the new TTS voice that we installed (/etc/speech-dispatcher/speechd.conf).


                2. Set a new default line for the TTS voice that we want (/etc/speech-dispatcher/speechd.conf).


                3. Run a server on the port specified on the files inside the folder /etc/speech-dispatcher/modules/.



                What called my attention on that is that there's a module for the Ivona voices there. Ivona is a proprietary product and today the only way to use it (as far as I know) is as a pay-as-you-go service on AWS, but its voices are really good and they sound very natural.



                The file /etc/speech-dispatcher/modules/ivona.conf is configured to listen to a server on the port 9123. I think perhaps there's a way to run a local server that gets the Ivona voices using my AWS APIs ( I'm not sure, but perhaps using a part of this Node.js app that's already developed) ... And if that's possible, it means that it's also possible to run Ivona on Ubuntu as the default voice of the system and consequently use it with the reader view mode on Firefox . Although I don't know how to do it now, it looks like an interesting possibility.






                share|improve this answer




























                  7












                  7








                  7







                  I managed to use the festival voice as default on Firefox.



                  enter image description here



                  In order to do that, we need to change some configurations on the file /etc/speech-dispatcher/speechd.conf. But first, I need to explain the basic idea of how it works. We can always see what voice is the default one used by speech-dispatcher using the command spd-say:



                  spd-say "Hello. How are you?"


                  In Ubuntu, the default Texto To Speech (TTS) voice that comes with speech-dispatcher is espeak. So we hear exactly the same voice when we use this other command:



                  espeak "Hello. How are you?"


                  That happens because spd-say is just using espeak voices as output. And well, Firefox does the same, it uses whatever voice is configured in speech-dispatcher as output to read web pages in the reader view mode (Ctrl+Alt+R).



                  So, what we need to do here is to change the voice that comes as output in the spd-say command and, once we do that, Firefox is going to use a different TTS voice as default as well. I'm going to describe the process of making it work with the festival voice, but I believe the procedure is the same if you want to run a different TTS voice. First, we need to install festival:



                  sudo apt-get install festival


                  We can test its voice in the command line by typing:



                  echo "Hello. How are you?" | festival --tts


                  Now we need to change the file speechd.conf. So we type sudo vi /etc/speech-dispatcher/speechd.conf on the terminal and around the line 205 we'll see the following piece of commented configurations:



                  #AddModule "espeak"       "sd_espeak"   "espeak.conf"
                  AddModule "festival" "sd_festival" "festival.conf"
                  #AddModule "flite" "sd_flite" "flite.conf"
                  #AddModule "ivona" "sd_ivona" "ivona.conf"
                  #AddModule "pico" "sd_pico" "pico.conf"
                  #AddModule "espeak-generic" "sd_generic" "espeak-generic.conf"
                  #AddModule "espeak-mbrola-generic" "sd_generic" "espeak-mbrola-generic.conf"
                  #AddModule "swift-generic" "sd_generic" "swift-generic.conf"
                  #AddModule "epos-generic" "sd_generic" "epos-generic.conf"
                  #AddModule "dtk-generic" "sd_generic" "dtk-generic.conf"
                  #AddModule "pico-generic" "sd_generic" "pico-generic.conf"
                  #AddModule "ibmtts" "sd_ibmtts" "ibmtts.conf"
                  #AddModule "cicero" "sd_cicero" "cicero.conf"

                  # DO NOT REMOVE the following line unless you have
                  # a specific reason -- this is the fallback output module
                  # that is only used when no other modules are in use
                  #AddModule "dummy" "sd_dummy" ""

                  # The output module testing doesn't actually connect to anything. It
                  # outputs the requested commands to standard output and reads
                  # responses from stdandard input. This way, Speech Dispatcher's
                  # communication with output modules can be tested easily.

                  # AddModule "testing"

                  # The DefaultModule selects which output module is the default. You
                  # must use one of the names of the modules loaded with AddModule.

                  #DefaultModule espeak
                  DefaultModule festival


                  It's necessary to make two changes here:




                  1. Uncomment the line AddModule "festival" "sd_festival" "festival.conf"

                  2. Add the line DefaultModule festival


                  We need to run festival as a server in order to make speech-dispatcher use it as default. We can do that by adding the following line at the end of the file that's open when we use the command crontab -e:



                  @reboot /usr/bin/festival --server


                  Now it's done!! After rebooting the system Firefox and spd-say will be using the festival voice as output.





                  Additional Information



                  I believe that the procedure to make new voices work in Firefox will be always the same:




                  1. Uncomment the module of the new TTS voice that we installed (/etc/speech-dispatcher/speechd.conf).


                  2. Set a new default line for the TTS voice that we want (/etc/speech-dispatcher/speechd.conf).


                  3. Run a server on the port specified on the files inside the folder /etc/speech-dispatcher/modules/.



                  What called my attention on that is that there's a module for the Ivona voices there. Ivona is a proprietary product and today the only way to use it (as far as I know) is as a pay-as-you-go service on AWS, but its voices are really good and they sound very natural.



                  The file /etc/speech-dispatcher/modules/ivona.conf is configured to listen to a server on the port 9123. I think perhaps there's a way to run a local server that gets the Ivona voices using my AWS APIs ( I'm not sure, but perhaps using a part of this Node.js app that's already developed) ... And if that's possible, it means that it's also possible to run Ivona on Ubuntu as the default voice of the system and consequently use it with the reader view mode on Firefox . Although I don't know how to do it now, it looks like an interesting possibility.






                  share|improve this answer















                  I managed to use the festival voice as default on Firefox.



                  enter image description here



                  In order to do that, we need to change some configurations on the file /etc/speech-dispatcher/speechd.conf. But first, I need to explain the basic idea of how it works. We can always see what voice is the default one used by speech-dispatcher using the command spd-say:



                  spd-say "Hello. How are you?"


                  In Ubuntu, the default Texto To Speech (TTS) voice that comes with speech-dispatcher is espeak. So we hear exactly the same voice when we use this other command:



                  espeak "Hello. How are you?"


                  That happens because spd-say is just using espeak voices as output. And well, Firefox does the same, it uses whatever voice is configured in speech-dispatcher as output to read web pages in the reader view mode (Ctrl+Alt+R).



                  So, what we need to do here is to change the voice that comes as output in the spd-say command and, once we do that, Firefox is going to use a different TTS voice as default as well. I'm going to describe the process of making it work with the festival voice, but I believe the procedure is the same if you want to run a different TTS voice. First, we need to install festival:



                  sudo apt-get install festival


                  We can test its voice in the command line by typing:



                  echo "Hello. How are you?" | festival --tts


                  Now we need to change the file speechd.conf. So we type sudo vi /etc/speech-dispatcher/speechd.conf on the terminal and around the line 205 we'll see the following piece of commented configurations:



                  #AddModule "espeak"       "sd_espeak"   "espeak.conf"
                  AddModule "festival" "sd_festival" "festival.conf"
                  #AddModule "flite" "sd_flite" "flite.conf"
                  #AddModule "ivona" "sd_ivona" "ivona.conf"
                  #AddModule "pico" "sd_pico" "pico.conf"
                  #AddModule "espeak-generic" "sd_generic" "espeak-generic.conf"
                  #AddModule "espeak-mbrola-generic" "sd_generic" "espeak-mbrola-generic.conf"
                  #AddModule "swift-generic" "sd_generic" "swift-generic.conf"
                  #AddModule "epos-generic" "sd_generic" "epos-generic.conf"
                  #AddModule "dtk-generic" "sd_generic" "dtk-generic.conf"
                  #AddModule "pico-generic" "sd_generic" "pico-generic.conf"
                  #AddModule "ibmtts" "sd_ibmtts" "ibmtts.conf"
                  #AddModule "cicero" "sd_cicero" "cicero.conf"

                  # DO NOT REMOVE the following line unless you have
                  # a specific reason -- this is the fallback output module
                  # that is only used when no other modules are in use
                  #AddModule "dummy" "sd_dummy" ""

                  # The output module testing doesn't actually connect to anything. It
                  # outputs the requested commands to standard output and reads
                  # responses from stdandard input. This way, Speech Dispatcher's
                  # communication with output modules can be tested easily.

                  # AddModule "testing"

                  # The DefaultModule selects which output module is the default. You
                  # must use one of the names of the modules loaded with AddModule.

                  #DefaultModule espeak
                  DefaultModule festival


                  It's necessary to make two changes here:




                  1. Uncomment the line AddModule "festival" "sd_festival" "festival.conf"

                  2. Add the line DefaultModule festival


                  We need to run festival as a server in order to make speech-dispatcher use it as default. We can do that by adding the following line at the end of the file that's open when we use the command crontab -e:



                  @reboot /usr/bin/festival --server


                  Now it's done!! After rebooting the system Firefox and spd-say will be using the festival voice as output.





                  Additional Information



                  I believe that the procedure to make new voices work in Firefox will be always the same:




                  1. Uncomment the module of the new TTS voice that we installed (/etc/speech-dispatcher/speechd.conf).


                  2. Set a new default line for the TTS voice that we want (/etc/speech-dispatcher/speechd.conf).


                  3. Run a server on the port specified on the files inside the folder /etc/speech-dispatcher/modules/.



                  What called my attention on that is that there's a module for the Ivona voices there. Ivona is a proprietary product and today the only way to use it (as far as I know) is as a pay-as-you-go service on AWS, but its voices are really good and they sound very natural.



                  The file /etc/speech-dispatcher/modules/ivona.conf is configured to listen to a server on the port 9123. I think perhaps there's a way to run a local server that gets the Ivona voices using my AWS APIs ( I'm not sure, but perhaps using a part of this Node.js app that's already developed) ... And if that's possible, it means that it's also possible to run Ivona on Ubuntu as the default voice of the system and consequently use it with the reader view mode on Firefox . Although I don't know how to do it now, it looks like an interesting possibility.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Jan 28 at 3:15

























                  answered May 31 '18 at 0:19









                  Rafael MuynarskRafael Muynarsk

                  522519




                  522519

























                      5





                      +50









                      The voices used by the narrate function of the firefox reader mode depend on the platform you run it on. On Linux, firefox will use speech-dispatcher to render text to artificial speech.



                      So whatever you have configured in your speech-dispatcher settings (/etc/speech-dispatcher/speechd.conf) should be picked up and used by firefox. There are various engines and voices available for speech-dispatcher, some of which can be installed via Ubuntu packages, e. g. speech-dispatcher-espeak-ng or speech-dispatcher-festival.



                      There is limited support for selecting voices/languages from within the firefox reader GUI, but most settings have to be made on the OS side, which is speechd.conf on linux.



                      Some settings are available via the about:config dialog if you search for "narrate":



                      enter image description here



                      I experimented quite a bit with different settings in both, about:config and speechd.conf, but could not get anything to work but the default that comes with Ubuntu. The feeling I get is that the interface between firefox and speech-dispatcher is not very stable, but maybe you are more lucky experimenting.



                      This guy: https://bbs.archlinux.org/viewtopic.php?id=217411 seems to have had more success on Archlinux configuring things to use festival as output. I tried to reproduce this on Ubuntu 18.04 but could never get firefox to run with it.






                      share|improve this answer




























                        5





                        +50









                        The voices used by the narrate function of the firefox reader mode depend on the platform you run it on. On Linux, firefox will use speech-dispatcher to render text to artificial speech.



                        So whatever you have configured in your speech-dispatcher settings (/etc/speech-dispatcher/speechd.conf) should be picked up and used by firefox. There are various engines and voices available for speech-dispatcher, some of which can be installed via Ubuntu packages, e. g. speech-dispatcher-espeak-ng or speech-dispatcher-festival.



                        There is limited support for selecting voices/languages from within the firefox reader GUI, but most settings have to be made on the OS side, which is speechd.conf on linux.



                        Some settings are available via the about:config dialog if you search for "narrate":



                        enter image description here



                        I experimented quite a bit with different settings in both, about:config and speechd.conf, but could not get anything to work but the default that comes with Ubuntu. The feeling I get is that the interface between firefox and speech-dispatcher is not very stable, but maybe you are more lucky experimenting.



                        This guy: https://bbs.archlinux.org/viewtopic.php?id=217411 seems to have had more success on Archlinux configuring things to use festival as output. I tried to reproduce this on Ubuntu 18.04 but could never get firefox to run with it.






                        share|improve this answer


























                          5





                          +50







                          5





                          +50



                          5




                          +50





                          The voices used by the narrate function of the firefox reader mode depend on the platform you run it on. On Linux, firefox will use speech-dispatcher to render text to artificial speech.



                          So whatever you have configured in your speech-dispatcher settings (/etc/speech-dispatcher/speechd.conf) should be picked up and used by firefox. There are various engines and voices available for speech-dispatcher, some of which can be installed via Ubuntu packages, e. g. speech-dispatcher-espeak-ng or speech-dispatcher-festival.



                          There is limited support for selecting voices/languages from within the firefox reader GUI, but most settings have to be made on the OS side, which is speechd.conf on linux.



                          Some settings are available via the about:config dialog if you search for "narrate":



                          enter image description here



                          I experimented quite a bit with different settings in both, about:config and speechd.conf, but could not get anything to work but the default that comes with Ubuntu. The feeling I get is that the interface between firefox and speech-dispatcher is not very stable, but maybe you are more lucky experimenting.



                          This guy: https://bbs.archlinux.org/viewtopic.php?id=217411 seems to have had more success on Archlinux configuring things to use festival as output. I tried to reproduce this on Ubuntu 18.04 but could never get firefox to run with it.






                          share|improve this answer













                          The voices used by the narrate function of the firefox reader mode depend on the platform you run it on. On Linux, firefox will use speech-dispatcher to render text to artificial speech.



                          So whatever you have configured in your speech-dispatcher settings (/etc/speech-dispatcher/speechd.conf) should be picked up and used by firefox. There are various engines and voices available for speech-dispatcher, some of which can be installed via Ubuntu packages, e. g. speech-dispatcher-espeak-ng or speech-dispatcher-festival.



                          There is limited support for selecting voices/languages from within the firefox reader GUI, but most settings have to be made on the OS side, which is speechd.conf on linux.



                          Some settings are available via the about:config dialog if you search for "narrate":



                          enter image description here



                          I experimented quite a bit with different settings in both, about:config and speechd.conf, but could not get anything to work but the default that comes with Ubuntu. The feeling I get is that the interface between firefox and speech-dispatcher is not very stable, but maybe you are more lucky experimenting.



                          This guy: https://bbs.archlinux.org/viewtopic.php?id=217411 seems to have had more success on Archlinux configuring things to use festival as output. I tried to reproduce this on Ubuntu 18.04 but could never get firefox to run with it.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered May 30 '18 at 6:00









                          Sebastian StarkSebastian Stark

                          4,848938




                          4,848938






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Ask Ubuntu!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f953509%2fhow-can-i-change-the-voice-used-by-firefox-reader-view-narrator-in-ubuntu%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

                              Mangá

                               ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕