I just started working with the java SDK for IBM's Watson TTS. From a Spring app I can save .ogg and .wav files which play fine in Firefox and Audacity. I can also play both files accessed from my website running on Firefox. However neither one will play in Chrome. I don't think it's Chrome itself because it will play .ogg files from other sources, both online and from a file. Interestingly, the Watson demo also doesn't work in Chrome: https://text-to-speech-demo.mybluemix.net/. Has anyone else run into this problem? I'm using the latest version of the java SDK, 3.3.0.
Update
It appears it's a config issue of some sort. I tried the test .ogg file on my laptop and it worked fine, as did the TTS demo (should have done this earlier). My PC and laptop are running the exact same version of Chrome, both on Win10, and the settings look to be identical. I noticed that the sample that does work on my PC was a stereo file so I used Audacity to convert my test file to stereo and it worked! Huh??? So, I'm stuck trying to figure out what's going on - is it a Chrome setting (unlikely) or a driver issue with my speakers? They are an old set of RealTek speakers that I've never had any issues with. Any thoughts?
Sorry to waste anyone's time looking at this question. I played around with the speaker settings - it was set to 5.1 surround with 5 speakers and a subwoofer. I only have 2 speakers and a subwoofer so I took out the other 3 speakers and the test file now works in Chrome as does the Watson TTS demo. Weird, though, that the speaker settings didn't affect Firefox. That's 5 wasted hours of frustration I'm never going to get back...
Related
I want to play a video in frame using Java code in LUbuntu.
Till now I have used JMF and VLCJ framework for playing a video, it works absolutely fine on windows but not on Linux (It gives me FATAL error if I use VLCJ even for the same code which runs on windows and JMF doesn't get install on linux-ubuntu).
I have used 32 bit Linux and 1.8 JDK. Is there compatibility issue with Linux drivers and JMF drivers ?
But now I am trying to run via any script that will enable me playing a video on a frame not on browser.
It will be great if you give me proper guidance.
Thank you.
vlcj currently will not work on 32-bit Ubuntu, at least not without some nasty workarounds.
In fact, this will fail even if you do not use vlcj, if you write the code yourself without using vlcj you are guaranteed to see the same failure.
The issue is caused by some combination of Java, VLC, LUA and 32-bit Ubuntu.
Probably the simplest workaround is to delete the VLC LUA scripts, but that will disable some functionality (such as YouTube).
There is a lot of background information here, way too much to reproduce in this answer:
https://github.com/caprica/vlcj/issues/62
We have an application running on Motorola FX7500 RFID reader. Everything works fine except auto-start. Looks like start_appname.sh is executed but application doesn't even start. Is there any way to debug application startup? Or to find fail reason in log files?
Thank you!
The autostart function is not working on firmware version 1.2.9
You should update to firmware version 1.2.10 (this is not yet available on the www.motorolasolutions.com website)
You should be able to get the new firmware from the Motorola helpdesk.
Hope this helps you.
1.2.10 is available on request to Moto helpdesk. It will not be postet, the fix will be incorporated into next official image release.
I'am working with Motorola RFID FX7400 and works for me.
Install your application on \\Application.
Use Active Sync Remote Display to view the screen of the reader.
On your computer copy and paste into notepad and save has *.reg
[HKEY_CURRENT_USER\Software\Symbol\StartUp\Programs\Prog19]
"Name"="\\Application\\MyFolder\\MyApp.exe"
"Command"=""
"Continue"=dword:1
"ColdBootOnly"=dword:0
Put the file on the reader \Application and run it.
I'am from Mexico, sorry for my english.
I recently created a Java program to stream MP3 audio using a servletOutputStream to the browser. I tested it on Firefox, chrome & IE, and it worked fine until I updated Firefox to the newest version (15.0.1). At first I thought this was because this new version of FireFox included the new version of Flash but I checked Chrome and IE and they were both using the latest version of Flash as well. Does anyone know why the newest version of Firefox would cause audio streaming to stop working? No error is thrown, it just wont play. Thanks for any help in advance!
We're having the samt issue with a music player that used to both load and play mp3-files flawlessly until upgrading the Flash player from 11.2.x to 11.4.x.
This currently only affects Firefox since both IE and Google Chrome still seems to be using previous versions of the Flash player (11.3.x and 11.2.x respectively).
We're loading the music using two simple lines of code
var player:Sound = new Sound();
player.loadSound(filepath, true);
I can see that file gets loaded on the progressbar but it just won't start playing.
This of course does not help you solve your problem, but hopefully the additional info is importance to anyone else who is more of an Flash expert.
our requirement is to implement USB file transfer from PC to android phone. I have search for 10 days and used JUSb and jan libraries but nothing worked right for me. so i am just confused that should i implement this or quite to implement. does anybody have any idea on this how i can proceed further. i konw there is default USB mass storage is available where we are doing the same thing but here my manager requires his own implementation. this can be possible but it requires lots of research and mainly TIME which we dont have much more. i need to take seriouse decision today itself to move further or not.
As of my testing in 2012 with 4.0.3, USB file transfer to and from Android device works only under Windows 7 but not on XP and not on Ubuntu. This is because Android does not longer act as mass storage device; it uses MTP protocol instead and the support for this protocol is now required.
Windows 7 has not exactly native support but can download and install driver through Windows update.
While Ubuntu (10.04 LTS) seems providing some MTP-named packages, they seem not finished till the end in my version. Even with command line tools, I was only able to get a list of files from device but seems very slow and unstable. Big shame ...
Update: as of 2013, something was probably changed in Windows XP update servers as that machine unexpectedly found and downloaded the MTP driver - so now can be used to access the phone.
I was wondering if anyone can help, I'm using the WiiRemoteJ Java library for connecting to a Wiimote (Wii Remote). I have the supplied WRLIpml test application up and running but I'm having some problems with the sound being sent to the wiimotes speaker.
I'm using the sample sound file provided with the library, but instead of playing a recognizable tune when it's supposed to play, the Wiimote is playing a very quiet ticking noise.
I can see that the sound file supplied is being found correctly because when I run it through the debugger, it works fine.
I'm using the built in Mac OSX Bluetooth Stack and Bluecove.
Just wondering if anyone has any ideas?