Emergency help needed re media manager

Hi all,
Hopefully somebody can help me with this.
I am due to start an audio mix on a project for a client tomorrow. He currently has the FCP project on his Mac Pro but due to recording to a tascam portable recorder on set all his audio files are called audio1, audio2 etc. He has a folders on his drive with each days recordings so there are many folders which all contain files called audio1 etc.
I asked him to put his picture lock sequence onto an external drive using media manager but it doesn't seem to able to handle the audio files since there are so many with the same name from different folders so the external now has only one file with each name where on the picture lock sequence there are many audio clips called audio1 for example.
I hope this makes sense.
Please post here if you can help me.
Thanks in advance
Michael

If you have a media card in your BlackBerry then the easier way to transfer items to it is to just click on the My Computer icon and drag and drop them to the appropriate folder. Music to the \blackberry\music folder and so on. As for the problem with the Media manager, it should be remedied by installing the OS for your device to your computer.
Message Edited by tschweitzer on 10-21-2008 11:21 AM
Message Edited by tschweitzer on 10-21-2008 11:22 AM

Similar Messages

  • Help needed with Media Manager

    I recently purchased the Blackberry Curve, 8310 and downloaded the most updated version of Media Manager.  While connected to my PC with the USB cable, the desktop manager fires up, updates my email accounts, etc. and seems to be able to communicate with the Blackberry.  However, when I then open up Media Manager to transfer photos, it does not recognize the phone connection.  Any help in defining what I'm missing here would be appreciated.

    If you have a media card in your BlackBerry then the easier way to transfer items to it is to just click on the My Computer icon and drag and drop them to the appropriate folder. Music to the \blackberry\music folder and so on. As for the problem with the Media manager, it should be remedied by installing the OS for your device to your computer.
    Message Edited by tschweitzer on 10-21-2008 11:21 AM
    Message Edited by tschweitzer on 10-21-2008 11:22 AM

  • Do I need a media manager anymore?

    In the document "Oracle Database 10g Release 2: A Revolution in Database Technology" at http://www.oracle.com/technology/products/database/oracle10g/pdf/BWP_Overview_10gR2_060205.pdf Oracle says that "In Oracle Database 10g Release 2, the new Oracle Secure Backup tape archiving facility eliminates the need for 3rd party tape backup products".
    Does this mean that I don’t need a media manager like Veritas NetBackup anymore?
    I can’t seem to find anything about this in the new Release 2 documentation. Please would someone point me in the right direction.
    Gavin Rayner

    The question really becomes, what else does NBU do for your organization and can the facilities in 10g r2 fill that need. For example, do you have other databases (DB2, SQL Server) that are backed up by NBU? Do you use advanced client features such as Flashbackup - the ability to back up millions of files at the speed of raw disk, but still have the ability to restore as individual files? There are many more features in NBU (or any other media manager as a matter of fact) than will be available in 10g r2 that need to be reviewed before making this type of decision.
    Sure, you might be able to eliminate the media manager need from your ORCL dbms, but if you use NBU for other reasons, why would you want to manage 2 different tools based on the underlying technology (unless of course, there is no common way to meet that need)? That would only complicate a DR scenario where things are already complicated enough!

  • Need general media manager. imedia ?!!

    Hi,
    I'm looking for a way or a software that would let me manage all my media (photo video, music, document) all in one place.
    Like a bridge between iphoto, imovie, itunes, etc. The idea is that I could create albums, folders or events, and say for example that I want those specific photos, videos and music to be part of it.
    It is a little like if I create an event in Final cut pro and put in it videos, photos and music that I need for a project so I can see, access then quickly and create the movie.
    I could them create for example a family christmas 2012 event, see everything related to it. I could them simply import this events in imovie as one events, edit it and share it. It would make very quick and simple to organize, find, work with and share everything.
    Is there a software that can do that?
    Thanks

    Media Pro 1 may do what you want.  It can catalog, videos, photos, Word, Excel, and iWork files, text files, pdf files, fonts, html files and more.  There's a demo version available (28 days I believe).
    OT

  • Help needed regarding CLLocation Manager

    Hello everybody,
    i am developing a GPS application in which i needs to track the speed of the device/iphone ,i am using the CLCorelocation API's Locate me referral code provided by Apple my problem is that the LocationManager does not updates the current latitude and longitudes thus i am unable to calculate the distance as well as the speed of the device/iphone.
    Any kinds of suggestions/code will be highly appreciated please suggest me if i can do something with the Mapkit framework introduced in the sdk 3.0.
    thanks in advance

    Thanks for your reply i am copying my code what i have implemented and it does not works please have a look at it and let me know what i am doing wrong i will be very helpful to you.
    - (void)locationManager:(CLLocationManager *)manager
    didUpdateToLocation:(CLLocation *)newLocation
    fromLocation:(CLLocation *)oldLocation
    ASafeDriverAppDelegate *appDel1 = (ASafeDriverAppDelegate *)[[UIApplication sharedApplication] delegate];
    chklat = newLocation.coordinate.latitude;
    chklon = newLocation.coordinate.longitude;
    appDel1.maxSpeed=0;
    double timeDiff;
    NSMutableString *update = [[[NSMutableString alloc] init]autorelease];
    // Horizontal coordinates
    if (signbit(newLocation.horizontalAccuracy)) {
    // Negative accuracy means an invalid or unavailable measurement
    [update appendString:LocStr(@"LatLongUnavailable")];
    } else {
    // CoreLocation returns positive for North & East, negative for South & West
    [update appendFormat:LocStr(@"LatLongFormat"), // This format takes 4 args: 2 pairs of the form coordinate + compass direction
    fabs(newLocation.coordinate.latitude), signbit(newLocation.coordinate.latitude) ? LocStr(@"South") : LocStr(@"North"),
    fabs(newLocation.coordinate.longitude),signbit(newLocation.coordinate.longitude ) ? LocStr(@"West") : LocStr(@"East")];
    [update appendString:@"\n"];
    [update appendFormat:LocStr(@"MeterAccuracyFormat"), newLocation.horizontalAccuracy];
    mShouldStopAndStartLocationServiceAgain = YES;
    [update appendString:@"\n\n"];
    // Altitude
    if (signbit(newLocation.verticalAccuracy)) {
    // Negative accuracy means an invalid or unavailable measurement
    [update appendString:LocStr(@"AltUnavailable")];
    } else {
    // Positive and negative in altitude denote above & below sea level, respectively
    [update appendFormat:LocStr(@"AltitudeFormat"), fabs(newLocation.altitude), (signbit(newLocation.altitude)) ? LocStr(@"BelowSeaLevel") : LocStr(@"AboveSeaLevel")];
    [update appendString:@"\n"];
    [update appendFormat:LocStr(@"MeterAccuracyFormat"), newLocation.verticalAccuracy];
    [update appendString:@"\n\n"];
    //geocoding implementation here........................................................................... .........................................
    NSString *ServerUrl=@"http://maps.google.com/maps/geo?";
    NSString *restUrl=@"output=csv&oe=utf8&sensor=false&key=ABQIAAAA9nyRoYg0rWpsiVi9iMjoSRQV WFT_Rez40XtsgfvlPpZQQeDyexSS5IUWt7S7bu53pG1lR3fjgcrfxQ";
    NSString * URLdata=[NSString stringWithFormat:@"%@q=%f,%f&%@",ServerUrl,newLocation.coordinate.latitude,newL ocation.coordinate.longitude,restUrl];
    NSURL *theURL = [NSURL URLWithString:URLdata];
    NSURLRequest *myURLRequest = [NSURLRequest requestWithURL: theURL];
    NSURLResponse* myURLResponse;
    NSError* myError;
    NSData* myDataResult = [NSURLConnection sendSynchronousRequest: myURLRequest returningResponse:&myURLResponse error:& myError];
    NSString* StreetName;
    BOOL val=YES;
    StreetName = [[NSString alloc] initWithData:myDataResult encoding:NSASCIIStringEncoding];
    //NSLog(@"this is the lenght of the street name %d",[StreetName length]);
    if([StreetName length]!=0)
    NSLog(@"this is the street name received.............. %@",StreetName);//[StreetName substringFromIndex:6]);
    //NSMutableArray *street=[[StreetName substringFromIndex:6] componentsSeparatedByString:@","];
    NSMutableArray street=(NSMutableArray*)(NSMutableArray)[StreetName componentsSeparatedByString:@","];
    NSString *tempString=[street objectAtIndex:2];
    appDel1.currentLocation=[tempString substringFromIndex:1];
    NSRange range=[tempString rangeOfString:@" "];
    if(range.location==NSNotFound)
    val=NO;
    //NSLog(@"this is the value of bool in false %d",val);
    else
    val=YES;
    //NSLog(@"this is the vale of bool in true %d",val);
    NSString *finalStreet;
    NSString *temp2;
    temp3=@" ";
    if(!val)
    finalStreet=[tempString substringFromIndex:1];
    NSLog(@"this is the street name %@",finalStreet);
    else
    NSMutableArray temp1=(NSMutableArray)[tempString componentsSeparatedByString:@" "];
    for(int i=1;i<[temp1 count];i++)
    temp2=[temp1 objectAtIndex:i];
    temp3=[[temp3 stringByAppendingString:@" "] stringByAppendingString:temp2];
    finalStreet=[temp3 substringFromIndex:0];
    NSMutableArray *speedValues=[appDel1 getSpeedValue:[finalStreet stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]];
    if([speedValues count]>0)
    if(appDel1.moreThanOneSpeed==YES)
    appDel1.maxSpeed=[appDel1 getSpeed:[finalStreet substringFromIndex:0] first:newLocation.coordinate.latitude second:newLocation.coordinate.longitude];
    else
    appDel1.maxSpeed=[[speedValues objectAtIndex:0]intValue];
    //Calculate speed
    CLLocationDistance distance;
    double calSpeed;
    NSTimeInterval difference;
    //calculate distance and time elapsed only if we save old location
    if(oldLocation != nil)
    difference= [[newLocation timestamp] timeIntervalSinceDate:[oldLocation timestamp]];
    distance = [newLocation getDistanceFrom:oldLocation];
    else{
    distance = 0.0;
    calSpeed =(distance/difference)*2.23693629;
    NSLog(@"Time elapsed is: %f", difference);
    NSLog(@"Distance travelled is: %f", distance);
    NSLog(@"Speed is: %f", calSpeed);
    //save the latest newLocation for calculating the speed
    oldLocation = [newLocation retain];
    appDel1.distance=distance;
    appDel1.time=timeDiff;
    [self.delegate displaySpeed:oldLocation.coordinate.latitude second:oldLocation.coordinate.longitude third:newLocation.coordinate.latitude fourth:newLocation.coordinate.longitude];
    if(appDel1.speed!=calSpeed)
    appDel1.speed=calSpeed;
    [appDel1 checkLimitAndSpeed];
    the speed and distance returned is always zero as the latitude and longitude remains the same always it does not keep updating.
    Thanks

  • Help needed on activity management

    Hi,
    I have created an activity in WEBUI for myself and when i try to verify the same in INBOX, the task is not available. I am new to this. can some one tell me what config changes are needed at the backend.
    Thanks in advance.
    Regards,
    Udaya

    Hi Uday,
    If you require your activity to be displayed in your inbox, then you need to do Grooupware Integration.
    Groupware Integration is used to integrate CRM Activity Management with the groupware applications, that is Microsoft Outlook and Lotus Notes, allowing you to synchronize business activities and tasks in your CRM calendar and your own groupware calendar.
    To map the CRM statuses to groupware statuses, you Customize for CRM by choosing Customer Relationship Management -> Transactions -> Settings for Activities -> Mapping of Activities to Groupware -> Map Activity Status to Groupware.
    For more information on this go throught the following link
    [http://help.sap.com/saphelp_crm60/helpdata/en/5c/e90d3888a11c10e10000009b38f8cf/frameset.htm]
    Wish this was useful to you
    regards
    Srikantan

  • Help Needed w/Desktop Manager 4.6 & Outlook Calendar Synch

    Everything was working just fine prior to my holiday break. Came back this morning and attempted to synch my BBCurve (running 4.5.0.81) with my Desktop Manager (v4.6) and it is just skipping over the calendar sync portion. No error message. Everything else is synching just fine. Deleted and reinstalled Desktop software -- that didn't work. Disabled calendar sync and re-enabled -- that didn't work. cleared the BB Calendar of all entries and now have no calendar entries on the device. HELP!

    I deleted the Intellisync folder, and reset the Desktop Manager configuration settings and I received the following Intellisync error message:
    The operation terminated unexpectedly while reading from Microsoft Outlook Calendar
    Then I tried to sync just from Outlook Calendar to Device -- that failed
    Then I tried to sync just from Device to Outlook Calendar -- that failed as well
    Then I deleted Intellisync folder again and rebooted my computer
    Successfully synced from Device to Outlook
    Tried to sync from Outlook to Device and it appears to be running, says one moment please and nothing happens and it returns to the Desktop Manager with no error message. Grrrrr.....

  • Emergency Help needed

    Greetings
    I have a 1.5GHZ Powerbook G4
    I just installed virtual PC against my wishes and I installed Windows XP home - seems to be successful. But ..
    I no longer have a windows laptop and I have installed a medical program with a treatment I must follow for 3 months 2 treatments a day. It works great on my PC but now I get an error window when I try to activate the program on my powerbook running the virtual pc with windows xp
    The error message is in jibberish writing because the program was given to me in russian but all i can read is the word DIRECTX
    I have installed 5 times directx9 yet i still keep reading same message
    it is very interesting that when i right click on my computer it reads
    686 MHZ Processor
    294 MHZ
    256MB RAM
    Where is that info coming from? How can WinXp read the hardware in my Tiger OSX powerbook???? It is not possible so if you look at the specs - no wonder everyone is complaining about VIRTUAL PC being so slow.
    The program that I need for treatments is also a 3D program and as I said I have tried to install DIRECT X 9 from microsoft and still fails to work
    Can anyone help me. I am going to China in 3 weeks and I do not want to interrupt my treatments. Please someone tell me what is going on
    Edward
    Now I know why people complain that Virtual PC for Macs is slow and not worth it! But how can the specs appear as that when Windows cannot read what the Mac has as hardware.
    I had changed the settings on Display properties from 16 bit to 32 bit - i will change back to 16 to see if my program will run
    it is crucial to my trip and my treatments that i can solve this problem - i do not want to travel if it will stop me from focusing on my treatments each day on time

    You can't run 3D software on Virtual PC, the emulated graphics card is not powerful enough.
    The system specs you are reading are the emulated specifications of the virtual PC and are not your Mac specs.
    Your only solution is to get a Windows laptop.

  • [Solved] Help, need a theme manager....

    I am currently using Awesome. When I start Vlc it uses some sort of square / grayish theme that is pretty ugly to be honest...
    Also I use drracket and it has the same theme...
    I also remember reading sth about qt3 / qt4 themes (I think KDE uses them), but have no Idea how to manage these...
    So finally my question :
    Is there any theme manager (preferably sth simple & light weight) that I can install that sets these qt3/qt4 themes ?
    I would really like to get rid of the gray boxy look....
    thanks in advance
    Last edited by fizk-jnk (2011-02-16 15:25:52)

    Lolz!
    Thanks for the help
    I usually do try to search the wiki... dunno why I seemed to forget & started digging in google

  • KEYCHAINS EMERGENCY HELP NEEDED

    So this is a breach of my privacy I am trying to fix but don't know how. My former roommate (ex girlfriend) moved out a couple months ago. But I just found out shes able to access things through my keychain on her phone or computer? How is that?
    ie: She is accessing my iMessages on her iphone or computer and she has been able to access my facebook etc etc. Is there something I need to chage so che cant access anything anymore from where ever she is or is she able to remotely tap into my keychain? I'm lost. I dont want her to have access to anything anymore. It's really freaking me out and scary.
    Thank you

    Go a few steps further and change the password on all of your accounts like Facebook, Twitter, Banking Info basically anything you can think of.

  • HT1766 emergency help needed to recover deleted contacts from Iphone

    Here is the situtation that occured that resulted in deleting all the 500+ contacts in my iphone
    A couple of days ago, I went to the mobile phone store and bought an iphone 4s upgrade package. I have been using an iphone 3s for the late couple of years.
    recently I upgraded the software of the old iphone and received the icloud software and  backed up all the data to the cloud.
    Now during the upgrade to the iphone 4s the shop assistant set up the new phone and transfered the sim etc to the new phone, I was unaware that the new iphone was now a clone of my old iphone with all my old data and a live sync to the icloud and itunes etc.
    When I got home I decided that I would give the new phone to my wife, so I proceeded to delete all the data off the new phone, this involved manually deleting all 500+ contacts in the address book, bar a few close friends that my wife knows, to safe her reentering the data.
    What I did not know was that the phone was syncing to the icloud/itunes everytime i hit delete and deleted a contact from the icloud and also from my old iphone that I am still using, so now I have 2 x iphones with no contact data.
    I have lost 15years of accumulated business and personal contact info, 75% of which I have no way of recovering from other sources.
    My obvious questions is, is there any way of restoring my iphone's contact data from an earlier version of the the auto sync backup ie from 2 days ago ie the 18th June 2012 and not the sync'd backup from today or this evening?
    OR is my life lost for ever?
    can anyone help?
    Thanks and regards
    John

    Unless you backed up somewhere else before deleting the contacts and not since, i.e. iTunes on your computer, sorry but no.  The backups are overwritten each time there is changed data - old backups on iCloud aren't saved.
    There is no way to restore any data deleted from an iOS device if it isn't in an available backup.

  • Emergency Help Needed! New drivers killed my soundca

    I used the auto-update tool to update my drivers, and now I have no sound whatsoever. What do I do?
    Any help would be greatly appreciated. Thank you.

    Once i uninstall creative stuff, i use dri've cleaner pro program to remove any resident files/ reg paths that get left behind.
    I never ran into problem doing it this way, also i only install the creative Audio HQ and mixer only.
    The rest of the creative stuff i don't install like speaker test, calibration etc.

  • HELP needed on Remote Management set to allow access for all users

    my mac mini snow leopard server runs in a data center and i use screen sharing to interact with it. i played with the sharing settings remotely yesterday and changed "allow access for" to all users. i was disconnected immediately and i couldn't logon again. i have no luck changing to other users. i don't want to make a special trip to the center to change it back to whatever it used to be. i can still use afp to connect but the screen sharing option is no longer available. what does "allow access for all users" mean anyway?
    thanks!

    As its name implies, allow access for all should allow any valid user account to access the server. I'm not sure why it's no longer working. It almost sounds like the ARDAgent crashed.
    Either way there's a command-line interface to the ARD preferences:
    /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/ki ckstart
    man kickstart discusses the options, including examples of how to enable access for specific users.

  • Help needs on People Management Template

    Hi,
    Is it possible to have defaulting value in one of the field based on security profile or depending on value of another field?
    thanks

    The task that i'm trying to achieve is try to default the location field on the assignment section based on responsibility or the organization selected. Can this be done via the form configurator?

  • Emergency Help need

    i want to calculate the sum of the average of the whole month having only days which contain entries(in a month).following query calculate the value by dividing the whole month.pls rectify the query and send.
    SELECT MON, QTY, (QTY/(LAST_DAY(MON)-MON)) AVG_QTY
    FROM
    (SELECT TRUNC(ABC_DATE,'MONTH') MON,
    SUM(NVL(ABC_MARKET_VALABC,0)+NVL(ABC_INT_ACCR,0)) QTY
    FROM POS
    GROUP BY TRUNC(ABC_DATE,'MONTH'))

    well,
    1) I am just said that i have a table which has date wise sum
    2) I pick the date wise sum and calculate the whole month
    3) Now I want to calculate the average of the whole sum in such a way that If January Month has 21 record (means 21 days entries are there) I divide this (21) to the QTY (1st line 3rd col of the following query).
    Following is the query for amendment.
    SELECT MON, QTY, (QTY/(LAST_DAY(MON)-MON)) AVG_QTY
    FROM
    (SELECT TRUNC(POS_DATE,'MONTH') MON,
    SUM(NVL(POS_MARKET_VAL_LCY,0)+NVL(POS_INT_ACCR_LCY,0)) QTY
    FROM POS
    GROUP BY TRUNC(POS_DATE,'MONTH'))
    I think there is no problem to understand now.

Maybe you are looking for

  • "The iPod ... could not be updated because it could not be found" on Mac?

    I just updated to the latest version of QuickTime and was notified that there was a new iPod update but when I try to update it I get the message: "The iPod "My Name's iPod" could not be updated because it could not be found." I tried to remove the i

  • Error in Smartform Custom after Upgrade from Release 4.6C to 4.7

    Hi, we have applied the upgrade of release from 4.6c to 4.7. After the process, we recognized an unknown message when try to print an invoice from SD: Sales and Distribution ---> Billing ---> Billing Document ---> Change(VF02); i insert a invoice num

  • Prefix zero to a decimal number

    Hi All, I need to send a value to third party system. The value is a decimal number but before sending it i need to prefix zero. Eg: 1.25---> 00000000001.25 The Functiom module CONVERSION_EXIT_ALPHA_INPUT works only for integers. Can you please sugge

  • Using iView 4.0.c8 Nextone connection Software

    I want to use iView 4.0.c8 Nextone Connection Software, i want to know if this is possible. Please help me Thanks

  • How do I embed flash movie with detection

    Hi - I want to embed a movie below a banner image in a web page. I want to use flash detection so that the right player is used. I've got Flash professional 8 so it spits out an HTML page with the flash detection script written to it. In the body sec