How to insert a mp3 file to Facebook Post

I have an iPad Air and would like to know how to upload mp3 files to a Facebook status post.....Any ideas??

I don't think that is possible to do, however since you're using a 3rd party app, asks facebook or look at their support site.

Similar Messages

  • Please can someone tell me how to save a MP3 file from my email on my iPad so I can put in on Facebook? Thankyou

    Please can someone tell me how to save a MP3 file from my email on my iPad so I can put it on Faceboo? I use hotmail and please tell me step by step as I am not a tech guru lol. Thankyou

    Hi jscher200,
    Thank you for your reply, sorry for the VERY late late response, but I have just figured out how to control this separate 'panel'. I find it really useful for monitoring Google Analytics in as it can just sit there running. It does have its limitations, as it's a limited size (you can't expand it to full screen view), so you can only ever see a vertical section of a website and need to scroll to look to the right or left, but I have the live view of people accessing my website running on there and if the numbers start racking up at any time, I can scroll to look and see what pages they are accessing, where they've been referred from, etc.
    To get it to work, you save a website address in the Bookmarks Toolbar and when you can see it sitting on the toolbar at the top of the screen with its little icon, right click on it then click 'properties', then tick the box 'Load this bookmark in the sidebar'. The next time you click on this bookmark to open the website, it will load in this sidebar, which looks like a separate 'window' but is immovable. You can only have one sidebar application running at a time, but can change it by right clicking on the bookmark you want to load in there and it will then change to that one next time you click on that bookmark.
    I hope this might be useful to others, as I asked for help with this on loads of forums and not one person knew that this existed - even really skilled techies!

  • How can I copy mp3 files from my Itunes library to an SD card for use in a non-apple phone?

    How can I copy mp3 files from my Itunes library to an SD card for use in a non-apple phone?  I can physically copy the tunes as mp3's but the phone does not seem to be able to play all of them.   Do I need to copy an entire album or can I just pick & choose individual songs?   The phone is question is an LG running who knows what for an operating system.

    AAC is Advanced Audio Coding.  Basically it's a format that sounds better than MP3 but doesn't take up as much space as a lossless format (like you'd have on a CD).  More than likely you've had that encoding turned on when you ripped your music into itunes (it's the default encoder).  Therefore your LG phone won't play them.
    You need to turn off the AAC format by going to the iTunes menu, Preferences, General (at the top), then clicking the "Import Preferences" button.  Change the AAC Encoder to MP3 Encoder.  After that you'll have to make MP3 copies of your songs by right clicking them and selecting "Create MP3 Version."  You'll get a copy of the song that should transfer to your SD card and have MP3 encoding.  Hopefully your phone will play that.

  • How can I move mp3 files from my ext.drive to my iPad via MB Air 11 ?

    How can I move mp3 files from my ext.drive to my iPad via MB Air 11 ?
    Thx

    You could drag your files to your macbook air's desktop then plug in you iPad...? I don't really know about this as i don't have a iPad. =S

  • How to insert an image file in Oracle database

    hi
    can you please tell me how to insert an image file into oracle database????
    suppose there is one image file in c:\pictures\rose.jpg. how to insert that file into database? theoretically i know that will be BFILE type but i dont know how to insert that.
    will be waiting for your reply........
    thanks & regards,
    Priyatosh

    Hello,
    The easiest way to load a blob is to use SQL loader.
    This example comes from the utilities guide:
    LOAD DATA
    INFILE 'sample.dat'
    INTO TABLE person_table
    FIELDS TERMINATED BY ','
    (name CHAR(20),
    1 ext_fname FILLER CHAR(40),
    2 "RESUME" LOBFILE(ext_fname) TERMINATED BY EOF)
    Datafile (sample.dat)
    Johny Quest,jqresume.txt,
    Speed Racer,'/private/sracer/srresume.txt',
    Secondary Datafile (jqresume.txt)
    Johny Quest
    500 Oracle Parkway
    Secondary Datafile (srresume.txt)
    Loading LOBs
    10-18 Oracle Database Utilities
    Speed Racer
    400 Oracle Parkway
    regards,
    Ivo

  • How to insert a image file into oracle database

    hi all
    can anyone guide me how to insert a image file into oracle database now
    i have created table using
    create table imagestore(image blob);
    but when inserting i totally lost don't know what to do how to write query to insert image file

    Hi I don't have time to explain really, I did have to do this a while ago though so I will post a code snippet. This is using the commons file upload framework.
    Firstly you need a multi part form data (if you are using a web page). If you are not using a web page ignore this bit.
    out.println("<form name=\"imgFrm\" method=\"post\" enctype=\"multipart/form-data\" action=\"FileUploadServlet?thisPageAction=reloaded\" onSubmit=\"return submitForm();\"><input type=\"FILE\" name=\"imgSource\" size='60' class='smalltext' onKeyPress='return stopUserInput();' onKeyUp='stopUserInput();' onKeyDown='stopUserInput();' onMouseDown='noMouseDown(event);'>");
    out.println("   <input type='submit' name='submit' value='Submit' class='smalltext'>");
    out.println("</form>"); Import this once you have the jar file:
    import org.apache.commons.fileupload.*;Now a method I wrote to upload the file. I am not saying that this is correct, or its the best way to do this. I am just saying it works for me.
    private boolean uploadFile(HttpServletRequest request, HttpSession session) throws Exception {
            boolean result = true;
            String fileName = null;
            byte fileData[] = null;
            String fileUploadError = null;
            String imageType = "";
            String error = "";
            DiskFileUpload fb = new DiskFileUpload();
            List fileItems = fb.parseRequest(request);
            Iterator it = fileItems.iterator();
            while(it.hasNext()){
                FileItem fileItem = (FileItem)it.next();
                if (!fileItem.isFormField()) {
                    fileName = fileItem.getName();
                    fileData = fileItem.get();
                    // Get the imageType from the filename extension
                    if (fileName != null) {
                        int dotPos = fileName.indexOf('.');
                        if (dotPos >= 0 && dotPos != fileName.length()-1) {
                            imageType = fileName.substring(dotPos+1).toLowerCase();
                            if (imageType.equals("jpg")) {
                                imageType = "jpeg";
            String filePath = request.getParameter("FILE_PATH");
            session.setAttribute("filePath", filePath);
            session.setAttribute("fileData", fileData);
            session.setAttribute("fileName", fileName);
            session.setAttribute("imageType", imageType);
            return result;  
         } And now finally the method to actually write the file to the database:
    private int writeImageFile(byte[] fileData, String fileName, String imageType, String mode, Integer signatureIDIn, HttpServletRequest request) throws Exception {
            //If the previous code found a file that can be uploaded then
            //save it into the database via a pstmt
            String sql = "";
            UtilDBquery udbq = getUser(request).connectToDatabase();
            Connection con = null;
            int signatureID = 0;
            PreparedStatement pstmt = null;
            try {
                udbq.setUsePreparedStatements(true);
                con = udbq.getPooledConnection();
                con.setAutoCommit(false);
                if((!mode.equals("U")) || (mode.equals("U") && signatureIDIn == 0)) {
                    sql = "SELECT SEQ_SIGNATURE_ID.nextval FROM DUAL";
                    pstmt = con.prepareStatement(sql);
                    ResultSet rs = pstmt.executeQuery();
                    while(rs.next()) {
                       signatureID = rs.getInt(1);
                    if (fileName != null && imageType != null) {
                        sql = "INSERT INTO T_SIGNATURE (SIGNATURE_ID, SIGNATURE) values (?,?)";
                        InputStream is2 = new ByteArrayInputStream(fileData);
                        pstmt = con.prepareStatement(sql);
                        pstmt.setInt(1, signatureID);
                        pstmt.setBinaryStream(2, is2, (int)(fileData.length));
                        pstmt.executeUpdate();
                        pstmt.close();
                        con.commit();
                        con = null;
                if(mode.equals("U") && signatureIDIn != 0) {
                    signatureID = signatureIDIn.intValue();
                    if (fileName != null && imageType != null) {
                        sql = "UPDATE T_SIGNATURE SET SIGNATURE = ? WHERE SIGNATURE_ID = ?";
                        InputStream is2 = new ByteArrayInputStream(fileData);
                        pstmt = con.prepareStatement(sql);
                        pstmt.setBinaryStream(1, is2, (int)(fileData.length));
                        pstmt.setInt(2, signatureID);
                        pstmt.executeUpdate();
                        pstmt.close();
                        con.commit();
                        con = null;
            } catch (Exception e) {
                con = null;
                throw new Exception(e.toString());
            return signatureID;
       }

  • How to insert a pdf file from a dynamic location into a table

    Hi friends
    Can any one please let me know how to insert a pdf file into a table from a dynamic location in server.
    suppose say i have a table CUST_BLOB(file_name, file_data). I have a file in directory c:\local having file_name test.pdf
    I want to insert this file in CUST_BLOB. Please help me.
    Thanks in advance.
    --Ahmed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    user620950 wrote:
    Hi friends
    Can any one please let me know how to insert a pdf file into a table from a dynamic location in server. Why dynamic locations on the server?
    Make it a business case that the files should be stored in specific location(s).
    Oracle uses directory objects to point to locations on the file system and, whilst these locations can be altered, it is better practice to set up specific locations and grant permission to the correct users for those locations so that there is full control over who is accessing what on the server. Whilst filenames may be dynamic, I wouldn't recommend using dynamic locations.

  • How to insert a gif file into a table?

    Hi,
    I need to insert a gif file into a table. Can anyone tell me where I can find the information on how to create this kind of table, how to insert a gif file into a table and how to select?
    Thanks,
    Helen

    Hi Helen,
    You could read about that in the documentation which is available online.
    For a starter: BLOB. And I bet there are many examples to be found on the web.
    Good luck. :)
    Regards,
    Guido

  • How do I get mp3 files to appear with album cover thumbnails?

    how do I get mp3 files to appear with album cover thumbnails? when I updated my ITunes now all my mp3 files
    that had thumbs have no thumbs...thanks

    First, you have to embbed picture into mp3 file with idtag editors (tagalicious, musicbrainz picard, mp3tag, id3tag editor...).
    Then you'll have to install at least Itunes 10.5.1(42), even if you're not using Itunes at all.
    Albumarts will now appear in every folder from the finder.
    I closed my topic because I solved it :
    https://discussions.apple.com/message/16640910
    Is it the same for you ?

  • How to set an mp3 file as ringtone on iphone4s?

    just got a new iphone 4s and wondering how to make an mp3 file as a ringtone..i have followed some steps shown on some other forums but im still stocked on default ringtones...i have successfully converted an mp3 file to m4r file and synced to my iphone but it didnt show up on my sound settings..can anybody help me find out what to do.please thanks...

    Have you had a look here
    iphone ringtone - CNET

  • How can I play MP3 files with time capsule on a stereo set?

    Hello,
    Can anyone offer ideas/suggestions how to play my mp3 files (itunes) from a Time Capsule device? I use a plain Philip 5.1dts set. I would like to be able to select music with either my iphone, ipad ir macbook.
    thanks, Anton

    You will need to add an Apple - AirPort Express to be able to stream your iTunes data to your amp/speaker setup.

  • How to store my mp3 files into my database

    Hello,
    I am having some trouble with a database i am creating to store my mp3 files. I have created the following sql statement so far using what research i did on the subject.
    CREATE TABLE music
    ( Artist CHAR(30),
    NameOfSong CHAR(30),
    Song BLOB);
    But i have no idea how to do a INSERT statement for the BLOB datatype. I am trying to use a location on my hard drive to upload the song to the table. All help is welcomed.
    Thank you,

    http://forums.oracle.com/forums/search.jspa?threadID=&q=insert+blob&objID=f75&dateRange=all&userID=&numResults=15
    Message was edited by:
    jeneesh

  • How can I move mp3 files from trash to iTunes?

    I accidently moved a group of MP3 files (songs) from my iTunes to the trash.  After doing a little research, I saw the suggestion of creating a folder on my desktop and dragging them from the trash to the new desktop folder.  So, I did that, and as far as I can tell, the songs are all there, sitting in the folder.  But when I tried to drag the songs from the desktop folder to iTunes, I got this message:
    "Attempting to copy the disk Macintosh HD failed.  You do not have enough access privaleges for this operation."
    This makes no sense to me.  This is my private computer so I should have all the privaleges I need to do anything, right? And I'm not trying to copy the "disk Macintosh HD", right?
    Anyway, can you help me move the songs back into iTunes--or to the podcast so I can then move them to iTunes?  FYI, the songs have names like, "download 124.mp3" and the Kind is "mp3 Audio."  I originally got these songs via a podcast from a radio station (KCRW). I have iTunes 11.1.1. 
    Thanks!  

    ed2345,
    Thanks!  I did that and the songs are now back in my iTunes.  Some of the songs went back to the podcast and some went to the playlist. 
    UNFORTUNATELY, the songs did some sort of massive duplicating so that there are now over 100 duplicates of every episode/song (the podcast now has almost 36,000 episodes/songs and the playlist now has over 24,000 episodes/songs), and iTunes is viery slow/sluggish (spinning beach ball).  Can you tell me how to eleminate all of the duplicates?  

  • How do I create MP3 files on my new iphone from old tmobil voice mail msgs?

    Hello! >>> iPhone master techies......... help~!~ I'm an "X" TMobil customer who recently switched to ATT and purchased an iPhone 3G. I forwarded 20 voice mail messages from my old TMobil phone to my husbands TMobil phone before having it disconnected and switching the sim card over, as salesman I bought phone from at ATT store said I'd lose them all if I didn't do this. They're ''THAT'' important to me to save, my grandbaby's messages, too dear to ever lose.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Question: I was told by a manager at an APPLE store "to turn the voice mail messages now on husbands tmobil phone into mp3 files", which could then be downloaded to my iphone [as sound bites??]. Does anyone know how this is done and if so, can you PLEASE tell me how to do this? If you need more of what the manager at Apple said to me, I'll continue with that, just ask.

    it's an iPhone specific question to me > regarding _my new_ iPhone.
    sorry if this wasn't the right place to put the inquiry but for a new person trying to figure this phone out, it's pretty confusing. I'd invite anyone to try to get info [from any number of sources] with any luck or help.
    having said all that, I thank you for this post, if nothing else, I can call them and see how much to have them do it. doesn't seem an unusual request should be pretty straight forward and easy to do if you're in the know, I am not.

  • How do I transfer MP3 files from my PC to iPhone

    Although I've read many items concerning this issue I still can NOT understand how to transfer some of my MP3 files to my iPhone.  When I attempt to transfer or sync song from my iTunes it states it will erase all of the other songs I have on there.  I did do this once when I first got the phone but have totally forgotten how I did it.
    I do not want my entire Library transferred to my phone, just certain songs that are on my PC.  I thought it had been a pretty easy task.
    Can someone give me the steps for doing this?
    Thanks.

    patfromst charles wrote:
    Although I've read many items concerning this issue I still can NOT understand how to transfer some of my MP3 files to my iPhone.  When I attempt to transfer or sync song from my iTunes it states it will erase all of the other songs I have on there.  I did do this once when I first got the phone but have totally forgotten how I did it.
    I do not want my entire Library transferred to my phone, just certain songs that are on my PC.  I thought it had been a pretty easy task.
    Can someone give me the steps for doing this?
    Thanks.
    Iphone is only meant to be sync to one itunes media library.  That is why you're seeing the message about erasing all the songs.  Did you sync those other song from a different itunes library?

Maybe you are looking for

  • Upload any XML file to internal table

    Hi, I'm writing a FM to upload any XML file (Which means I don't know the structure) to a internal table. I tried to use FM 'GUI_UPLOAD' and CALL TRANSFORMATION ('ID'). But the problem is that, the RESULT tab of CALL TRANSFORMATION ('ID') needs to de

  • Machine needs new OS; whither CS4?

    I've got CS4 faculty/student edition on a Dell laptop that's taken some pretty severe hits,  It still works if I don't close the cover (hinge damage), but there are also signs of malware here and there.  I'm retired faculty now (not emeritus) and can

  • How to call Webservices in XI

    Hi all, I hav a scenario where i need to call a third party webservice. its not the standard webservice scenario as given in the blogs. There is a webservice that I need to call from XI . Need your inputs in how to do this.. Regards, Vinithra

  • Accessing Hard drive information across the network

    Hello, Im trying to create a small app to monitor disk space usage of servers on our network. Im using the code found on Ray Camdens site. <cfset fileOb = createObject("java", "java.io.File").init("C:/")> <cfoutput> freespace=#fileOb.getFreeSpace()#<

  • Mac & Windows in Photoshop Elements 11

    Are there separate DVD's for Mac & Windows in Photoshop Elements 11?  Thanks for your answer, which should be indicated on product description.