Encoding live audio

I'm new to Tiger, but have two Panthers, all networked. I want to download audio from analog to my hard drive. My old mac 9 did this transparently, creating AIFF files, but I can't figue out how to do it in OSX 10.3.9 or 4. I've tried iMovie, which works, but out paces my hard drive so I can only get about a minute or so per track. Any suggestions? I don't want to buy Quick Time Pro, unless that's my only option.
MacBook, iMac350, Power PC g4 Dual   Mac OS X (10.3.9)   and 10.4, latest update

GarageBand.

Similar Messages

  • How to encode live audio to a-law?

    Hi all,
    I would like to know how to configure the processor to encode live audio to a-law datasource. I got something like this when I tried to start processor:
    Failed to build a graph for the given custom options.
    Failed to realize: com.sun.media.ProcessEngine@765a16
    Cannot build a flow graph with the customized options:
    Unable to transcode format: LINEAR, 44100.0 Hz, 16-bit, Stereo, LittleEndian
    , Signed
    to: alaw, 8000.0 Hz, 8-bit, Mono
    outputting to: RAW
    Error: Unable to realize com.sun.media.ProcessEngine@765a16
    Thanks.

    I think the format has to be one of those included in the getSupportedFormats().
    For example if you have a single track processor,
    Format[] formats = processor.getTrackControls()[0].getSupportedFormats()
    This should be callled on a confured processor. it returns an array of supported encoding/transcoding or output format for this configured processor. setting any of these should be successfull.
    Once format is set, the processor can be realized and started
    In your case I guess you have to find the format in the array that best matchs your a-law format then use this format from the array to set to the processor. (dont worry, their will be a few a-law formats)
    I think that in your case, transcoding 16-bit to 8-bit was the problem.
    Also, capturing at lower than 44100.0hz when transcoding to alaw 8000 could be considered, I mean capturing at 8000.0hz could work too

  • Encoder live audio in stereo

    Hi sorry for my english,im try to create a radio online, but
    don't find what is the best option to transmit single audio in
    stereo, Im try with Flash media Encoder but the audio encoder
    configuration its more limited and I believe that encoder only in
    Mono.
    It is possible to encoder audio in stereo with FME ?
    What is the best option to encoder live audio for a Web Radio
    Online with FMS ?
    Thanks in advance.

    And how increase the sampling rate and/or the bitrate of the
    audio codec?
    Sampling at 22050 and a bitrate ceiling of 32kbps are both
    quite limiting. Is there any chance of at least increasing the
    bitrate to something like 128kbps or more?
    Thanks in advance.

  • Flash Media Encoder Live Problem

    FME locks up good !  FME freezes . FME Stops sending streaming audio .
    // I hope this is posted in the correct forum.
    I'm using Adobe Flash Media Encoder Live 3.0.1.5963 .
    Windows XP Pro SP 3
    Pentium 4 3.06 ghz 'dual core' cpu
    1.5 GB rambus 800 mhz
    MP3
    44,100
    192kbps
    stereo
    When streaming audio, FME locks up good and stops sending audio, usually after 8 minutes.
    I have to force down my machine with the reset button.
    I even tried with no video. Same problem.

    Update:
    The same problem exists in Flash Media Encoder version
    1.0.1.460.

  • Steps to Publish Live Audio for HTTP Streaming

    I wanted to confirm some steps in order to stream Live Audio from FMS to a mobile device using HTTP Streaming and HTML 5 audio/video tags.  I have a system setup like below:
    Lets say my application which recieves the live audio is called CLASSROOM.
    Lets say my application instance is called "TEST"
    So I have application code like:
    In "onAppStart()"
    this.broadcast_live_stream = Stream.get("f4f:livestream");
    this.broadcast_live_stream.liveEvent = "TEST";
    this.broadcast_live_stream.record("record");
    To play the incoming audio:
    application.broadcast_live_stream.play(streamName); // name of the stream sending audio to the server
    Thus, I have a folder:
    Flash Media Server 4.5\applications\CLASSROOM\streams\TEST\livestream
    which contains a bootstrap, control, meta, f4f, and f4x files.
    Since I specified the Event name as "TEST", I also created the folder:
    Flash Media Server 4.5\applications\livepkgr\events\_definst_\TEST
    Which contains event.xml:
    <Event>
    <EventID>TEST</EventID>
    - <Recording>
    <FragmentDuration>4000</FragmentDuration>
    <SegmentDuration>400000</SegmentDuration>
    <DiskManagementDuration>3</DiskManagementDuration>
    </Recording>
    </Event>
    and manifest.xml:
    <manifest xmlns="http://ns.adobe.com/f4m/1.0">
    <media streamId="livestream" bitrate="100" />
    </manifest>
    Should I then be able to create a video tag and hear the live audio:
    <video id='slide1' controls='controls'><source src='http://fms-dns/hls-live/livepkgr/_definst_/Test/livestream.m3u8'></video>
    I am not sure what other steps are needed, or a good way to test.  I don't understand how the Live Media Encoder would be needed in this situation.

    So I implemented the above change, using code from the livepkgr.
    My custom application is called Unity3, and the instance is Test, and I am trying to  publish to an event called "Test".
    I now have:
    applications\Unity3\streams\Test\livestream
    Which contains segment files, which update when I send audio in my application.
    I have:
    C:\Program Files\Adobe\Flash Media Server 4.5\applications\Unity3\events\Test\Test
    Which contains my event.xml (EventId Test), manifest.xml (StreamId livestream).  I also have a ".stream" file in this folder.  The contents of which are:
    <?xml version="1.0" encoding="UTF-8"?>
    <stream xmlns="http://ns.adobe.com/liveevent/1.0">
    <type>
    f4f
    </type>
    <name>
    livestream
    </name>
    <path>
    C:\Program Files\Adobe\Flash Media Server 4.5\applications\Unity3\streams\Test\livestream
    </path>
    </stream>
    So everything there seems to be good.  I try to use:
    <video id='live' controls='controls'><source src='http://[fms-dns]/hls-live/Unity3/Test/Test/livestream.m3u8'></video>
    or
    <audio id='live' controls='controls'><source src='http://[fms-dns]/hls-live/Unity3/Test/Test/livestream.m3u8'></audio>
    I don't hear audio, the controls don't seem to respond as though they recognize a source.  Are there certain browsers which can be confirmed work?  Any other mistakes stand out?
    Thanks.

  • How to merge multiple live audio streams into a single stream in FMS?

    I need to merge multiple live audio streams into a single stream so that i can pass this stream as input to VOIP through a softphone.
    For this i tried the following approach:
    Created a new stream (str1) on FMS onAppStart and recorded the live streams (sent throgh microphone) in that new stream.
    Below is the code :
    application.onAppStart = function()
    application.myStream=Stream.get("foo");           
    application.myStream.record();
    application.onPublish = function (client,stream)
          var streamName = stream.name;
          application.myStream.play(streamName,-2,-1};
    The problem is that the Stream.play plays only 1 live stream at a time.As soon as a the 2nd live stream is sent to FMS then Stream.play stops playing the previous live stream.So,only the latest live stream is getting recorded.Whereas i need to record all the live streams in the new stream simultaneously.
    Any pointers regarding this are welcome.
    Thanks

    well i tried this once for one of my scripts and the final conclusion is its not possible to combine two streams into 1.....how would you time/encode the two voices......there is no know solution to this in flash. If you continue on despite me and find a solution please post it so we can explain to rest of world.

  • LIVE audio stereo stream

    Hi there,
    I'm looking for a way to offer a LIVE audio stereo stream to
    the web client using Shockwave plug-in.
    I was "banging my head off forums and search engines" (as
    flashcomguru nice says) for some weeks
    to find a way to stream LIVE audio stereo to Flash Media
    Server but I couldn't find one viable direct
    solution for this platform.
    The client Flash Media Server app uses Microphone.get method
    to capture sound from soundboard
    which unfortunately is mono. it uses a speech Nellymoser
    codec, at which music sounds pretty OK at 44Khz.
    Possible solution: I can capture the LIVE line-in stereo
    sound using two soundcards and thus beeing able to
    create two sepparate mono audio streams one for left, one for
    right using the only available Microphone.get method.
    It will then maybe need some synchronization server scripts
    later.
    The trick is: In Director I use two .swf movies (action
    script controlled) to connect to server
    and play the streams but I couldn't find a way to direct the
    streams to a specific channel
    (one of the 8 available) from which point I can use the LINGO
    Sound Channel PAN property, like this:
    sound(1).pan = 100 for right
    sound(2).pan = -100 for left
    From all that I read I came to the conclusion that you can
    use the Sound Channel PAN property only to
    .swa imported and prerecorded audio cast members, not to the
    live audio stream which is played roughly
    in the main sound output channel to which I can't apply the
    Sound Channel PAN property.
    The key is to route those two streams left and right in
    Director.
    Any hints?
    Thanks for reading,
    My deepest respect,
    hOver

    The microphone code is very similar to what you have posted.  I can successfully use the enhanced microphone.  When it is enabled, the issue I am having is exhibited.
    A simple test I am using:
    Use ffmpeg to stream a stereo mp3 file to the media server.  I am using the following ffmpeg command line:
    ffmpeg -re -i ~/alone.mp3 -vn -acodec copy -ac 2 -f flv rtmp://myserver.com:1935/video/3Daudio/alone
    In this case the file is encoded at 44.1 kHz.
    The client uses a netstream to play with bufferTime = 0
    Without the microphone, the playback is as expected.  With a normal microphone, not the enhanced microphone, the playback is as expected but there is little to no echo cancellation.
    When the enhanced microphone is enabled, again using similar code to your post, the mp3 playback becomes severely distorted and is unacceptable.
    In my opinion, this is an issue with the AEC algorithms of the enhancedMicrophone and stereo playback of a 'live' stream.  If I modify the client playback code to bufferTime > 0, the mp3 playback is normal but there is no echo cancellation.
    Thanks,
    Sam

  • Won't Change Back to Regular Audio After Setting "Encoded Digital Audio"

    I have a first generation Mac Pro, and I've just recently upgraded to Lion. I used to play a fair bit of DVDs on the computer, but recently I've slacked off doing that. Today I popped in a DVD to play and then opened DVD Player up. Everything worked fine as it was supposed to. I've got the DVD player set to send digital audio out so I can get surround sound through my receiver. When I quit DVD player I don't get sound anymore through the optical out unless it's encoded digital audio. I've had that problem before, and to solve it I'd go to Audio Midi Setup and change the format to what it was prior to being set to "Encoded Digital Audio" by DVD Player. However, now with the upgrade to Lion it will not switch back. The option to do it is there, and I can click on 16, 20, or 24bit audio all day long and I won't get audio output from that port unless I restart the computer.
    This is obviously a system bug that needs to be reported to Apple if they aren't aware of it already, but what I'm wanting to know is how can I avoid restarting to get audio back? Restarting Core Audio doesn't do the trick as I've already tried that.

    From the iPod's Main Menu choose Videos -> Settings and make sure TV Out is set to Off.
    Otherwise, try a hard reset as well.  To do this, press and hold both the Select (Center) and Menu buttons together long enough for the Apple logo to appear.
    B-rock

  • Streaming live audio in a flash movie

    Hi, I'm working on a website for a local radio station, and I
    want to be able to stream a live audio feed of the radio station to
    a flash movie. Right now all I really know is that the URL to get
    this live feed is
    http://kpacradio.pacific.edu:8000
    - if you put that into Windows Media Player it will start the radio
    broadcast. Is it possible to play this through flash so that the
    user can just stream it from a website rather than having to
    introduce windows media player into it? Thanks a lot.
    David

    No. The Flashplayer can't connect to a windows media
    serverYou'd need to capture the stream and republish to FMS, or
    broadcast directly to FMS instead of WMS.

  • Can i make Live Audio/Video application between 2 users

    Hello,
    I am new to FLASH and FLEX.
    I want to know if i can make a Live Audio/Video application(
    using Microphone and Camera) for a website by using FMS. If yes
    then should i use FMSS or FMIS. I will be using FLEX Buidler IDE .
    Any one who has made this type of application or link to a
    tutorial.
    What i would like to make is like an application of Webcam
    with 2 users can see/view each other and also talk on web site. And
    alos how can i embed this application in java(EE) project.
    I would be very thankful if you people can guide me in this
    problem.
    Hopefully i have explained my probelm.
    Regards,
    Saad

    Yes you can make a Live A/V app with FMS! that is exactly
    what it was designed for. You would need FMIS as that is the
    interactive version that enables live capabilities.

  • Safari not playing live audio when tapping the play pause key in IO5

    Hi. I just upgraded Ipad 2 to IO5 and now when using Safari to play "listen live" audio from various websites the play/pause button only works one out of 15 taps; I have to tap the reload icon to get it to start and stop...any suggestions?  Thanks,  Steve

    Tap Settings > Safari
    Then tap Clear History then tap Clear Cookies and Data
    Then restart the iPad.
    Hold the On/Off Sleep/Wake button down until the red slider appears. Slide your finger across the slider to turn off iPhone. To turn iPhone back on, press and hold the On/Off Sleep/Wake button until the Apple logo appears.

  • Hi, planning to buy MD101, I will most be working on photoshop, playing live/audio production, occasionally render videos, mild gaming-prototype.gta4 types..my question is mac or windows? my budget stops at MD101 and no further :/

    Hi, planning to buy MD101, I will most be working on photoshop, playing live/audio production, occasionally render videos, mild gaming-prototype.gta4 types..my question is mac or windows? my budget stops at MD101 and no further :/

    Hey thanks for the reply
    its not like i must...but i do prefer apple for build quality and the way the os uses the hardware..
    Priority of the laptop will be:
    1- Going live with it, using softwares like ableton like or garageband to trigger samples and ambient patches with MIDI keyboard.
    2- Designing on photoshop
    3 - Occasional video rendering mostly non hd but good quality like youtube 720p
    4 - Gaming when i am bored - I am not at all into gaming but i would surely love to play some
    But i want something that will be durable/storngly built and its hardware/processor good enough to run for 3-4 years.
    Now if a laptop then which one?
    Thank you

  • No Signal Recording Live Audio w/ MBox

    Sorry if this is a tired subject here.
    I'm trying to record live audio via the MBox2. I've checked Logic preferences and changed devices to MBox. I've checked system preferences and changed input to MBox and output to built in audio. (1/8 inch headphones and no adapter for 1/4 inch). I've downloaded and re-downloaded every driver that digidesign has for standalone coreaudio (tiger).
    My problem:
    There is no signal coming to logic from the Mbox. There is a signal coming to the system. When I check system preferences>audio and play my guitar, it shows signal on the input. I have also successfully used the same MBox to record midi tracks. Am I missing a setting in Logic? Any solutions?
    Much Thanks

    Great...that is helpful. But, Logic is still not receiving any signal from the MBox. So, when I try and record without being able to hear it's not receiving any input and doesn't record anything. I've recorded live audio in GB via the same method but upgraded to Logic and am not able to do the same.
    This will be helpful to hear the instrument but it's still not able to record. Any ideas?
    Thanks

  • Problem with running example 'Generating Live Audio/Video Data'

    Hello,
    Concerning the example 'Generating Live Audio/Video Data', I'm having trouble with the run instructions.
    http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/LiveData.html
    How does JMFRegistry know about the location of jmfsample?
    How is 'live' resolved as a URL?
    2.Register the package prefix for the new data source using JMFRegistry
    - Run JMFRegistry
    - In the Protocol Prefix List section add "jmfsample" and hit Commit.
    4.Select File->Open URL and enter "live:"
    Much thanks,
    Ben

    I'm getting the following error message: "Could not create player for live"Implies you've either not registered the "live:" protocol prefix in the JMF Registry, or, it couldn't load the class you registered for it...or it might be erroring out inside the actual live protocol, I'm not sure what that would look like, but a System.err.println statement in the constructor of both of those classes might be a good idea.
    I added the output of javac (DataSource.class and LiveStream.class) to a directory on the classpath.
    C:\Program Files\JMF2.1.1e\lib\jmfsample\media\protocol\liveEh, that looks a little questionable to me. I'm not 100% sure that the JRE will automaticlly descend into the package subdirectories like that, looking for classfiles, for every folder on the path. I am, of course, fully open to the idea that it does and I just never thought about it...but I guess I just thought it only did that for JAR files, not CLASS files. Regardless, I'd recommend:
    1) Make sure you've registered the protocol prefix "live:" correctly in JMF Registry
    2) Try to run it with the 2 compiled class files in the same folder as your project
    3) Try to run it with the 2 compiled class files in the lib directory, if that's on the classpath
    4) Try to run it with the 2 compiled class files installed in the JRE as an extension (google for how to do this because I don't remember off the top of my head)
    5) Reinstall JMF and see if that helps

  • How to enable live audio streaming in FF running Windows 7

    I am unable to listen to live audio streams, please help !

    Which plugin is used for those streams?
    Your More system details list shows the WMP plugin and the Flash plugin as commonly used plugins to play streams.
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

Maybe you are looking for

  • HT204302 how can i gift an ipod touch app to a friend from windows xp?

    I do not own an ipod touch, but have used itunes for years with my 2gb 2nd gen. nano.  I would like to purchase an application on itunes called soundprism pro for a friend as a gift.  Is it possible to gift the app to my friend with my itunes account

  • CS5 Interactive PDF - disappearing graphics and buttons

    I have been struggling with CS5 - just about every interactive aspect of it anyway. I have an ebook that I just brought into CS5 from CS4. Each chapter in the book has interactive features such as buttons, anchored graphics, embedded video, html link

  • Iphone updating problems

    I am unable to update my iPhone OS. When I go to update it, I get a message "Unable to Verify Update b/c you are not longer connected to the internet". But I am connected to the internet, both from my home wifi network, or my phones network.  Hmmm. S

  • QTP Automation

    How to Click/Get child object in the Datagrid through Row number and Column Number.

  • FCP5 sees my 2TB drive as full when it is only half full. Why?

    Log and capture sees my 2tb external drive as only having 1.9gb of space yet, when I check "Get Info" it says there is 886+gb of space available. The drive is not partitioned. What might be the problem?