Software :: Make Festival TTS Use Better Voices - SIOD ERROR: Could Not Open File /usr/lib/festival/siod.scm?
Jun 24, 2011
SIOD ERROR: could not open file /usr/lib/festival/siod.scm I install festival, speech_tools, festvox (everything i need it) but i don't know what to do in this case.
View 1 Replies
ADVERTISEMENT
May 17, 2010
when I change the .festivalrc file to have (voice.select 'nitech_us_slt_arctic_hts) it seems ignored.I also tried (set! voice_default 'nitech_us_slt_arctic_hts), but that gives errors.
View 3 Replies
View Related
Aug 23, 2010
I am working on a robot project and the robot uses a custom light version of Linux (it has the Freescale Dragonball CPU in the bot so it doesn't have much "room"). We are using flite to do text-to-speech. I would like to know if there is a way to create a vocoder voice for this? Is there already a vocoder voice that works with flite or festival? Or is there some kind of voice creator that can be used to create voices for flite/festival?
View 4 Replies
View Related
Jan 24, 2010
How I send clipboard to festival or what is wrong here? #!/bin/bash
text='xclip -selection clipboard -o'
echo '(voice_nitech_us_awb_arctic_hts) (SayText "$text")' | festival
Says only "dollar text" to me. Just this works, but I want other script with different voice: #!/bin/bash
xclip -selection clipboard -o | festival --tts Voice changed here: echo '(voice_nitech_us_awb_arctic_hts) (SayText "say this please")' | festival
View 3 Replies
View Related
Mar 13, 2010
How can I record text to speech output from festival to an audio file like mp3 or ogg?
My guess would be to pipe it to a command line recorder
View 1 Replies
View Related
Feb 27, 2011
Has anyone come across a means to output rss feeds to audio? A Google search led me on a "wild goose chase". I was looking for a newsbeuter or snownews plugin of sorts. Either realtime output to speakers or piped to speex/ogg/mp3 I *really* need to learn how to code, so I can do these things myself
View 3 Replies
View Related
Oct 21, 2010
I am attempting to write a program using Festival as the TTS output. It is a weather system, so
1) takes raw data from sensors on the input.
2) converts it into a text message
3) let festival take the message and turn it into audio that I can then route out to the telephone system.
Here is my main block of code using festival:
[Code]...
I imagine some of my problem is being a C/C++ newbie, but is there anybody out there able to give me some hints? Maybe there is a different or better way to fork that process. My plan is to keep updating the buffer whose pointer is passed to the function process() with my serial port processing program in the main loop. I can protect it with a mutex during the festival_say_text() function, but otherwise it will be accessible.
View 1 Replies
View Related
Aug 10, 2010
Debian testing: $ uname -a Linux jilldando 2.6.32-trunk-486 #1 Sun Jan 10 05:53:18 UTC 2010 i686 GNU/Linux Today I upgraded my PC with a Radeon HD 5550 video card, it has HDMI o/p with sound on it. After boot up I get get the usual sounds from the mother boards onboard intel sound card EXCEPT speech. Initially I thought it would just be that alsa might be piping synth usuage to the Radeon card so I edited the alsa-base.conf file. So I added the following to /etc/modprobe.d/alsa-base.conf alias snd-card-4 snd_hda_intel
and changed: options snd_hda_intel index=0 to: options snd_hda_intel index=0,4 and rebooted, but this made no difference. Still startup sounds and sounds etc but no speech. I used the alsa project to check and these are the results: Code:
[Code]....
View 1 Replies
View Related
Jan 8, 2010
I want to run "festival" (voice synthesis) without an X server running - from the command line of a console or from a "cron" job. I've been searching the web for a while and still can't understand why access to the sound card requires an X server. I can run a command-line sound program from inside an X session just fine, but from a console I get "XOpenDisplay() failed" or "Cannot connect". What do I need to do?
View 2 Replies
View Related
Jun 10, 2010
I'm currently stuck at 6.13 GMP-5.0.0 of the LFS installation. After running make, I receive the following:
error while loading shared libraries: libbfd-2.20.so: cannot open shared object file: No such file or directory
make[2]: *** [libmpn.la] Error 127
make[2]: Leaving directory `/sources/gmp-5.0.0/mpn'
[code]....
View 5 Replies
View Related
Nov 17, 2010
When I try to compile some Java code on Ubuntu 10.10 (kernel 2.6+) using make and a Makefile.
I get an error indicating that the make utility cannot execute the java compile command (javac).
The error reads: /bin/bash: line 6: .: /usr/local/jdk1.5.0_18/bin/javac: cannot execute binary file
I am executing make as root. I have enabled permissions on all directories in the path /usr/local/jdk1.5.0_18/bin/javac and on javac itself.
I get this error whether using a jdk installed via ubuntu apt-get, or whether I install the jdk myself. And I get it using either Java 1.5 or 1.6
My machine has an 80386 processor. I notice the make utility is built for i686-pc-linux-gnu
However, I can manually compile using javac.
I can compile calling javac from within a bash script.
I can compile using the java compiler gcj from the command line: gcj --main=HelloWorld HelloWorld.java -o HelloWorld.exe
But I cannot compile java code from the makefile. Any reasons why I might be getting this error?
View 4 Replies
View Related
Jun 25, 2010
After finally getting libptp2 to compile I find that ptpcam does not work. This has worked perfectly fine before with the same camera using Slackware 12.0, I am now using Slackware 13.1 and ptpcam will simply not work. The error is as follows:
Code:
x86_1# ptpcam -l
Listing devices...
bus/dev vendorID/prodID device model
ERROR: Could not open session!
Try to reset the camera.
I have tried to reset with "ptpcam -r", I have also tried to disconnect and reconnect the camera to the USB system, I have tried to reboot the computer, I have tried to use different versions of libptp2 -- all to no avail. The strace shows the issue is apparently a failed ioctl(), although I have no idea why it fails:
Code:
open("/dev/bus/usb/002/004", O_RDWR) = 6
write(4, "1"..., 1) = 1
read(3, "1"..., 1) = 1
[code]....
I have verified that the camera is working in Windows 7 on the same physical computer and I can see the camera from lsusb and dmesg output when I connect it to the USB system. This system is Slackware 13.1, Linux x86_1 2.6.33.4-smp #2 SMP Wed May 12 22:47:36 CDT 2010 i686 Intel(R) Core(TM) i7 CPU 920 @ 2.67GHz GenuineIntel GNU/Linux.
View 1 Replies
View Related
May 22, 2011
I get an error when running slapt-get. The error is: "slapt-get: error while loading shared libraries: libsas.so.2: cannot open shared object file: No such file or directory".
I've booted the Slackware disk # 1 and unchecked everything except the libraries category and installed them. I rebooted and it still says this. I get this same error before I put the disk in and rebooted to install ALL libraries. I really need help. BTW, I can't load KDE.I found a pkg manager already installed called "slackpkg". But I really need help on this library issue!! I uninstalled it (slapt-get) anyway, so forget that!
View 3 Replies
View Related
Mar 4, 2010
i have a problem with realplayer 11 i can't open it due to that error message
Code:
/opt/real/RealPlayer/realplay.bin: error while loading shared libraries: libgdk-x11-2.0.so.0: cannot open shared object file: No such file or directory so how can reveal this problem
View 4 Replies
View Related
Sep 14, 2009
error message when I ran my program that I couldn't open my local file. I have two files first one is called client, second one is called server I am using named pipes to sent a message from client to the other file called server in client I used mknod() to create the two named pipes,one for read,one for write and created new thread in client using fork() spawned a child process that executed the server file both named pipes are opened the client file got the message from the user and sent it through the named pipes to the server file when the server receives the message , it needs to verfify it is correct in the server file, a local file descriptor is created to read and send this verifing message when it is not correct but I am getting an OPEN() error when I tried to open this shared local array buff and attach it to a file descriptor where the message is kept why do I get this error in server file
int main()
{
/*both named pipes are open*/
rfd=open(IFIO1,0);
wfd=open(IFIO2,1);
[code]....
View 1 Replies
View Related
Jul 8, 2011
Okay so I have a file that I always save and close properly and get in my Ubuntu One folder for backup that will not open. Its called "Income.ods" and is quite important and I cannot seem to recover it. When I double click it, it shows the Libre Office Calc splash screen shows up then goes away and the nothing, no error messages, no nothing. I tried to open it on my Windows Vista machine and it said it was corrupted and could not open in Office Word. I tried a few recovery tools but to no avail.
View 9 Replies
View Related
Nov 3, 2010
I know this is possible in GUI gnome. But is it possible to do it too in shell command? Let say if i type this in shell:
#file.txt
then it will open gnome-editor in nautilus which open file.txt. gnome is the desktop manager. nautilus is the explorer windows in gnome. gnome-editor is one like notepad in MS windows.
View 1 Replies
View Related
Jan 6, 2010
my squid show like this when i try create swap directory
[Code]....
View 2 Replies
View Related
Nov 12, 2010
Salutations,I've been struggling with getting audacious working for the past hour. I'm using synaptic to install it. When trying to run it from the bash, I'm getting the following error:
Code:
audacious: error while loading shared libraries: libmowgli.so.1: cannot open shared object file: No such file or directory.I tried to make /usr/lib/libmowgli.so->libmowgli.so.1 link, but it didn't help. Tried reinstalling audacious/libmowgli and a few others packages, but in vain, too.
View 2 Replies
View Related
May 6, 2010
I'm just starting with OpenProj and wonder if anyone has any tips to speed my progress.
I've netsearched for introductions, tutorials, HOWTOs etc. and found very little.
Importantly I'd like to change the default font used on the display, to make the characters larger and bolder; the default is a strain to read.
Less importantly is there any way to make OpenProj use the desktop file open/save dialogs, rather than its own?
View 1 Replies
View Related
Feb 17, 2010
I am running Ubuntu remix on my Asus Aspire Netbook. When watching movies on Video player and VLC I get good loud sound on music in the movie but I can barely hear anything when people talk ... background music and sounds are way louder than voices. I know these files work because I watched them before when I still had Windows XP on my netbook.
View 3 Replies
View Related
May 14, 2010
I upgrade the system from 11.1 to 11.2 seems everything work fine, no error no warning, after a reboot the consol show : mount error while loading shared libraries: libvolume_id.so.1: Cannot open shared object file: No such file or directory. when I try to repair the system the repair tool cannot find the root partion,
View 1 Replies
View Related
Mar 2, 2010
Error "cannot open shared object file: No such file or directory" using updatetool on Glassfish 3 (Squeeze 64 bit)
[Code]....
View 5 Replies
View Related
Dec 19, 2010
You may know the Humble Indie Pack 2, which is a set of crossplatform indie video games. There's one game in the bundle that doesn't offer a 64bit build and therefore it fails to load. It's called Braid and that's what you get when you try to run it: $ ./braid ./braid: error while loading shared libraries: libGL.so.1: cannot open shared object file: No such file or directory
Of course the 64bit libs for OpenGL and the propitiatory nvidia drivers are installed, but the game asks for the 32bit ones, at least to my understanding. I do know that why can install 32bit libraries on a 64 bit linux system (we do that for the sake of crappy Adobe Flash), but I don't know where to find these libs (searching the repo with keywords like .i586 or ia32 led me nowhere).
View 2 Replies
View Related
Jan 15, 2010
how to install libxcb-xlib.so.0?When I start one software and it complains that
"error while loading shared libraries: libxcb-xlib.so.0: cannot open shared object file: No such file or directory"
I have lastest libxcb1 installed and searched in my system but didnot find a relevant result.
View 3 Replies
View Related
May 2, 2010
I bought a new SD card which I intend to put some MP3s on - except that I can't write to it because it tells me the destination is Read Only. No-probs thinks I: I'll just reformat it.
"Error creating file system: helper exited with exit code 1: cannot open /dev/mmcblk0p1: Read-only file system"
Various chmod commands all result in Read-only file system. I tried umount then mount commands, but it couldn't find it to mount once I'd unmounted it using the same /media/ file path (I assume it's the only one).
View 9 Replies
View Related
May 9, 2011
Attempt to upgrade 10.10 to 11.04 server installation (more or less plain vanilla) gives:
[Code]...
Tried reinstalling the obvious packages related to this, no change. Aptitude updates to 10.10 function without problems.
View 2 Replies
View Related
Jan 17, 2010
I installed the latest Gimp beta and it worked fine but then I couldn't open it. I removed it and I reinstalled but it didn't work, so I installed the latest stable version (no beta) and it still does not work, when I open it form Terminal, this is the response:gimp: error while loading shared libraries: libbabl-0.0.so.0: cannot open shared object file: No such file or directory
View 3 Replies
View Related
Oct 25, 2010
When I use my ubuntu computer to watch some movies that are encoded into 5.1 sound I can't hear the voices of the people in the movie. I guess that is because the voices are put on the front speaker and I have connected the computer to an stereo-amplifier.
I mainly use XBMC and have noticed the problem there but I have also tried VLC and noticed the same problem there. In xbmc I checked the box "Downmix multichannel audio to stereo" but it doesn't work.
I use a standard ubuntu 10.04 64-bit install that was upgraded from a 9.10 install.
View 2 Replies
View Related
Aug 13, 2011
When I first installed VMWare Workstation and Player everything ran great. I guess after a system restart things started to get buggy. When trying to load my virtual machine I get the following error:
Could not open /dev/vmmon: No such file or directory.make sure that the kernel module `vmmon' is loaded.Failed to initialize monitor device. Unable to change virtual machine power state: Cannot find a valid peer process to connect to I have tried running as root, through terminal, and reinstalling. The window still shows up eventually.
View 2 Replies
View Related