MP3 Files - Browse or Layout Mode - which is better?

Hi,
Recently Roger Wilmut1 gave me the correct process on how to <drag and drop> audio files into my database. As part of the process, he suggested, “Make sure you are in Browse mode.”
I played the audio file in <Browse> mode. I double clicked the audio icon and “Let's Do The Cha-Cha” started playing. No problems (see screenshot).
But, what  happens if I stopped the song mid-way through? Still in <Browse> Mode, it began playing where it left off. But, what if I wanted to start the song from the beginning? <Browse> mode proved problematic. For no apparent reason, other than experimentation,  I tried <Layout> Mode.
In <Layout> Mode, I dragged and dropped the “Up On The Mountain” (audio file b-side) into a multimedia field (see screenshot).
Still in <Layout Mode> I single clicked the audio file icon. A “status display”  and “audio track bar” appeared (see screenshot). A single click in the “status display” and the song started playing. It seemed <Layout> Mode gave me more audio options, than being in <Browse> Mode. Is there a downside in <Layout> Mode, I'm unaware of?
Many thanks to Roger Wilmut1 and Ronda Wilson for sharing their screenshot information with me. In this  case, visual and written communication proved to be  equally important and necessary.
Carl

Thank you Roger,
You reminded me of two immutable truths, I forgot.  First, ”Layout mode is for designing databases. Anything you do there will apply to all records - for example if you drag in a small image, it will then appear in all records.” Second, AppleWorks 6.2.9 is old. I'm  taking this database building business quite seriously. AppleWorks 6.2.9  may not be sophisticated enough for the work I'm trying to do. There will be lots of text, lots of audio files, lots of photographs and/or screenshots of record labels. Label identification will show how to identify an original, 1st pressing, a re-issued 2nd pressing or a bootleg.  Also, I  have Final Cut Express 4 to capture and edit all the videos I collected over the years and Amadeus Pro for the audio files.
I read with interest your informative article Abandoning  AppleWorks - Datbases. You had this to say about  Bento 2, “Bento has nothing approaching the power of the AppleWorks database module.” Do you hold a similar opinion regarding BENTO 4? Do you intend up-dating your Database chapter to include Bento 4 comments?
In the Database chapter you also wrote, “There is really only one choice as a replacement: FileMaker Pro, which is pretty well the industry standard.” Professionally speaking, do you still feel that way today?
Here's what I think. Looking toward the future and due to its age, there will be a task AppleWorks 6.2.9 simply will not be able to do for me. I believe the handwriting is on the wall. I will curse Apple Corporate for needlessly killing a great software program and giving us Bento-Crap, versions 1 through 4. Why bother with a Bento 4 trial period? There is uber-excessive, Bento 4 marketing hype vis a vis the AppleWorks 6 community. If  Bento is so great, why the hype?
Apple Corporate doesn't care about Bento. What's Bento's purpose ($49)? Why does it exist? Why has it been crap for so long? FileMaker is Apple Corporate's pride and joy. I have 2 choices, new versus old.
THE NEW: Is FileMaker Pro 11 ($299), database-over-kill for my purposes? What am I talking about? Basic Database 101: lots of text files, audio files (MP3), pictures and or, screenshots. I want to easily create: fields,customize  records, tab order, sorting, defining fields, font, size. Should I spend the extra dollars for the most current, up-to-date version of FileMaker Pro?
THE OLD: Can I save a few bucks and create a killer database with an older version of FileMaker Pro? For example, FileMaker Pro 10 or FileMaker Pro 9?  In the end, will the savings be worth it?
Respectfully yours,    Carl

Similar Messages

  • Flat File vs using final constants - which is better appraoch

    Hi
    i have a requirement where i have set some states variable.
    it goes like this:
    state A , some indicator A ,indicator B ,flag A : final state set to be set
    1 , true , A , 0 : Declined
    1 , false , B ,0 : PreDeclined...
    ...... like this i have some 20+ rows.. below 50
    since these are states .. this may increase.. but not frequently
    i would like to know which is best way to implement the above logic. My peer suggested to capture all that data as constants /hard code. I was thinking to store them in CSV and then read. but my peer was mentioning using I/O operations slows performance. can u please suggest me a better way ( not DB since its requires lots of permission etc..)

    thats interesting. can u please let me know how to use enums to fit my above requrement.
    i have used enums eariler where my requirement is just return descriptionstring to code. . ie.. is just only one constant.more over those enums are generated .. and they do correspond to a db table.
    but here what i want is a basically look up based upon 3 elements. and return 4 the element..
    i'm not sure on how to use enums for that.

  • Using File Browse to update stored file

    Hi all,
    I have a form with a File Browse item on it which is (surprisingly!) used to upload a file and associate with a record. The filename is stored in a varchar column in the table. This works fine when I create (INSERT) the initial record and I can retrieve the stored file just fine. However the problem I have is when I want to update the uploaded file. It seems the normal mechanisms for update / save requests don't apply to uploaded files. My other attributes get updated fine but the new uploaded filename is not reflected in the table.
    I've put together a simple example of this on a when apex.oracle.com :
    http://apex.oracle.com/pls/otn/f?p=40740
    Which has two fields, a file name and an 'attribute'. Try as I might I can't update the file name although the attribute changes just fine.
    Any suggestions will be much appreciated. I realise I may be missing something fundamental here and am more than happy to be enlightened.
    FYI, the purpose for such functionality is to allow users of our system to store a photograph of themselves along with their details. This functionality is required to allow the photograph to be updated if required.
    Thanks,
    Steve

    If i am not mistaking, using a file browser item type will not set the uploaded file (blob) in this item, to be processed in the standard processing on you're page.
    In a recent project i wrote a stored procedure for handling with uploaded files. This procedure, which based on the filename ( Fnnnn/<filename> ) , select the uploaded content through apex_application_files, the location apex saves the files. and procedure outputted the file as a blob, which then can be used to insert/update in youre table
    Hope this example code will help you:
    procedure upload_bestand( p_file_name in varchar2
    , p_file out nocopy blob
    , p_filetype out nocopy varchar2 )
    is
    -- Cursor voor bepalen bestand uit apex_application+files
    cursor c_file ( b_file_name in varchar2)
    is
    select aaf.filename
    , aaf.mime_type
    , aaf.blob_content
    from apex_application_files aaf
    where aaf.name = b_file_name
    r_file c_file%rowtype;
    begin
    open c_file ( b_file_name => p_file_name );
    fetch c_file into r_file;
    if c_file%notfound
    then
    -- Upload van bestand niet geslaagd
    close c_file;
    raise e_file_err;
    end if;
    close c_file;
    -- Geupload bestand uit temp_upload tabel verwijdern
    delete from apex_application_files
    where name = p_file_name
    commit;
    p_file := r_file.blob_content;
    p_filetype := r_file.mime_type;
    end upload_bestand;

  • Two problems with MP3 files for interactive PDFs

    1. I'm putting in two interview excerpts for an interactive pdf. Last week when I tried to import the first MP3, I got the "cannot place this file. No filter found for requested operation" error message. I don't know anything about sound files, so I just tried To MP3 from the App store, which converted my MP3 file to another MP3 file, I guess. The new file worked fine.
    I got the second file today and had the same problem. I sent the following urls (http://indesignsecrets.com/forum/general-indesign-topics/how-to-place-an-mp3-file-into-ind esign-cs5-which-was-edited-with-audacity-and-converted-with-switch, http://indesignsecrets.com/forum/general-indesign-topics/no-filter-found-for-requested-ope ration-mp3) I found that seem to describe similar problems to our sound guy at work.He tried lowering the bit rate, but it didn't do any good. So when I got home, I tried To MP3, and it solved the problem again.
    Does anybody know why this is happening?
    2. Once I had the first sound file in place, I wanted to replace the small gray box that Acrobat puts in. Bob Levine suggested
    http://indesignsecrets.com/hiding-sound-files-in-an-interactive-pdf.php
    which worked great, but I needed some way to control the audio. I tried a variation of Steven Werner's suggestions in
    http://indesignsecrets.com/hiding-sound-files-in-an-interactive-pdf.php
    It was working fine, when I had just a play and pause button, but when I added a resume, the play button just stopped working. I tried all sorts of variations, getting rid of the double actions in the buttons, starting new files, new buttons, but the play button just didn't work. In my last test, the play button worked, but only after I had pressed resume. So I am completely stumped.
    Any suggestions would be welcome. Thanks.
    I'm using InDesign 7.0.4, Mac OSX 10.6.8
    Chris

    OK, I should have thought more  before I answered.
    So I see that Media Encounter does import audio files but it only exports video. However, I did a test with making a video file from the MP3, importing that video into InDesign, reducing the video, using the multi-function buttons, and everything worked fine. I got the warning message that the "interactive elements are clipped in ways that PDF files cannot reproduce" but it didn't interfere with playing it back. Still, I feel as if I'm cheating and something is going to come back and haunt me.
    The disadvantage is that the video files are larger than the audio.
    Chris

  • File Browsing for Freaks (i.e. 'advanced users')

    I'm currently searching a simple, lightweight, shell-based file-browser. I'm not searching a file-manager, too much bloat in it. I don't want to manage my files through a file-manager, I prefer to use cp, mv, vi/nano etc..
    I just want a file-browser which I can use to browse directories on my system through an ncurses-based interface.
    It should just show me the content of a directory and give me a one-line CLI-Prompt at the bottom as the Midnight Commander does, so I can execute my commands (cp, mv, vi/nano etc..) directly from the file-browser
    Do you know ncmpc? Or cplay?
    I'm searching a file-browser with an interface which resembles the one ncmpc and/or cplay uses.
    If you know something like that what I'm searching, drop me a line.
    Last edited by azerty (2007-09-04 10:24:34)

    Gilneas wrote:Why not just run an mc-like ls after cd'ing?
    I use this: ls -l -a --color=auto -h -F --group-directories-first
    Which I have aliased to just l
    I played around with different tools in the last days and I found out some things which can be useful.
    Possibility 1:
    '~$: ls -l -a --color=auto -h -F --group-directories-first | w3m'
    In this case w3m is used as pager for displaying a directory's content.
    But one could also use 'more', 'less' or simply '~$: ls -l -a --color=auto -h -F --group-directories-first' without any pager.
    Possibility 2:
    '~$: w3m <path/to/dir>'
    By default this gives you a full dual panel view with browse-able ('click-able') directories, content listing and viewing (not editing AFAIK) the content of text files.
    You're even able to customize the panel-, format- and sorting-type by simply using 3 selection fields at the top.
    I think using w3m as directory pager and file viewer *could* be a compromise between the blank ls and a more powerful file browser.
    Possibility 3:
    '~$: lynx <path/to/dir>'
    More powerful than w3m with (at least) the same customization possibilities.
    Additionally you can specify a default editor (e.g. Vi, Nano etc.) in the lynx config, after this you're able to select a text file and [ENTER] to open your preferred editor and view/modify the selected file. Modify it, save, quit the editor and continue browsing your system with lynx. Lynx' capabilities go even further: You can create, modify (move/rename) and delete directories.
    Amazing, don't you think?
    Unix and its abilities to combine different tools for a specific task never ceases to amaze me.
    Last edited by azerty (2007-09-04 10:35:16)

  • Urgent.. How to open Particular folder direcly using File Browse tag

    Hi,
    I want to select a particular folder using file browsing option in html. why i want this is : i have to update the resumes located in a particular folder. so every time i am opening that folder which is a subfolder.
    ex: c:\dir1\dir2\dir3\Resumes
    Eveevry time , i have to go to C -> dir1->dir2-->dir3 then Reusmes
    what i need is when i click the browsing button, i want to get the Resumes folder directly. Is there any option to do that one by setting value to file tag.
    thanks in advance

    Hi venkatanarayanareddy (if that is your real name),
    You say you want to use file browsing option in html, which makes me guess this functionality is through a web page. Can you give us a bit more information about how this works as it's not abundantly clear how it relates to Java (JSP?).
    On another note (and I woke in customarily pedantic mood this morning), there's no need to post your e-mail address since [in the name of sharing the knowledge and not keeping answers to questions secret between the questioner and respondant] you will find responses posted here in the forum.
    Chris.

  • I cannot play mp3 file on itunes after i recover it from an external hdd

    hey guy'z i need a little help here
    i have a large mp3 file from an old 2TB which had a problem and then recovered and transfered to a new ext hdd.
    now after the recovery was done and i'm trying to play my music on the itunes it wont play
    any solution guys?
    and another thing is the wma file why i cant i play it also on my itunes?

    iTunes cannot play WMA files.  Use a conversion program such as Switch or EasyWMA to convert the WMA to MP3 or AAC.
    For your problem MP3, make sure it is a valid file by playing it in another player such as QuickTime.  If it plays there but not in iTunes, then it needs to be cleaned up with a program such as MP3 Validator.

  • How to create table with rows and columns in the layout mode?

    One of my friends advised me to develop my whole site on the
    layout mode as its better than the standard as he says
    but I couldnot make an ordinary table with rows and columns
    in th layout mode
    is there any one who can tell me how to?
    thanx alot

    Your friend is obviously not a reliable source of HTML
    information.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Mr.Ghost" <[email protected]> wrote in
    message
    news:f060vi$npp$[email protected]..
    > One of my friends advised me to develop my whole site on
    the layout mode
    > as its
    > better than the standard as he says
    > but I couldnot make an ordinary table with rows and
    columns in th layout
    > mode
    > is there any one who can tell me how to?
    > thanx alot
    >

  • Why is the audio file stop playing midway through a .mp3 file in Firefox and not in the IE browser ?

    I added an audio file on to my website, http://www.widescreenonlinereview.com/COMIC-REVIEWS.html. However, the mp3 file stop midway though the song, but the .mp3 file plays completely in the IE Browser.
    I tried update Firefox, but I lost some major add-on, which me caused to return to my present Firefox browser, and the .mp3 file still would not play completely in the updates browser either.

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • File Browse Page Item Layout

    Hi,
    I have a page with a file-browse item which I created with APEX 4.1: there's a "Choose"-Button on the right hand side of the file path. Now I created another page with a file-browse item in Apex 4.2 and it looks slightly different: now the button is named "Browse" and is on the left hand side of the file-path. I'm wondering how to influence the layout of the browse item. Is there a way to do this?
    Thanks,
    Stephan

    Hi Stephan,
    the button text and position is defined by the browser. It's not something APEX can control. Is it possible that you use a different browser now. If you have a look at your 4.1 app, does it still show "Choose"?
    Regards
    Patrick
    Member of the APEX development team
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Blackbery Link - browse pc folders and copy mp3 files not in music folder

    Hello to all of you
    I have music archives in different drives and pendrives
    It is not intuhitive at all how to browse local PC drives and or PC folders to select and copy single or many .mp3 files from the PC to the BlackBerry device.
    Please don't tell me that the silly solution is to move the mp3 files to the windows music folder.
    Additionally, i find really against an user friendly approach the BlackBerry Link in the music section. It doesn't allow to show the mp3 files names and use, manage and browse .mp3 files by their name, I see only
    - All the music
    - Album
    - Artists
    - Genres
    - Playlists
    well,
    - I have so many .mp3 files
    - they don't have all the mp3 tags
    - I see only an unfinished list which doesn't allow me to select the file I need, and I must scroll all of them every time
    A TOTAL NO SENSE in my personal opinion
    Anyway , from BalckBerry Link and from PC side, how to select one single mp3 file, QUICKLY, and copy it inside the BlackBerry device in the music folder?
    Thank you
    C0r

    Yes CRAZY!!! It is confirmed,
    trying to find a solution to this crazy behavior, I've turned to documents side.
    I've added my mysic folder to the documents and TA-DAAAH! The .mp3 files don't show!!!
    On the right panel a big string says "The folder doesn't contain supported files"!!!
    Well, looks like that BlackBerry Link leaks like the OS 10
    Anyway, if you can provide a solution that allows to copy mp3 files ID3-less (http://en.wikipedia.org/wiki/ID3), mean that none of the ID3 has been filled, thank you so much in advance.
    To BB Link developers, think about allow users to tranfer files as files and not as you arbitrary want, thank you.
    C0r

  • ITunes will no longer play nor add to the library any mp3 files which I have created by conversion from a wav file.

    I am running iTunes 10 on XP Pro and it will no longer play those mp3 files which I have created by conversion from wav files.  I tried to delete some from the library and then re-add them but iTunes will not add them back to the library.
    Can anyone help solve this, please?

    Back up your purchased music before you upgrade, I've read at least 5 cases where purchased music has just gone.....missing.
    That is not supposed to happen, didn't happen to me or thousnds of other iTunes users, but you don't want to be the 6th person, do you?
    There are two things to try before you upgrade:
    Barbara Hall, "Unknown Error (-208)" #1, 07:42pm Oct 19, 2005 CDT
    http://docs.info.apple.com/article.html?artnum=302478

  • "This file was created by Oracle Reports. View this document in Page Layout mode" , how to avoid this text

    we print some RTF Files , we dont want to  print to paper  this text "This file was created by Oracle Reports. View this document in Page Layout mode"
    How to able do it.
    Tanks for reply.

    we print some RTF Files , we dont want to  print to paper  this text "This file was created by Oracle Reports. View this document in Page Layout mode"
    How to able do it.
    Tanks for reply.

  • Is there a file browser which can play DVD contents from Time Capsule?

    Using File Manager (free Zheng) app I can reach all my files on the Time Capsule (3TB) from my iPad Air2 (64GB). Also I am able to play video content MP4. So far so good.
    However I have also several DVD VOB files of homevideo. These I can play on my iMac using DVD player or VLC.
    Is there a way to play the DVD content just as easy as the MP4 files do on my iPad? Most file browser do not support this.
    I have read a solution to perform it via a server via my iMac. However this is not to my liking.
    Should it be possible to re-direct a file URL to lets say VLC player like Stratospherix filebrowser can do?
    Is there a good file browser which can play VOB DVD contents?
    Can anybody help me before buying several apps and perform the trial and error method ?

    I'd recommend File Explorer (orange icon on the iOS app store) - find your NAS with it and try and play your media. It has a video decoder built in so should be able to handle your MP4s. If not, Plex is very good - but would require £2.99 and your Mac to be on when you wanted to watch on your iPad. Let me know how you get on.

  • Opening InCopy files in Layout Mode

    How do you set up a default to open all InCopy files in Layout Mode? (CS5)

    Without any document open, go into the Menu item "View" and select Layout Mode. From then on all files will open in that mode.

Maybe you are looking for

  • I have a new computer and lost my music. I have it on the ipod touch. How do I copy to that?

    I have a new computer and lost music. I dont have a itunes backup. I have my music and downloaded music from Apple on my ipod touch. How do I put it to the new computer and then continue the normal process?

  • LC ES4 form in Adobe Reader DC: "MS Office Outlook does not recognize ","...*

    I have a form created in Adobe Live Cycle Designer ES4 with extended rights leveraged in Acrobat Pro 11. The form uses an array to store a number of e-mail addresses. When a user selects a name in another field the e-mail address is 'subtracted' from

  • Opening file in PDF

    Does anyone know how to open a PDF file separate from the browser. I need the file to open in adobe, brand new window, not in the browser. I have this code which opens it in the browser, I just need it to open separate from the browser in adobe. _roo

  • Apps not showing up

    Did a fresh install of Lion left the computer on all day to install my previously purchased apps and a number of them have the 'installed' sign next to them but they are nowhere to be seen on my system. I've tried to re-download but can't because the

  • JMS Compliance Test

    Hello, How can I test JMS compliance for JMS providers? Can anybody give me a good idea to do JMS compatibility test for JMS providers? Do you know any JMS compliance test suite? Thank you for your any assistance! Sunill.