The logic using Soundflower audio recording system

Let's start with the agreement that I must be a fool.

I found tutorials on the net for logic audio recording using sound flower and it seems very simple.

I actually have to make what I want sometimes.

For the life of me I can't recreate my past successes.

I'm to the point of madness here.

I want to just record from Chrome, etc... any audio system, the logic.

Help, please

Drew

1 / set your output to the system on your Mac for soundflower.

(so now if you play a youtube video or a song on iTunes you won't hear anything - as it is realized in SF).

2. in line with defined preferences of-> audio-> entry to soundflower

and something other than control panel the value out of logic (built in output is fine)

3 / create an audio track and assign to its entrance at Gate 1

4 / record select the track or you can monitor the track entrance. You should now hear any audio playing on your system (from youtube or iTunes etc) (in fact guarded of logic)

Press R to save it.

Tags: Professional Applications

Similar Questions

  • To apply the logic using Last_Value

    First of all sorry about the description of poor in the subject.
    I must apply the logic to a working procedure, and I'm not entirely sure about how best to manage it. I don't have a solution of coding here, just in what way you guys could address the issue.

    I get about 1000 lines ETL every 10 minutes for a specific table, here's one for example

    TXN_SEQUENCE | LOT_ID | ACTIVITY | STEP | OUT_STEP
    623277664 |      K7231P | TrackOut | MEAS_MON_SRHO | MEAS_MON_SRHO
    * 623277665 |      K7231P | ModAttr: Stadium | MEAS_MON_SRHO |      *
    * 623277666 |      K7231P | MoveToLocation | MEAS_MON_SRHO |      *
    * 623277801 |      K7231P | MoveToLocation | MEAS_MON_XRF |      *
    * 623277802 |      K7231P | Memorize | MEAS_MON_XRF |      *
    * 623278799 |      K7231P | TrackOut | MEAS_MON_XRF | MEAS_MON_XRF *.
    623278800 |      K7231P | ModAttr: Stadium | MEAS_MON_XRF |
    623278801 |      K7231P | MoveToLocation | MEAS_MON_XRF |
    623279281 |      K7231P | MoveToLocation | DEP_METAL |
    623280453 |      K7231P | MoveToLocation | DEP_METAL |
    623356496 |     K7231P | TrackOut | DEP_METAL | DEP_METAL


    || is supposed to be a column delimiter in the case where these messages in a strange format.

    The logic is that the field step updates not fast enough. When a lot_id has a "TrackOut" an Out_Step is created. So, I read this that which is between 623277665 and 623278799 belongs to the MEAS_MON_XRF out_step (we read froom low up - sorted by Date).
    When it is not equal to step I want to change so that it matches OUT_STEP
    i.e. 623277665 should have a value of MEAS_MON_XRF No.

    I wrote the code to do this, use the LAST_VALUE function. My problem is when I get 2 "TrackOut" within the ETL. LAST_VALUE will only give me an incorrect value for some or all will be DEP_METAL.
    I'm bundling by Lot_ID as a typical etl will be for several different lot_ids lines throughout, this does not allow me the failure that I need.

    So I tried the CASE statements, create table tmp with a kind of counter, i.e. the number of TrackOuts for each Lot_ID, but I do not know how to handle those with more than one.

    I appreciate what can be as plain as if mud if you need please ask any clarification or if you feel my attempts at codification would help I'll also post them to the top.
    I'm curious to see how you guys would approach a problem like this and advice on how break you the logic would be appreciated I think I'm missing a little in this area at the minute.

    See you soon,.
    Gerard.

    If 'TrackOut' activities have always an outstep, then:

    with my_tab as (select 623277664 txn_sequence, 'K7231P' lot_id, 'TrackOut' activity, 'MEAS_MON_SRHO' step, 'MEAS_MON_SRHO' out_step from dual union all
                    select 623277665 txn_sequence, 'K7231P' lot_id, 'ModAttr : Stage' activity, 'MEAS_MON_SRHO' step, null out_step from dual union all
                    select 623277666 txn_sequence, 'K7231P' lot_id, 'MoveToLocation' activity, 'MEAS_MON_SRHO' step, 'FRED' out_step from dual union all
                    select 623277801 txn_sequence, 'K7231P' lot_id, 'MoveToLocation' activity, 'MEAS_MON_SRHO' step, null out_step from dual union all
                    select 623277802 txn_sequence, 'K7231P' lot_id, 'TrackIn' activity, 'MEAS_MON_SRHO' step, null out_step from dual union all
                    select 623278799 txn_sequence, 'K7231P' lot_id, 'TrackOut' activity, 'MEAS_MON_XRF' step, 'MEAS_MON_XRF' out_step from dual union all
                    select 623278800 txn_sequence, 'K7231P' lot_id, 'ModAttr : Stage' activity, 'MEAS_MON_XRF' step, null out_step from dual union all
                    select 623278801 txn_sequence, 'K7231P' lot_id, 'MoveToLocation' activity, 'MEAS_MON_XRF' step, null out_step from dual union all
                    select 623279281 txn_sequence, 'K7231P' lot_id, 'MoveToLocation' activity, 'DEP_METAL' step, null out_step from dual union all
                    select 623280453 txn_sequence, 'K7231P' lot_id, 'MoveToLocation' activity, 'DEP_METAL' step, null out_step from dual union all
                    select 623356496 txn_sequence, 'K7231P' lot_id, 'TrackOut' activity, 'DEP_METAL' step, 'DEP_METAL' out_step from dual)
    ---- end of mimicking your data; USE SQL below:
    select txn_sequence,
           lot_id,
           activity,
           step,
           out_step,
           last_value(out_step ignore nulls) over (partition by lot_id order by txn_sequence desc) new_step,
           last_value(decode(activity, 'TrackOut', out_step) ignore nulls) over (partition by lot_id order by txn_sequence desc) new_step2
    from   my_tab
    order by txn_sequence;
    
    TXN_SEQUENCE LOT_ID ACTIVITY        STEP          OUT_STEP      NEW_STEP      NEW_STEP2
    ------------ ------ --------------- ------------- ------------- ------------- -------------
       623277664 K7231P TrackOut        MEAS_MON_SRHO MEAS_MON_SRHO MEAS_MON_SRHO MEAS_MON_SRHO
       623277665 K7231P ModAttr : Stage MEAS_MON_SRHO               FRED          MEAS_MON_XRF
       623277666 K7231P MoveToLocation  MEAS_MON_SRHO FRED          FRED          MEAS_MON_XRF
       623277801 K7231P MoveToLocation  MEAS_MON_SRHO               MEAS_MON_XRF  MEAS_MON_XRF
       623277802 K7231P TrackIn         MEAS_MON_SRHO               MEAS_MON_XRF  MEAS_MON_XRF
       623278799 K7231P TrackOut        MEAS_MON_XRF  MEAS_MON_XRF  MEAS_MON_XRF  MEAS_MON_XRF
       623278800 K7231P ModAttr : Stage MEAS_MON_XRF                DEP_METAL     DEP_METAL
       623278801 K7231P MoveToLocation  MEAS_MON_XRF                DEP_METAL     DEP_METAL
       623279281 K7231P MoveToLocation  DEP_METAL                   DEP_METAL     DEP_METAL
       623280453 K7231P MoveToLocation  DEP_METAL                   DEP_METAL     DEP_METAL
       623356496 K7231P TrackOut        DEP_METAL     DEP_METAL     DEP_METAL     DEP_METAL    
    

    had to do it.

    If 'TrackOut' activities could have out_steps null, then change

    last_value(decode(activity, 'TrackOut', out_step) ignore nulls)
    

    TO

    last_value(decode(activity, 'TrackOut', nvl(out_step, step)) ignore nulls)
    

    (assuming that it is allowed to use step instead of the out_step in this situation)

    Published by: Boneist on June 24, 2009 11:49

  • Set up speech recognition for use with audio recorded

    Impression of voice recordings

    I have a tape recorder which can play the sound through my laptop.

    Windows speech recognition and I think therefore I can't paly the data recorded and typed in word, as if I had dictated.

    But how?

    I have a tape recorder which can play the sound through my laptop.

    Windows speech recognition and I think therefore I can't paly the data recorded and typed in word, as if I had dictated.

    But how?

    =================================================
    See the following article:

    Windows Vista - set up speech recognition
    http://Windows.Microsoft.com/en-us/Windows-Vista/set-up-speech-recognition

    Volunteer - MS - MVP - Digital Media Experience J - Notice_This is not tech support_I'm volunteer - Solutions that work for me may not work for you - * proceed at your own risk *.

  • A question about examples of Audio recording

    I tried to run the following examples of audio recording:

    https://bdsc.webapps.BlackBerry.com/HTML5/APIs/BlackBerry.media.microphone.html

    I saved the code in an "index.html" and created a simple config.xml to grant access to shared files.

    Successfully, I created the application and deployed on my playbook.

    When I click on the button 'save' on the application, it gives me the following JavaScript alert:

    Record, e: 'undefined' is not an object.

    I did a search and found no related topics.

    Also, I think this may have something to do with using google api.

    I've read about how to add features in the config.xml file, but I can't find a useful example to tell me how do you know where can I find the details of the elements of 'google' function or other places.

    Thank you!!

    Hi cuixu66,

    You need access from domains outside fetures executing javascript in these areas.

    For example, if you had the following piece of code to go with your

    
    

    This would mean 'someJS.js' can use the event and call APIs.

    Who is?

  • When the perforation in the logic does not record pre

    Using logic 10.2.4

    I have implemented punch and punch the locators.  I play with the track and making punch.  Logic doesn't store any roll before... .in other words if I try to expand the newly created region a little more early to catch a truck or something thing I got at the beginning, nothing is there.  I know logic is supposed to check in at the beginning just in case... there at - it a setting I'm missing? I tried the pre roll record and set at 6 seconds, but still nothing at start is saved before punch to the point.  Same thing in lieu or in creating records of decision-making.

    The count and record Pre Roll above are mutually exclusive. They do not define how at the beginning of the recording begins, but rather where the playhead is set before the start of the recording. If you have a 2 count together bar and position the playhead at 10 bar, and then tap Save. Logic moves the playhead at bar 8, start playback (if there is something to play) and begin to check in at 10 bar. If you select a period of prefetching in a few seconds, the playhead will jump back 6 seconds instead of bars. Neither defines the amount of pre-roll advertising in the in the recorded real audio.

    Auto Punch in is exactly that. When the recording start / stop. There is no registered pre-roll advertising. If you want the extra recording time before or after, then stretch the autopunch bar to make room for the start of start or end at the end.

    You can also use take folders that might be a suitable replacement and allowing campers of any part you want.

    Exception to this rule the there is one and will achieve exactly what you want - but it does not work with automatic punch. It is the punch on the fly...

    prerequisites - you must have "quick fist blow" activated.

    Press play and internally logical starts recording the moment where you press play, when you're ready to punch in, press R and you start recording, when finished, press stop. Logic recorded a region between the points where you started recording and click on stop. However, logic actually starts recording (under the hood) from the moment where you supported the play button, so if you look in the project tree, you can see the entire audio region with only set it collecting points as the region.

    It's only this case that allows you to develop the region in time to include a part any audio region that was "pre" set registration points. It is in fact will contain the entire audio file as soon as the room was pressed to stop, even with quick punch point defined further in the song.

    So say you have 10 bars - you start reading at the bar 1 and 5 bar you quick punch in bar 7 and you punch out. The defined region will show 5-7 bars, however if you develop the starting point of audio regions to the left - you will find that you have saved in fact all the way back to bar 1.

    Sorry, this feature is not available if the autopunch is the method of choice.

  • I am facing problem with playback of the audio recorded.

    Original title: sound recording problem

    Use built in mic, I recorded w/vocals/guitar,... and playback starts well, but after a few seconds the sound loses the basis... or low frequencies.

    It is uniform everytime I try. What I am doing wrong?

    Rich

    [Moved from comments]

    Hello

    What version of the Windows operating system is installed on your computer?

    If I understand correctly you are facing some problem with the audio recorded. There is no way to lose the sound after a few seconds; There seems to be a problem with the registration. I suggest you to run the game audio recording Fixit then try to register once more and check if it works.

    Automatically diagnose and fix problems of Windows audio recording:

    http://support.Microsoft.com/mats/AudioRecording/

    For more information, see the following link:

    http://Windows.Microsoft.com/en-us/Windows7/record-audio-with-sound-recorder

    Hope the information is useful.

  • Can I get the older version of sound recorder (like in XP) for my Vista operating system?

    Can I get the older version of sound recorder (like in XP) for my Vista operating system?

    OK... Thanks for the update.

    As much as I KNOW the XP version of sound recorder is not
    available for Vista.

    Vista Movie Maker 6 has an option of Narration
    that can be used to record audio... perhaps that he
    worth to try.

    Windows Vista - Movie Maker-
    Add narration to your movie
    http://Windows.Microsoft.com/en-us/Windows-Vista/add-narration-to-your-movie And the free Audacity software might be worth a try:

    Features of Audacity:
    http://Audacity.sourceforge.NET/about/features

    Audacity tutorials
    http://Audacity.sourceforge.net/manual-1.2/tutorials.html

    Good luck...

  • Windows media player does not automatically open a video file on a Web site but I save it and open the file with Windows media player to play the video or audio recording.

    Windows media player does not automatically open a video file on a Web site but I save it and open the file with Windows media player to play the video or audio recording. I used to be able to play any video or audio file in any site!

    Hello

    Try resetting the default associations for WMP and IE.

    How to set default Associations for a program under Vista
    http://www.Vistax64.com/tutorials/83196-default-programs-program-default-associations.html
    How to associate a file Type of Extension to a program under Vista
    http://www.Vistax64.com/tutorials/69758-default-programs.html

    If necessary:

    How Unassociate a Type of Extension file in Vista - and a utility to help
    http://www.Vistax64.com/tutorials/91920-unassociate-file-extention-type.html
    Restore the Type Associations by default Vista file extensions
    http://www.Vistax64.com/tutorials/233243-default-file-type-associations-restore.html
    How to view and change an Extension of filename on Vista
    http://www.Vistax64.com/tutorials/103171-file-name-extension.html

    ====================================

    Also follow these steps:

    Follow these steps to remove corruption and missing/damaged file system repair or replacement.

    Run DiskCleanup - start - all programs - Accessories - System Tools - Disk Cleanup

    Start - type in the search box - find command top - RIGHT CLICK – RUN AS ADMIN

    sfc/scannow

    How to analyze the log file entries that the Microsoft Windows Resource Checker (SFC.exe) program
    generates in Windows Vista cbs.log
    http://support.Microsoft.com/kb/928228

    Then, run checkdisk - schedule it to run at next boot, then apply OK your way out, then restart.

    How to run the check disk at startup in Vista
    http://www.Vistax64.com/tutorials/67612-check-disk-Chkdsk.html

    ------------------------------------------------------------

    Then, if necessary:

    Have you recently installed another player?

    Reset your associations for WMP and IE.

    How to set default Associations for a program under Vista
    http://www.Vistax64.com/tutorials/83196-default-programs-program-default-associations.html
    How to associate a file Type of Extension to a program under Vista
    http://www.Vistax64.com/tutorials/69758-default-programs.html

    ---------------------------------------------

    Do this to reregister the Jscript.dll and Vbscript.dll files.

    Start - type in the search box - find command top - RIGHT CLICK – RUN AS ADMIN

    type or copy and paste-> regsvr32 jscript.dll
    Press enter

    type or copy and paste-> regsvr32 vbscript.dll
    Press enter

    Restart and if all goes well, it will run now.

    --------------------------------------------------------------

    Have you recently added stores or ANY application from Stardock?

    Using 64-bit Vista?

    Can you think of recent things you did in WMP which could be the cause? You added another
    reader recently or an add-on for WMP?

    When I try to use Windows Media Player 11, the program does not start, or some UI elements
    are empty - a Mr Fixit
    http://support.Microsoft.com/kb/925704/en-us

    Maybe something here
    http://msmvps.com/blogs/chrisl/articles/17315.aspx
    and here
    http://msmvps.com/blogs/chrisl/Archive/2004/10/30/17399.aspx

    Check here the news of WMP11
    http://zachd.com/PSS/PSS.html

    I hope this helps.

    I hope this helps.

    Rob - bicycle - Mark Twain said it is good.

  • Since the update of my pc based system with 10 windows and install the last Prime Minister CC when I drag a clip on the timeline audio does not come with it. I can hear audio playback in the preview window of small file so the audio is there, but it's not

    Since the update of my pc based system with 10 windows and install the last Prime Minister CC when I drag a clip on the timeline audio does not come with it. I can hear audio playback in the preview window of small file so the audio is there, but it does not appear or play on the timeline. I can drag an audio file of Ms on the timeline, but I need audio from my original file to synchronize my audio file recorded independently - used to be no problem... any ideas what I can not edit now?

    Hi Neil,

    Drag / drop may not work if you don't have any enabl; e source patch or did not target the track for the same thing.

    https://helpx.Adobe.com/Premiere-Pro/using/source-patching-track-targetting.html

    Vinay

  • Audio record control never renders on the screen

    System:

    Windows 7

    Adobe captivate 5.5

    On a laptop

    Problem:

    At work, I have second dacking and monitor\ stations.  Plug my laptop into a docking station.

    Open captivate and slide deck, choose it Audio > Rrcord > zip

    Opens the control of audio - I want to save.  everything is fine.

    Eject from the docking station, tried to use portable Captived on any computer (no dock, no attached monitor)

    Select Audio > recording > zip

    No recording control window, the window in captivity is there but all the disabled buttons.  Press ESCAPE - caprivate window buttons to reactivate.

    Togle window to see if there was a hidden window - not good

    Resized screen - not good

    Made sure to disconnect it from the projector (fn + f7) - not good

    not rebooted - no good

    not rebooted - no good

    Tried the configs different montor - not good

    Are gone home, I tried my monitor at home with an another docking station

    does the same things as before - not good

    Nothing.

    Return to work - works fine.

    I can't do all the rocrding at work that my office is too noisey.

    Help?

    Hello

    I had similar problems after having cut a second monitor. Captivate seems to leave some dialog boxes on the second monitor which is no longer there. Before disconnecting (at College) of the second monitor I check if everything is once again on my main screen (laptop computer =) and then no problems. But now, I am confused, as if I forgot (which I did yesterday), I connect another second monitor, extend my desktop to this monitor and can't seem to drag everything back to the main screen. It seems to be a different configuration with your docking station.

    Lilybiri

  • Whine of high ground by speakers when using the logic or Garage Band

    Yesterday, I downloaded and installed Logic Pro. During the last part of the installation process my speakers started to whine. It is not very strong, but quite noticeable and irritating. I use these speakers (Alesis M1 Active 520) for years and have never had this problem.

    When I restart, before launching logic, the speakers are silent - which means that there is no groan even when the speakers are turned at full volume. Logic Pro is launched as soon as the whining begins.

    When I go in the preferences in the logic and change the parameters of the device, for example I pass the entrance 'none', the whine disappear momentarily while the changes are applied, then it returns a few seconds later. The only way I can get the groan to stop is to choose one output other than "USB Audio Codec" - which then of course I hear nothing of logic, except through the Mac Mini, built in speaker, other sounds play through speakers normally without any annoying groan.

    Logic Pro to quit smoking will also stop the whine.

    Reminder, my speakers will only commit the groan Logic Pro is running. The moan is noticeable when the speaker (speaker button) is set to a level higher than 30%. I normally set it to about 50-60%.

    I just opened Garage Band and it has the same problem. Final Cut Pro X (and any other programs that I use) but do not.

    Looks like you have found your comments from your Audio input... maybe the built in Mic?

    That switch off in the preferences Audio Logic... by choosing a different input audio and see if that fixes it.

  • Why do I have a loud hum when with audio recorded when I read a file saved with Microsoft LifeCam with the latest version of Microsoft Essentials?

    Why do I have a loud hum as well as audio recorded when I play a file saved using Microsoft LifeCam with the latest version of Microsoft Essentials?

    HUMS are usually ground fault loops.

    If it is a test of laptop with and without the power connected (using battery instead)

    The mic can also have a cut wire, etc.

  • Problem connecting to the server by using the url with the logical name!

    Hi all!

    I looked for information on this subject, but have not seem to found a solution.

    I'm developing a Smartphone application that needs to connect to a server to retrieve data. Then I use a direct connection with the correct settings (I hope):

    URL = "url of the server" + "deviceside:true" + "AFN:...» »

    The problem is that the connection should be done without Hardcoding the "apn". These are the tests I've done so far (assuming I'm always add the ' deviceside: true ' parameter):

    URL (logical name) + AFN OK!
    FAILURE of the URL (logical name)
    URL (static IP) OK!

    * by logical name, I mean a url as www.google.com

    What I need is to use the logical name, without the parameter apn!  Maybe I'm missing another parameter that I don't know?

    Some additional info that might be useful! :

    -The server is a server of Vodafone, which, as has been explained to me, should be on the list of white of the RIM (not sure what that means, but I guess it has to do with the fact that BB connection through the RIM at one point servers, and be in this list gives a sort of 'privilege' when you browse servers of RIM) , and I don't know it is publicly accessible as (see following)

    -An android version of the application works fine without Hardcoding the AFN and using the logical name (I guess it has to do with the RIM servers!)

    Any help or ideas towards the solution that it is greatly appreciated!  If I'm missing some info that you think I should add! Please tell me!

    Thanks for your help!

    Juan

    Thanks Peter!

    I could solve it by looking at the code of the alternative of the Api network in the link sent you me!

    The solution was the addition of the ConnectionUID parameter to the url String!  as to why this solves the problem I still don't understand it! (If you can enlighten me with the reason, I would be very grateful)

    This value is found in the service books!, I have the zip code just in case it helps someone!

    Hogshead string = null;

    Full book sb = ServiceBook.getSB ();

    Reviews [] ServiceRecord = sb.getRecords ();

    for (int i = 0; i)< records.length;="">

    {

    String cid = records [i] .getCid () .toLowerCase ();

    String uid = records [i] .getUid () .toLowerCase ();

    If ((cid.indexOf ("wptcp")! = - 1) & (uid.indexOf ("wifi") ==-1) & (uid.indexOf ("mms") ==-1))

    {

    Hogshead = records [i] .getUid ();

    }

    }

    then add the parameter: ConnectionUID = Hogshead

    Once again, thank you!

  • Where my could queue in the flow becomes of in my audio recording application

    My application runs the audio analysis in real time. Some just devices will not be able to handle the amount of treatment needed, but I expect devices like the 9780 to be able to manage it. Currently, this application works without error on OS7 phones.

    Here's my program structure:

    initialize:

    -l' screen displayed items

    -audio listener thread started. The drive uses a read/write overrided ByteArrayOutputStream that communicates with the thread of analysis.

    -analysis is generated when the outputstream reaches a certain size

    On slower devices, I get the error app 523 (9000) and 603 (9780), when there is an overflow of queue event. The user interface is slow on these devices.

    To isolate the problem, I put comment calls to perform the analysis of the audio, which subsequently stops all calls to make any changes to the user interface (in other words, all arrested on the event thread calls in my code). In this State, all that works is the player that stores data in memory via the ByteArrayOutputStream and the event queue overflow occurs.

    I'm puzzled why the wire audio sampler could have an impact on the thread of events. I was wondering if the ByteArrayOutputStream writing calls were run on the thread of the event, but a new thread for the writing of a spawning code does nothing to solve the problem.

    Any ideas?

    Thank you

    Scott

    Hi superdirt,

    Try to replace your writing (in OutputBuffer) function with the following:

    public void write (byte[] b, int off, int len) {  synchronized (this) {       boolean callread=(buffer.length < 2048*2*2*2 && (buffer.length+len) >= 2048*2*2*2 || buffer.length>20000);       super.write(b, off, len);       //if (callread) agt.update();  }}
    

    If it works fine.

    If this is not the case, try using a Profiler or substituting the rest of the ByteArrayOutputStream functions like this:

    f() {}

    System.out.println ("function f has started!");

    Super.f ();

    System.out.println ("function f finished!");

    }

    These options will give more information about the features enabled and the cause of the overflow.

    E.

  • Software used to decode the media not available on this system

    I read a lot on this subject on various sites of forms and failed to find a solution.

    My project is filmed in 1080i @22Mbps and is 2 hours long that I split on two discs... There is NO images or graphics aside a grab single image to roll over the titles, there is some .mp3 and one. WMA file for audio.

    My method of editing, I edited the entire project in a single calendar, so when I get overall even length I it spread over approximately a two-disc length... Disc 2 was made as H.264 blu - ray and any in yet for blu - ray authoring this worked flawlessly, however with disc one I get the error "the software used to decode the media not available on this system...". blah blah blah! »

    I'm working on windows 10 PC with enough RAM and processing power and graphics.

    Can anyone provide a reason or a solution please.

    I rechecked the timeline and there are no gaps or breaks in there, I made the file as H.264 and imported the .mp4 still work but flow is low.

    Thank you

    P.

    Ok.. then MPEG2-Blu-ray has imported and burned to disc correctly... I'll let discs go to the client in this format and hope that its ok for them

Maybe you are looking for