Discussion Board

Results 1 to 6 of 6
  1. #1
    Registered User deepak4u2006's Avatar
    Join Date
    Apr 2011
    Location
    Hyderabad
    Posts
    42
    HI sir
    Can u tell me how to read the metadata from an audio file

  2. #2
    Nokia Developer Moderator wizard_hu_'s Avatar
    Join Date
    Feb 2006
    Location
    Oslo, Norway
    Posts
    27,744
    Search for metadata in the Wiki (part of Community panel, top-right corner).

  3. #3
    Registered User deepak4u2006's Avatar
    Join Date
    Apr 2011
    Location
    Hyderabad
    Posts
    42
    How Can I create 1st argument forForAllMatchingFiles(RFs& aSession, const TDesC& aWildName,
    const TDesC& aScanDir)

    i.e. aSession
    what does it actually means

  4. #4
    Nokia Developer Champion not_dying's Avatar
    Join Date
    Feb 2009
    Location
    India
    Posts
    813
    Quote Originally Posted by deepak4u2006 View Post
    How Can I create 1st argument forForAllMatchingFiles(RFs& aSession, const TDesC& aWildName,
    const TDesC& aScanDir)

    i.e. aSession
    what does it actually means
    The description of RFs is given in the SDK quite well. You can easily understand from there.

  5. #5
    Nokia Developer Moderator wizard_hu_'s Avatar
    Join Date
    Feb 2006
    Location
    Oslo, Norway
    Posts
    27,744
    RFs is the File Server session.
    If you want to use it in console code, you have to create such variable and Connect it
    Code:
    RFs fs;
    fs.Connect();
    
    ... use it here ...
    
    fs.Close();
    of course leave-safety and error-handling can be added, just to make it less readable:
    Code:
    RFs fs;
    User::LeaveIfError(fs.Connect());
    CleanupClosePushL(fs);
    
    ... use it here ...
    
    CleanupStack::PopAndDestroy(); // fs
    However if you are using GUI code, you already have an always available RFs
    Code:
    RFs &fs=CCoeEnv::Static()->FsSession();
    , or you can simply write CCoeEnv::Static()->FsSession() directly to the place where you need the RFs variable.

  6. #6
    Registered User deepak4u2006's Avatar
    Join Date
    Apr 2011
    Location
    Hyderabad
    Posts
    42
    @ wizard_hu_
    Thanks for your answer its working.....

Similar Threads

  1. Content File: Invalid metadata
    By dhw4ski in forum [Closed] Publishing to Nokia Store
    Replies: 1
    Last Post: 2010-12-16, 10:22
  2. photo + metadata = one file
    By DrivingMobileInnovation in forum Python
    Replies: 16
    Last Post: 2008-05-16, 04:56
  3. MetaData from the file in CMDAAudioPlayerUtility
    By anutosh_khare in forum Symbian Media (Closed)
    Replies: 5
    Last Post: 2008-03-10, 16:40
  4. How can I play the segment of an audio file, e.g. wav. file in my N73?
    By ipxx in forum Mobile Java Media (Graphics & Sounds)
    Replies: 2
    Last Post: 2007-07-30, 05:03

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved