Check the file

I can't play the file in iTunes and add it to the library. Could you check it at your computer. Here is the link to the file http://rapidshare.com/files/47178410/TheHives_-_Hail__hail__spit__n_drool.mp3
Message was edited by: v-ert

+what do you mean with "cleaned it up"? did you use any program?+
I used MusicMatch. There are 3rd party fix-it programs too. Any program that can produce a new clean mp3 will do.
+I noticed you've changed the bit rate from 160 to 192 kbps. Is this the solution?+
No, it was just set that way.

Similar Messages

  • How to check the file size before loading it to the context

    Hello,
    I have an application to upload a file and write it to the server using the FileUpload UI and IWDResource Interface.
    I would like to limit the size of the file the user is uploading to, say, 2MB.
    The problem is that the current API doesn't allow me to check the file size before I store it in IWDResource. The API available for IWDResource:
    IWDResource resource = ...
    InputStream stream = resource.read(false);
    size = stream.available();
    Is working on the file only AFTER storing it in the context and the server's memory. This way, if a user decides to upload 1GB file for example, he can easily crash the server.
    I am already familiar with <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/00062266-3aa9-2910-d485-f1088c3a4d71">this</a> arcticle but it doesn't answer this question as well, all it does is calculating the file size only after storing it in the context.
    Any ideas...?
    Roy

    Hi Ram,
    Have you activated your Objects ?
    You need to activate your objects in order to see them in RWB.
    Thanks & Regards,
    Varun Joshi

  • How can we check the file is tab deliminated at the time of gui_upload

    Hi All,
    How can we check the file is tab deliminated or not at the time of gui_upload.
    Regards,
    Amar

    Hi,
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                      =
    *   FILETYPE                      = 'ASC'
    *   HAS_FIELD_SEPARATOR           = ' '       " This indicates fields seperation in the file

  • Webutil - to check the file/folder path is valid in client pc

    I'm using oracle 10g forms. OS is Windows.
    When i try to write a file from DB to Client in order to open the file in client system,
    i 'm using CLIENT_HOST('CMD /C '||<filename>); => which saves the file in desktop.
    In order to specify a different location, i assigned a local variable and concatenating it with the file name. But my requirement is, before i specify a different path, i want to know whether the path is valid or not?
    Say for example:
    var_temp_folder := 'C:\DB_File\';
    var_success :=
    webutil_file_transfer.DB_To_Client_with_progress(
    clientFile => <filename>
    ,tableName => <tablename>
    ,columnName => <columnname>
    ,whereClause => <where_clause_condition>
         ,progressTitle => 'Download from Database in progress'
         ,progressSubTitle=> 'Please wait');
    CLIENT_HOST('CMD /C '||var_temp_folder||<filename>);
    -- On the above, var_temp_folder is the local variable i specified, i 'm opening the file from DB to Client PC.
    But before that i want to check whether this path in var_temp_folder variable is available in client pc (Note: Client PC runs on windows).
    For that, can i use the CLIENT_HOST or any other function/procedure in WEBUTIL available for the same?
    Any immediate help would be appreciated..
    Regards
    Muthu

    Yea... i found the solution...
    webutil_file.file_is_directory(<folder_path>) will help to check the whether the path is valid or not in client pc.
    if not webutil_file.file_is_directory(<folder_path>) then
    user_message('Path does not exist');
    raise form_trigger_failure;
    end if;
    Any other suggestions also be appreciated..
    Thanks
    Muthu

  • Check the file extension in the selection screen

    hi,
    in the selection screen i am giving a file path. the file should be of type PDF only.
    how to validate it ?
    i am splitting the file path at "." and checking for the last three letters , if it pdf or not.
    but it is throwing error for pdf format also.
    throw some light on it and let me know.
    thanks  and regards.
    suki

    hi,
    You need to pass only COMPLETE_FILENAME
    say C:\ABC\A\ABC.TXT
    data  : v_filename type PCFILE-PATH.
    v_filename = "C:\ABC\A\ABC.TXT".
      CALL FUNCTION 'PC_SPLIT_COMPLETE_FILENAME'
           EXPORTING
                COMPLETE_FILENAME = v_FILENAME
           IMPORTING
                DRIVE             = v_DRIVE
                EXTENSION         = v_EXTENSION
                 NAME              = v_name
                 NAME_WITH_EXT     = v_namewithtxt
                PATH              = PATH_VALUE
            EXCEPTIONS
                 INVALID_DRIVE     = 1
                 INVALID_EXTENSION = 2
                 INVALID_NAME      = 3
                 INVALID_PATH      = 4
                 OTHERS            = 5.
    you will get the output as
    DRIVE                           C     
    EXTENSION                   TXT   
    NAME                            ABC   
    NAME_WITH_EXT          ABC.TXT
    PATH                            \ABC\A\
    Hope this helps.
    Regards,
    Richa

  • How can i check the file  which is upload from  the server

    when upload the excel file from the server file to the internal table ,how can i check the data whether it accord with  the required condition .
    for example ,i want to upload the file which have the data whose type is pack, and it have three integer and  two decimal ,how can i check in my code.
    thanks,

    Hi Sichen,
    First upload the file, Then do ur validations and delete the records that doesn't satisfy ur requirements.
    Thanks,
    Vinod.

  • Checking the file content in application server

    Hi,
    I am writing an XML file from the raw XSF data from a smartform auto generated function module through OPEN DATASET command in BINARY MODE. When I go to tcode AL11 to check the content of the XML file, I can see only the first few bytes of it as it looks like one single line in AL11. Is there any way so that I can read the whole content of the file in the application server itself without downloading it into my local machine.
    Thanks in advance
    Nilay Ghosh

    You may try eigther transaction AL11 with allows you to browse files and display their content(as long they are textfiles).
    If you need specific conversion an own report may help:
    first read the file via dataset commands
    if content is non readable convert it to chars
    split the string into a char or string table
    use the command 'editor-call' (check online help) to display this table.
    Kind Regards
    Klaus

  • Checking the file size

    Hi all. Can anyone help me how to check the size of a file using Oracle 10gR2?
    Thanks.

    You could use UTL_FILE. FGETATTR.
    This procedure reads and returns the attributes of a disk file.
    Syntax
    UTL_FILE.FGETATTR(
    location IN VARCHAR2,
    filename IN VARCHAR2,
    exists OUT BOOLEAN,
    file_length OUT NUMBER,
    blocksize OUT NUMBER);
    Parameters
    location: Directory location of the source file, a DIRECTORY_NAME from the ALL_DIRECTORIES view (case sensitive).
    filename: The name of the file to be examined.
    exists: A BOOLEAN for whether or not the file exists.
    file_length: The length of the file in bytes. NULL if file does not exist.
    blocksize: The file system block size in bytes. NULL if the file does not exist.
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/u_file.htm#i1003488
    More examples regarding UTL_FILE can be found here (amongst others):
    http://www.oracle-base.com/articles/9i/UTL_FILERandomAccessOfFiles9i.php

  • How to check the files ...that are present in an oracle directory

    hi all
    is there any data dictionary view or table that will list all the files that exist a oracle directory?
    regards
    raj
    we can see all the directories using dba_directories i would like to see what all files it contains
    regards
    raj

    hi justin
    this is me who posted here ..but here i was asking about... the directory that we create in oracle.....
    about dba_directories.....
    in the other post in pl/sql forum i was asking about the directory that exist on the ftp server....... and using unix from with in plsql to loop through the list of all the files
    regards
    raj

  • My secure empty trash keeps stopping and saying 'I do not have permission to trash" I ahve checked the file info and there is no tick in the locked box also the files are from a memroy stick

    My secure empty trash stops and will not let me empty the trash. It says; I do not have access to some of the items. I have clicked continue, but it will not empty them. I have tried looking at the files in the trash box and the file info does not have the "locked box" ticked. Any suggestions please.

    Open Terminal.app(/Applications/Utilities/Terminal) and type
    sudo rm -rf ~/.Trash
    Be careful all of files in the trash are deleted with above command.

  • HT1725 I bought an album but the last track only plays for 4 seconds when the actual track should be 3 minutes. itunes states that all available downloads are complete and when I check the file in finder it is also only 4 seconds long.  What can I do???

    Can anyone help with the above?

    Depending upon what country that you are in (music can't be re-downloaded in all countries) then try deleting that incomplete track from your iTunes library and redownload it via the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes : re-downloading.
    If you aren't in a country where you can re-download music or if it re-downloads in the same state then try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account (Store > View My Apple ID on iTunes 11) and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find that album and click the arrow to the left of it, and then use the 'Report a Problem' link and fill in details about the problem (iTunes support should reply within, I think, about 24 hours).
    Some people have had a problem with the 'report a problem' link (it's been taking people to this site on a browser instead of showing a form in iTunes) - if it does that to you then try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page.

  • Regarding the file name checking

    Hi ,
         I m using the below program which will upload the XL sheet , here i want to validate the file name which i m selecting from the destop. the file name should be named as "Suresh.XLS", where and how i can do validation for checking the file name..
    I gave the code for the refernce...
      please let me know the solution ASAP..
    REPORT  ZSURESH13062007                         .
    types: begin of ttab ,
          fld1(30) type c,
          fld2(30) type c,
          fld3(30) type c,
          fld4(30) type c,
          fld5(30) type c,
          end of ttab.
    data: itab type table of ttab with header line.
    selection-screen skip 1.
    parameters: p_file type localfile         .
    selection-screen skip 1.
    at selection-screen on value-request for p_file.
      call function 'KD_GET_FILENAME_ON_F4'
           exporting
                static    = 'X'
           changing
                file_name = p_file.
      start-of-SELECTION.
       IF  p_file IS INITIAL.
    MESSAGE S398(00) WITH 'No input file specified.'.
      ELSE.
    clear itab.
        refresh itab.
        PERFORM upload_data.
    loop at itab.
        write:/ itab-fld1, itab-fld2, itab-fld3, itab-fld4, itab-fld5.
      endloop.
      endif.
    form upload_data.
      data: file type  rlgrap-filename.
      data: xcel type table of alsmex_tabline with header line.
      file = p_file.
      call function 'ALSM_EXCEL_TO_INTERNAL_TABLE'
           exporting
                filename                = file
                i_begin_col             = '1'
                i_begin_row             = '1'
                i_end_col               = '200'
                i_end_row               = '5000'
           tables
                intern                  = xcel
           exceptions
                inconsistent_parameters = 1
                upload_ole              = 2
                others                  = 3.
       loop at xcel.
        case xcel-col.
          when '0001'.
            itab-fld1 = xcel-value.
          when '0002'.
            itab-fld2 = xcel-value.
          when '0003'.
            itab-fld3 = xcel-value.
          when '0004'.
            itab-fld4 = xcel-value.
          when '0005'.
            itab-fld5 = xcel-value.
        endcase.
        at end of row.
          append itab.
          clear itab.
        endat.
      endloop.
    ENDFORM.
    Thanks,
    Suresh...

    Hi Suresh,
    Check the Function Modules,
    PC_CHECK_FILENAME_WITH_EXT,
    PC_CHECK_FILENAME.
    Thanks,
    Reward If Helpful.

  • How to handle check-out files of users that are no longer with the company?

    We have cases that files were checked out and modified, but the engineers left before they check-in the files. What's the right way to handle such cases? Does the project admin have right to check-in for the engineers? How can we make another person to
    check the files in?

    Hi Peter, 
    Thanks for your post.
    Do you want check-in that files within the changes which that left engineer created to TFS Server? If yes, you need logon that engineer’s client using his account, then get modified files on this client and perform check-in.
    If you don’t need that changes which modified by that left engineer, just the check-out files on this client caused other users cannot work on that files, you can ask the team project admin user to perform
    tf undo command on that files to resolve this checked-out issue. 
    For example, the files be checked-out under workspace1, so execute this command “tf undo $/xx/xx(file path) 
    /collection:collectionURL /workspace:workspace1 /recursive” to undo it
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to check the type of uploaded file

    Hi, experts,
    how can I check the type of the uploaded file? I am dealing with exception handling now: when user uploads a type of file which is not allowed, then error msg shows up. So first I have to retrieve the type of the uploaded file.
    Best regards,
    Fan

    Best approach would be to control the file upload program. Here in force user to chose only the kind of file supported.
    If you are using WD4A & fileupload UI element, then after user select a file to upload, before processing the file you can check the file name and get its MIME TYPE as shown below.
    example
    data type file string.
    data dot_offset type i.
    data extension type mimetypes-extension.
    data mimetype type mimetypes-type.
    file = 'Image.jpg'.
    " Find out file name extension
    find first occurrence of regex '\.[^\.]+$' in file match offset dot_offset.
    add 1 to dot_offset.
    extension = file+dot_offset.
    " Get mime type
    call function 'SDOK_MIMETYPE_GET'
      exporting
        extension = extension
    importing
        mimetype  = mimetype.
    later using if/else or CASE statement define your logic.
    Greetings
    Prashant
    P.S. Points Welcome

  • How can I check all the files on an external volume?

    I recently had a problem with my external where the directory got messed up. Disk Warrior seems to have fixed it, and I've run both that and TechTool Pro on it to check the files and so far both have said they're fine, but I'm still worried. I have quite a few files on there and each time they test it takes only a few minutes where if you verify say, a DVD of files it takes 5-10 minutes just for that, and that's 4GB to 1TB.
    Is there any way I can test all the files on the volume, much like verifying them, to see if there has been any corruption or data lost?

    You're a very helpful person, aren't you? Lol.
    I have checked a bunch of video files that were on my external pre-trouble that I was able to transfer to my internal drive and run perfectly. Unfortunately there are far too many other files to check them all, all of my music on there as well as all my font, work and resource files so there's tens of thousands of files on there. Checking them all manually is not an option.
    Thanks for the reassurance though. Hopefully at some time in the near future Blu Ray will be cheap enough that I'll be able to back up all my data to disc regularly, until then I'll just have to rely on my external.
    Thanks for the help!

Maybe you are looking for

  • Problem while creating a new user on solaris

    I have a SUN ultra machine. Solaris 2.6 is installed on this machine. I have successfully created a new user in this machine using "admintool" Problem is I'm getting error messages when I'm trying to update NIS DATABASE. I'm doing- #cd /var/yp #/usr/

  • Dynamic Fonts in JSP With applet

    Hi Buddies My Multilingual web application uses a dynamic font , the technology provided by TrueDoc.com. Now the problem is the webpage works properly by making use of the dynamic fonts and I get stuck to life when I realised that my applet should al

  • Error occured processing parameter

    Hi, I need to set new value for log_buffer. so what I did was i issued the following command at sql command prompt alter system set log_buffer=50M scope=spfile; it throws ORA-012095: specified initialization paramer cannot be modified so i brought th

  • Another Photo Question... May be useful to travellers!!!

    Ok, so I have worked out a way to use several computers to update my photos! All I do is store the original files on my iPod using it as a hard drive, then sync them to my iPod using iTunes (obviously not storing the full resolution images by unticki

  • Serious android problems?

    2 days ago my phone froze, after removing the battery the phone kept resetting to the htc screen. I did a factory reset, and for some reason all apps i downloaded were deleted? when i try to reinstall (ie. words with friends) the phone resets and the