Is there a VI which reads audio signals off optical SPDIF port?

Hi,
I am trying to capture audio signals from a DAT unit on to the computer's hard drive. Could you please tell me how can I read these signals off an optical SPDIF port using Labview and save the streamed data as a wav file? I am using an audio capturing interface called the Edirol UA-5 to transfer the audio signals from the DAT unit to the Mac's hard drive.
Thanks,
Bhuvana

Hi Bhuvana,
There are not any VIs in LabVIEW designed specifically for SPDIF.  There is, however, a tutorial on reading an SPDIF signal using LabVIEW FPGA.  You may also be interested in this thread which discusses the use of a digital data acquisition board and the rate needed to read an SPDIF signal. 
Jennifer R.
National Instruments
Applications Engineer

Similar Messages

  • Is there a low level battery audio signal iphone 6 plus

    Is there a low level battery audio signal iphone 6 plus

    No there's not. You could always check in the app store.

  • Is there a way to force audio out through the Thunderbolt port?

    I am trying to connect a 15" MacBook Pro to an InFocus 3916 using a Mini DisplayPort to HDMI adapter.
    I know that the computer, adapters, and cables I am using support audio over HDMI.
         I have tested 4 separate adapters, 2 cables, and 2 computers, all of them work when hooked up to a Samsung HD TV.
    I know the Projector supports audio over HDMI, because I plugged a Apple TV into the projector using the same cable, and it worked fine.
    When I am using the Samsung HD TV: System Preferences->Sound->Output shows "Samsung" in the choices of outputs.
    When I try using any of the three Infocus Projectors, it only shows the internal audio.
    I have tried resetting the PRAM, and SMC. I have tried plugging in an audio cable to my computer to force a refresh of the Sound Preference Pane... I have tried turning on and off the projector.
    At this point I am trying to find a way to force Mac OS X to recognize the Projector as an audio output... Or at least to force the computer to think there is something there, so that it will push sound out the thunderbolt port.
    MBP Hardware Configuration:
    15" MacBook Pro, Late 2011
    2.2 GHz Intel Core i7
    AMD Radeon HD 6750M 512 MB
    OS X Lion 10.7.2
    Latest updates except Apple Remote Desktop 3.5.1

    mjs1138 wrote:
    endasil, Thanks for the reply. I'm currenlty running the program from within the NetBeans IDE. It is the output displayed by in NetBeans "output" that I'm looking at.
    --- MikeI don't use Netbeans, but I would guess that it too pipes Standard Out and Standard Error to the same console. You didn't address my comment. Are you printing to System.err as well? This happens implicitly if you use Exception.printStackTrace(), for example.

  • Is there a way to CAPTURE audio/video off the net then run it m.m. prsntn

    I'm fairly new to the mac genre. In windows we had apps like Camtasia to
    capture audio/video off the net. I was hoping something like that would
    be avail for the mac and then once capture it how would I edit it and
    include it in a presentation software; for example, keynote?
    Is there added hardware req'd (?Capture board)? what would be a good software mac
    compatible?

    I'd like to capture audio and video for example sometimes just need to capture the
    audio if some instruction is coming say over a quicktime or media player for my work.
    Then sometimes I need to capture the audio and video when they ware actually showing me
    charts and explaining them things like that.
    is snap Z the way to go then for quality and fair pricing to get good results.
    Do we have any resident applications already on the ilife variety that could be utilized for
    something like this or is the only way to go through a 3rd party vendor?

  • KN9 Platinum - is audio output via both SPDIF ports possible??

    I am looking at this board because it has both an optical and coaxial SPDIF output - can you tell me whether these can be plugged into and used simultaneously for HD Audio output. ie I want to be able to output a single digital audio stream from an application like PowerDVD via both connections.
    Note this is not about multi streams from different applications - just a single stream via both SPDIF ports.
    For an HTPC setup I want to be able to take the optical SPDIF output to a surround sound receiver and the coaxial SPDIF output into an HDMI enabled graphics card which includes audio input so I can then take both video/audio to another monitor.
    Thanks for your help.
    Ben

    Yes, audio will do this video won't.

  • "Example on reading combined signals from a serial port and separating them for display purposes". I am a beginner in Labview and would appreciate if anyone help with that

    I am working on a wireless vital sign monitor. I have 3 signals; heart rate and temperature. I filter and amplify the signals before converting them into digital form. I then pass them via MAX232 before passing them to RS232 serial cable.
    I am therefore working on a program to receive the combined signal and separate them.
    I have come across serial read and write examples on ni.com but am looking for one where I can actually separate combined signals and display them separately.

    Reading the serial port will give you a string. How you divide the channels depends on how the data was formatted before it was sent over the serial channel.
    If you are designing the instrument, as it seems from your query, then you can set up any form you wish. If your data is always floating point numeric, you could use space or tab characters to separate data words. You could use and XML format. If the instrument is provided by a vendor, contact them for the protocol.
    If tabs are used between words and returns between sets of readings, the resutlant string can be interpretted by the Spreadsheet String to Array function in LV.
    Things to avoid are characters often used by serial communications systems as control characters. Carraige returns are
    often used as command terminators by serial protocols, but may also be used by the port.
    Lynn

  • Error 50103 occurs. Reading three signals off PCI 6259 card

    Error 53103 occurs in my program. Am reading off three inputs from the NI PCI 6529 card, AI3 to AI5 using the DAQ assistant. Any help please?
    Attachments:
    Untitled.vi ‏520 KB

    You're trying to do two AI tasks on the same device at the same time. You can't do that, because the device has only one AI timing system (among other reasons). Try combining the two tasks into a single task, or chaining the error out of one task into the error in of the second task.
    Joe

  • No digital audio signal over SPDIF auido out (MacBook Pro, Snow Leopard)

    There is no audio signal over optical cable.
    I have a standard toslink cable with a toslink mini-plug adapter for my macbook pro 15 2009 unibody.
    The interesting thing is when I boot in Windows side it works fine, I hear sound and I see Dolby Digital or LPCM logo on my receiver, but when I reboot to Mac side then is gone.
    Any ideas?

    Have you opened up the MIDI audio setup program and checked the configuration there?

  • How to read the J2EE server hostname and port programmatically

    Is there any API to read the J2EE server host and port programmatically? I am looking for the hostname where the components are deployed so that I can append the wsdl path to the server and create an URL.

    Hi Larry,
    there is a standard J2EE Servlet API  for your case.
    In a servlet or jsp file you can get the host and prot from the request object.
    For example in a JSP file :
    request.getScheme();
      request.getServerName()
        request.getServerPort()
    You can check the whole API here :
    http://java.sun.com/products/servlet/2.2/javadoc/javax/servlet/ServletRequest.html#getServerName()
    Bets Regards
    Bojidar

  • Does the built-in DAC on my 2007 mid yr iMac support 96/24 audio as it supplies signal to the headphone jack? (is there a reason to export audio via optical jack then to an external DAC?

    does the built-in DAC on my 2007 mid yr iMac support 96/24 audio as it supplies signal to the headphone jack?  If so, is there a reason to export audio via optical jack then to an external DAC then to stereo?

    My suggestion to work around this problem would be to hook up an Airport Express. The AE also has an optical out the same as your iMac. As long as your wireless connection is robust enough you should be able to stream from your iMac to your AE and then have the optical cable connect between your AE and your DAC, which then connects to your Integrated Amp/Receiver/Pre-Amp (depending on your system configuration).
    I assume because you are using the optical out and connecting to an external DAC that you are looking for a high level of Audio quality ?

  • No sound on optical audio input but audio signal is there; mid-2007 iMac running OS 10.6.8

    I've connected a digital turntable to my iMac via Toslink RCA/optical and I know the cables and converter are working. In the Sound preferences I can see evidence of an audio signal being received but there is no sound. This setup used to work before I had my hard drive replaced.

    Erase the drive then install OS X:
    Drive Partition and Format
    1. Boot from your OS X Installer Disc. After the installer loads select your language and click on the Continue button.  When the menu bar appears select Disk Utility from the Utilities menu.
    If you are preparing an external or a non-startup drive, then open Disk Utility in your Utilities folder.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Apply button and wait until the process has completed.
    4. Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    5. Set the format type to Mac OS Extended (Journaled.) Click on the Security button, check the button for Zero Data and click on OK to return to the Erase window.
    6. Click on the Erase button. The format process can take up to several hours depending upon the drive size.
    If this doesn't work then the drive is probably bad or some of the new RAM you installed is marginally defective.

  • I am having trouble sending an audio signal from my computer (mac pro early 2009) to my TV.  Is there some interface or adapter that allows /enables the audio input from my computer to be sent to the TV (R,L signal?) any suggestions

    I am having trouble sending an audio signal from my computer (mac pro early 2009) to my TV.  Is there some interface or adapter that allows /enables the audio input from my computer to be sent to the TV (R,L signal?) any suggestions

    just  the audio, eh?. If you were using DVI or DisplayPort that might be different, but for audio alone, it shouldn't be that hard.  Just grab a 3.5 mm stereo plug to 2 rca cables adapter. Plug the smaller end into the back of your Mac Pro (or the Front), where you see either the headphone or speaker icon). Alt-click on the speaker icon at the top of your screen to show all audio inputs and outputs. Make sure it's set to Line Out.  Plug the red and white end into the audio in jacks on the back of your tv and set it to the correct input. I don't know if your tv will allow just the audio to play. Usually one has to connect up something else, but hopefully I'm wrong.  If you were using DVI, or DisplayPort, you'd need an active DVI--HDMI adapter or a DisplayPort to HDMI adapter, but
    I don't know for sure
    J  B  

  • RE: [Adobe Reader] when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? i

    HelloThank's for your helpsI hope this document is helpfulBest Regards,
    Date: Sun, 22 Jun 2014 17:10:17 -0700
    From: [email protected]
    To: [email protected]
    Subject:  when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help me th
        when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help m
        created by Anoop9178 in Adobe Reader - View the full discussion
    Hi,
    Would it be possible for you to share the document?
    Regards,
    Anoop
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6485431#6485431
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
         To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Reader by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

    thank's for reply and your help
    i did the step's that you told me but  i still have the same problem
                                     i have the latest v.11.0.7
    i
    i disable the protected mode

  • When i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help me th

    when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ?
    if you can help me thank's
    [email address removed by host]

    thank's for reply and your help
    i did the step's that you told me but  i still have the same problem
                                     i have the latest v.11.0.7
    i
    i disable the protected mode

  • My MBA 13" Late 2010 displayport to TV has stopped working, is there a way to troubleshoot the port? Have tried several different ways of trying, but TV still reads "No Signal"?

    My MBA 13" Late 2010 displayport to TV has stopped working, is there a way to troubleshoot the port? Have tried several different ways of trying, but TV still reads "No Signal" while the TV changes resolution as if it were sharing it's screen?

    Hi garyducati,
    If you are having issues with the video out on your MacBook Air, you may find the following article helpful:
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/kb/ht1573
    Regards,
    - Brenden

Maybe you are looking for

  • Is it possible to call OAF Page from ADF Page

    Hi, Is it possible to open E-Business suite OAF page from ADF ?? Our requirement as follows: In ADF page have the Order Number as hyper-link, if user click on hyper-link we have to pass Order_Id and open OAF page of Order Management in E-Business Sui

  • I have a Mac and you tell me to check under the menu to update my adobe flash, but I can't find menu. Where is that? thank you

    Hello, I'm trying to see my plug-ins and it tells me to go to the Menu, then choose add-ons, and then click the plug-in tab which I would do, but having a Mac and checking up topside I don't have anything of that as a choice. What can I do? thank you

  • App Store is just a blank page

    I open the iTunes store, the music store loads fine, so do all the other stores except the app store -- I get a blank screen.  No error code, no pop up, just a blank space where the App Store should be.  If I look up an app in my Firefox browser, I c

  • Register system to SLD with fully qualified name

    Anybody know how to register the host name for an abap system to the SLD so it uses the fully qualified DNS name?   According to the help files in the SLD, it say's:   "By default, host names in SLD are written lower case without any network domain"

  • When Is Apple Going to Fix Compressor!!!!!!!!!!!!!

    I have had nothing but trouble trying to use compressore from quality issues to the dreaded can not find background process error. If finally got it to work for the fourth time after three hours waisted. WHEN IS APPLE GOING TO DO SOMETHING AND QUIT I