N86 Bug with Audio player

Hi everybody,
Being proud of my new N86 I put my 16 GB SD Card in (loaded with Music), startet the audio player and ... found 10 (in words ten) preinstalled songs, missing my 2000 and some own songs. Of course I performed an update of the Library beforehand. Obviously the Audio-Player does not recognize the external memory. Moreover, I copied some of my playlists into the sounds-directory of the built in mass storage, where the other 10 songs sit and which is named "e:". I do mention this because the path in the playlists is also e: - I used to take the very same sd-card in my nokia n82. the playlists should be correct. The playlists have benn found by audio player but audioplayer shows them as empty ... which is definitely wrong.
Any Ideas?
Cheers Tom
Solved!
Go to Solution.

Hi everone
My apologies for bringing up the old thread...but actually i have tried all the solution given the thread but none of them seems to be working.
1. I tried to refresh my media library but it did not add any new files. I formated the mass memory and tried again but it did not work.
2. I tried deleting mpd ad 'pcv' files. I tried deleting mpd ad 'pcv' files. As a result the mbile was able to identify only 127 media files as compared to probably the 500 that I have uploaded.
3. I checked my folders and files whether they have 'system' attributes but could not find any.
4. As a last resort I update the phone software, still to no avail.
Anyone please help me out....casue this problem totally sucks and this problem as well as this mobile is totally driving me crazy....
Thanks

Similar Messages

  • Bug with flash player 9,0,115

    Hi,
    I just changed my player Flash, and I updated it to the
    9,0,115.
    And now I cannot watch a video on youTube, or on others video
    player (on firefox).
    After 3 seconds the média stop.
    Do you have an idéa why I have this trouble, and do you
    have a solution to fix that.
    Thanks.
    Matt

    Yes, I tryed, and I still have this problem.
    I also desinstall flash player and reinstall the 9.0.45 flash
    player and I have no bug.
    But it's really weird to have a bug with the 115 and not with
    the 45, especially for a famous web site like youTube

  • Need Help with Audio player

    Hi i have this flash audio player which is great. The only
    thing is i want the music to play as soon as it loads. At the
    moment you have to push play to start.
    Thanks for any help.
    Carly

    That isn't a function of QuickTime Pro; it's only available in QuickTime X.
    (90840)

  • Can someone try to repeat a possible 5.1.1 bug with audio?

    I don't want to say it's a bug yet, but it's an issue that popped up after i updated to 10.4.7 and 5.1.1 from 10.4.6 and 5.1.
    The issue is with the audio mixer. I mix my audio on the fly, meaning I lay all my tracks, sots and VO's and then play through the TL with the mixer window open. I adjust the levels of the track while it's playing (non keyframing, entire clip level is adjusted).
    So I'll put my mouse on the fader, adjust the track while it's playing and let go. it'll hit the next clip and hold that level into that clip. if I hit stop and then play again, the level snaps back on #2 to where it is supposed to be (visual level and audiable level)
    Proper behavior is when FCP hits the second clip, the fader should pop to the proper level and be heard as such.
    In prior versions (4.5 and 5/5.1) this issue would only happen if I held the fader level in place past the end of the track.
    Steps taken to trouble shoot. FCP resuce, no diff. I tried this experiment with bars and tone, no difference. Also happens with imported music (48k). Stereo, mono, Linked, Unlinked all the same. Problem does seem to be slightly intermittant in working properly, the rest of the time it's not.
    If someone could try this out and let me know if they have the same behavior, that'd be awesome!

    Okay, Let's say I'm playing through the timeline. Clips 1, and 2 are both at 0db to start. While playing, I pull the level on clip 1 down to -20db and release the mouse. When it hits clip 2, the system will make the level on clip #2 also -20db which is incorrect, it should be 0db. When i stop and hit play again, the level jumps back to the proper 0db level.
    Does that makes sense.

  • Is this a bug in Flash Player or Flex?

    Compile and run this code (it is generated when you select New MXML Application) with FlashBuilder4.5:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
          xmlns:s="library://ns.adobe.com/flex/spark"
          xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
    <fx:Declarations>
      <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    </s:Application>
    If you are using IE, you will see a blue player control panel. But there should be nothing displayed because there is no
    visual components in the code above.
    If you are using FireFox, there is nothing displayed.
    Same behaves for mx:Application.
    I think it is a bug with Flash Player or Flex. How can Flex behave differently with different browsers?

    This is what I see in IE 9.0.8112.16421, but not in FF.

  • Audio player with some extra's - can't get player realized

    I try to build an audio player with some extra's like looping between 2 time marks.
    Till now i have an interface that can play back audio files but after that the problems start.
    There is no way i can add functions without creating a {color:#ff0000}NotRealizedError{color}.
    According to the documentation the start() method should realize (etc) the player, but it doesn't in my program and neighter does the method player.realize();.
    Can someone give me a hint to get me on the road again.
    Thanks in advance.
    Here is the complete code which generates the NotRealizedError on the dp.setRate(); method:
    (most of it is older source from a basic player on the internet).
    package dictaplayer;
    import java.awt.*;*
    *import java.awt.event.*;
    import java.io.*;*
    *import java.net.MalformedURLException;*
    *import java.net.URI;*
    *import java.net.URL;*
    *import javax.swing.*;
    import javax.media.*;
    public class DictaPlayer extends JFrame {
    private Player dp;
    private URI uri;
    private URL url;
    private boolean realized = false;
    public DictaPlayer()
    super( "Testing DictaPlayer" );
    JButton openFile = new JButton( "Open file to play" );
    openFile.addActionListener(
    new ActionListener() {
    public void actionPerformed( ActionEvent e ) {
    openFile();
    createPlayer();
    getContentPane().add( openFile, BorderLayout.NORTH );
    setSize( 300, 300 );
    setVisible(true);
    private void openFile()
    File file = null;
    JFileChooser fileChooser = new JFileChooser();
    fileChooser.setFileSelectionMode(
    JFileChooser.FILES_ONLY );
    int result = fileChooser.showOpenDialog( this );
    // user clicked Cancel button on dialog
    if ( result != JFileChooser.CANCEL_OPTION )
    file = fileChooser.getSelectedFile();
    try {
    uri = file.toURI();
    } catch (SecurityException e) {
    e.printStackTrace();
    // Convert the absolute URI to a URL object
    try {
    url = uri.toURL();
    } catch (IllegalArgumentException e) {
    e.printStackTrace();
    } catch (MalformedURLException e) {
    e.printStackTrace();
    private void createPlayer()
    if ( url == null )
    return;
    removePreviousPlayer();
    try {
    // create a new player and add listener
    dp = Manager.createPlayer( url );
    // blockingRealize();
    dp.addControllerListener( new EventHandler() );
    dp.start(); // start player
    dp.setRate(2);
    catch ( Exception e ){
    JOptionPane.showMessageDialog( this,
    "Invalid file or location", "Error loading file",
    JOptionPane.ERROR_MESSAGE );
    private void removePreviousPlayer()
    if ( dp == null )
    return;
    dp.close();
    Component visual = dp.getVisualComponent();
    Component control = dp.getControlPanelComponent();
    Container c = getContentPane();
    if ( visual != null )
    c.remove( visual );
    if ( control != null )
    c.remove( control );
    private synchronized void blockingRealize() {
    int teller = 1;
    dp.realize();
    while (!realized && teller <= 20) {
    try {
    wait(1000);
    System.out.println("not realized " +teller);+
    +teller++;
    } catch (java.lang.InterruptedException e) {
    System.exit(1);
    public static void main(String args[])
    DictaPlayer app = new DictaPlayer();
    app.addWindowListener(
    new WindowAdapter() {
    public void windowClosing( WindowEvent e )
    System.exit(0);
    // inner class to handler events from media player
    private class EventHandler implements ControllerListener {
    public void controllerUpdate( ControllerEvent e ) {
    if ( e instanceof RealizeCompleteEvent ) {
    Container c = getContentPane();
    // load Visual and Control components if they exist
    Component visualComponent =
    dp.getVisualComponent();
    if ( visualComponent != null )
    c.add( visualComponent, BorderLayout.CENTER );
    Component controlsComponent =
    dp.getControlPanelComponent();
    if (!realized) {
    System.out.println("not realized.");
    if ( controlsComponent != null )
    c.add( controlsComponent, BorderLayout.SOUTH );
    c.doLayout();
    }

    captfoss,
    Thank you for your comment.
    captfoss wrote:
    Start does realize the player, automatically, before it starts it... if it isn't realizing then it also isn't starting.Right, I thought so, but my test was wrong. I now tested it with getState() and I can see it's going from unrealized to realized.
    First off, you can only call setRate on a player that is realized but not started... further, any of the calls like configure, realize, start, stop, etc... are non-blocking calls...so you have to wait for them to finish before you go on to the next step.So you say that when the rate is changed (f.i. by a user in a gui) the program first has to bring player in non-started realized mode (stop + realize), call the setRate() and start the player again (on the exact position it was stopped)?
    The easiest solution would be to use Manager.createRealizedPlayer rather than Manager.createPlayer...Didn't find out yet why, but when i change this (only this), there is no playing.
    Also, ++teller++ is about the most-confused looking code I've ever seen...Just like all the asterisks, i now know that code changes when i toggle between the tabs (rich/plain/preview) in the message box.
    Beyond that, your "blocking realize" function doesn't appear to do anything except suggest you have no business coding anything this advanced. Your boolean value "realize" isn't ever changed, so, I'm not entirely sure what the point of that function is other than to wait 10 seconds.I got this somewhere from the internet. Thought it could help me realize the player, but it didn't (obvious) so i commented it out.
    Slowly I begin to understand the basics of JMF (at least i think so), but I also understand that there are other (Java) ways to build the application I need. Unfortunatly I have to little (hardly any) knowledge of all those (sound) API's (f.i. JLayer) to find my way through them and to decide which is the best for my use (user controled audio playback (at least WAV and MP3) with looping possiblities between 2 marked positions).
    If someone could give me an advise which API (method or whatever you call it) is best to focus on I shurely would appriciate that.

  • Using FMS v4.5.5 with a browser-based audio player running on iPad/iPhone

    Hello,
    I’m seeking some clarity/guidance on using FMS v4.5.5 (Streaming Edition) with a browser-based audio player running on iPad/iPhone (i.e. under iOS).
    Background
    I have a Microsoft Windows 2008 R2 Web Server running IIS v7.5 and supporting a website built using ASP.NET and C#. Parts of the website allow a visitor to play a selection of audio clips from our bespoke MP3 library. Due to UK music licencing constraints, we must stream the clip to the client browser – we must not download either part or all of the source MP3 file(s). We therefore had a custom audio player built for us some time ago using Flash/AS3. This has and continues to work very well, and uses RTMP to stream the clips from FMS to the client browser.
    As our site has become more established the number of visitors has steadily grown. In the early days the number of visitors from the iOS platform was relatively small but, last month, it had risen to 40%! As Flash is not supported on the iOS platform, this growing group of visitors are unable to fully maximise the benefits offered by the website, which I am now trying to address.
    What I’m Trying To Do…
    From what I’ve researched and read, I believe that FMS v4.5.5 supports HLS and I need to use this (instead of RTMP) over HTTP between FMS and the iOS Safari client. I have been experimenting with an Open Source player (JPlayer) and a commercial player (JWplayer) and appear to have these playing a MP3 file as a “progressive download” (I think that’s the right term) as all I’m doing is specifying the file path (no HTTP prefix etc.), i.e. the audio is not really being streamed as I require. Unfortunately, I’ve not found / worked out how to configure my FMS to respond to a path request along the lines of:
    http://www.myserver.com/live/audio1.mp3
    Hopefully someone reading this who is much more expert on FMS, HLS, HDS, HTML5, etc. than me can point me in the right direction!
    What I’m confused about…
    1) Can all my MP3 assets stay as is and still be streamed to the iOS Safari client? To the best of my knowledge, the key properties of my MP3 files are CBR, 44,100Hz, 320Kbps.
    2) If not, can they be converted on-the-fly by FMS or do I need to create additional audio assets to support HLS etc.?
    3) If I have to manually create additional audio assets, how do I do that (I’ve seen references to tools from both Adobe and Apple but not actually found the kits)?
    4) Some of the Adobe documentation I’ve read implies that FMS support for HLS etc. is only available when FMS is used in conjunction with the bundled Apache web server. As stated earlier, my entire site runs on IIS so does that mean to achieve what I want I’ll have to run two web servers on my physical server – IIS for the website itself and Apache for RTMP/HLS/etc.?
    5) What changes do I need to make to my current FMS configuration to get HLS to work? I’m sure someone has been here already and can enlighten me with their experience and hopefully point me to some straight forward documentation to follow!
    6) Lastly, and really part of (5), once I’ve got FMS configured correctly, what would be the typical path to a given MP3 audio file that I would give the iOS Safari browser to make this all work.
    I appreciate this is rather a lengthy first post but hopefully the background puts my questions (and confusion!) in context. Bottom line is… I simply want to be able to stream audio clips only (no video) to iOS Safari browsers from FMS v4.5.5 running on a Win2K8R2 platform with IIS v7.5, and with no audio content being stored (even temporarily) on the iOS platform.
    My thanks and appreciation in advance to anyone who can help me achieve this.
    Steve Barker
    Business IT Solutions

    Hi Apurva,
    Thank you for your reply. Unfortunately I am not much further forward, despite having read more Adobe documentation (FMS v4.5 Configuration and Administration Guide, FMS v4.5 Developer’s Guide) and trying different configuration options.
    First to confirm a point you made when answering point 4 yesterday. Yes, in my current RTMP scenario I have several MP3 assets (let’s call them Audio1.mp3, Audio2.mp3, Audio3.mp3, etc.) that are made available to a bespoke Flash/AS3 player via the LIVE application. I understand that as I purchased the Streaming Edition of FMS v4.5, a Flash-based player is restricted to using the LIVE application. You go on to say that I “publish” these assets to the LIVE application. I set this up a while back but do not recall having to “publish” anything. All I recall doing was to ensure that all the assets (the .mp3 files) were in a single folder and that the folder was identified by the <Streams> tag in the following file (example shown):
    Flash Media Server 4.5\applications\live\Application.xml
                    <StreamManager>
                                    <VirtualDirectory>
                                                    <Streams>/;C:\MP3Library</Streams>
                                    </VirtualDirectory>
                    </StreamManager>
    To the best of my knowledge, I didn’t have to do anything else to make the current solution work. Having read more of the documentation I am still none the wiser as to what I need to do (step-by-step) to “publish” my converted MP3 assets (see next paragraph) to the LIVEPKGR application. Please could you explain these steps to me by way of an example.
    WRT your answer to point 1 yesterday, I wish to clarify the exact output I need to create when converting my MP3 assets. Am I expected to produce a Audio1.aac file, or a Audio1.mp4, file, or a Audio1.m4a file, etc.? Or am I meant to be using ffmpeg (either directly or indirectly) with a much more sophisticated command line that somehow generates stream-rated info/files as well? An example of how you would use ffmpeg to convert one of my MP3 assets would be very much appreciated.
    Lastly, the coexistence of IIS and Apache (ref your answer to point 2 yesterday). That all made sense but given all the testing/changes I’ve been making I thought it wise to start afresh! So I completely removed FMS from my dev server and re-installed Flash Media Streaming Server v4.5.5 with the bundled Apache v2.2 server. When presented with the dialogue “Would you like for Apache to listen on port 80. If not FMS will be using port 80 instead.” I answered NO. When presented with the dialogue regarding FMS server ports, I entered 1935 NOT 1935,80 (should I have done that as the preamble makes reference to HTTP webserver proxy and HTTP Dynamic Streaming origin services?). I then modified the Application.xml file as described above.
    To test the new set-up, I did the following. First, the test environment…
    DEV Server
    Windows Web Server 2008 R2 SP1
    IIS v7.5
    ASP.NET v4.0
    Flash Media Streaming Server v4.5.5
    Apache v2.2
    IE v9.0
    Adobe Flash Player 11 ActiveX v11.5.502.146
    TEST Client
    Apple iMac (Intel)
    Mac OS X v10.6.8
    Safari v5.1.7
    Adobe Flash Player 11 Plug-in v11.5.502.146
    On DEV Server… launched IE and loaded the home page of my website, which has two elements on it – one to load/run our bespoke Flash player, the other to run JPlayer (configured to use HTTP). I selected our bespoke Flash player and it played a MP3 audio file. I verified this in real-time via the FMS Admin Console on the server.
    On TEST Client… entered http://192.168.20.250:8134 into Safari – it comes up with the FMS install completed / test your server page. In the middle of the video display area a black box appears saying “10000 OK” – I clicked OK. I then clicked HDS Single Bitrate – the video plays (Not Using Hardware Acceleration is briefly displayed). There is NO activity logged in the FMS Admin Console back on the DEV server under “live”, “livepkgr” or “vod”. I assume this is because I’ve gone straight to the Apache Server via the port reference – is that correct? Next I tried the HLS Single Bitrate – same results.
    The HDS Single Bitrate logs the following in the Apache access_log file:
    "GET /hds-vod/sample1_1500kbps.f4v.f4m HTTP/1.1" 304 - "-" "Apple Mac OS X v10.6.8 CoreMedia v1.0.0.10K549"
    The HLS Single Bitrate logs this:
    "GET /hds-vod/sample1_1500kbps.f4v.f4m HTTP/1.1" 304 - "-" "Apple Mac OS X v10.6.8 CoreMedia v1.0.0.10K549"
    "GET /hls-vod/sample1_1500kbps.f4v.m3u8 HTTP/1.1" 304 - "-" "Apple Mac OS X v10.6.8 CoreMedia v1.0.0.10K549"
    "GET /hls-vod/sample1_1500kbps.f4v.m3u8 HTTP/1.1" 200 816 "-" "Apple Mac OS X v10.6.8 CoreMedia v1.0.0.10K549"
    "GET /hls-vod/sample1_1500kbps.f4vFrag1Num0.ts HTTP/1.1" 200 1143416 "-" "Apple Mac OS X v10.6.8 CoreMedia v1.0.0.10K549"
    "GET /hls-vod/sample1_1500kbps.f4vFrag1Num1.ts HTTP/1.1" 200 873072 "-" "Apple Mac OS X v10.6.8 CoreMedia v1.0.0.10K549"
    "GET /hls-vod/sample1_1500kbps.f4vFrag2Num2.ts HTTP/1.1" 200 1591984 "-" "Apple Mac OS X v10.6.8 CoreMedia v1.0.0.10K549"
    etc…
    At this point I’m stuck once again since I’m not clear how to construct the JPlayer HTTP reference. You have suggested:
    http://192.168.20.250:8134/hls-live/livepkgr/_definst_/livestream/livestream.m3u8
    That produces the following in the Apache error_log file:
    [error] [client 192.168.20.4] File does not exist: D:/Program Files/Adobe/Flash Media Server 4.5/webroot/hls-live
    If I change the JPlayer HTTP reference to:
    http://192.168.20.250:8134/hls-vod/sample1_1500kbps.f4v.m3u8
    the audio from the video plays.
    Also, if I look in the applications\livepkgr folder structure there is only \events (with sub-folder _definst_ and sub-sub-folder liveevent) – there are no _definst_ , livestream , streams folders etc. So besides me not quite understanding the logic/flow here, I seem to be missing a few folders/files too! I’d be very grateful for any light you can shed on all this. Plus an example of what my HTTP string should ultimately look like; for example:
    http://192.168.20.250:8134/hls-live/livepkgr/_definst_/livestream/Audio1.m3u8
    Apologies for such a long reply but I’ve been at this for over 10 hours today! I feel I’m getting closer but clearly there are still some gaps and configuration errors.
    Thanks again for your time, support, patience and understanding.
    Kind Regards, Steve

  • Possible bug in flash player 9 with video..somewhat urgent help

    Hi,
    I was making a site based on heavy use of video. The site was
    working just fine, the videos played well, actionscript ok, etc.
    Last night I upgraded my flash player, and suddenly the site looks
    completely broken.
    Videos now have large pixels and they don't play right.
    I uninstalled flash player 9, went back to 8, and there they
    work ok again.
    Originally they had not the best quality to save bandwidth,
    but they looked just fine for the scope of the site. If I re-encode
    them to a higher quality, they look better in FP9 but we're talking
    about almost 60% more size to achieve what had been done correctly
    with flash player 8. No one seems to have this problem right now,
    but I think it is a major issue, cause not everyone is using 400kb
    to encode the videos. It must have something to do with the codec
    inside the plugin, they way it handles everything in low
    resolution.
    I have to say I tried everything: quality =high, embedded
    video, flv progressive, 100%quality to JPG when publishing, etc.
    The video looks bad ONLY with flash player 9. I am not allowed to
    publish the address but I think this might have happened to someone
    else too. please please any help appreciated, I'm on due date
    (everything was finished!) and now it cannot be uploaded like this.
    thanks a lot!!
    Indira

    Flash 9 is out of beta - d'oh!
    Anyway, I have a few video's published on the web. They are
    encoded at 400kb (medium quality/On2 codec). Check them out:
    http://www.lsac.org/lsac.asp?url=/VideoStreams/gettingthere/GettingThere.html&chapter=1
    That video looks the same on Flash Player 8 and 9 on IE and
    Firefox.
    I have no idea what is wrong with your videos, but there is
    no bug in Player 9 as far as I can tell.
    You have to publish at least one of your videos and it's url
    so that I can see the problem that you are describing.

  • How can i make audio player with osmf??

    i want to know how can i make audio player with osmf and flex4.5 ?

    Thanks again...I suppose I'd just like it louder in case the radio is on when the directions are given. The difference between the iPhone & Nokia is like night & day!
    BTW, do you know if the Maps program is using data from my cell phone plan as we drive? Or are the corresponding maps downloaded into the phone once for the trip?
    Thanks again!!

  • I recorded audio with Quicktime player and the sound files won't disappear from the desktop no matter how I try to put them in the trash...

    I recorded audio with Quicktime player and the sound files won't disappear from the desktop no matter how I try to put them in the trash...tried xing out the red x, putting them in the trash...right clicking to make them disappear...nothing works...

    Just got rid of them... I closed Quicktime and was asked to delete. So I deleted them. Problem solved.

  • Help with mediaelement audio player, iPad resizing, and lytebox.

    I'm a noob but trying to build my own site in iWeb and using Coda to edit code.
    I am a music producer and my website has a page on it that showcases some audio.
    I have 3 issues that after about 30 hours of research and fiddling...I can't for the life of me figure out.
    I am a music producer and my website has a page on it that showcases some audio.
    1. Lytebox - I am using a lytebox to open a page I designed (HTML page in iWeb) that has 2 links on it so the viewer can choose where they want to go. When said lytebox opens and one clicks one of the two links, the linked page will open within the lytebox. I dont want this. I want the lytebox to close and the linked page to navigate normally in a regular web page.
         After much research I have found a code that lytebox posted to be able to do such a thing. They posted this code:
              <a href="javascript:void(0)"
                      onclick="parent.$lb.end()">End Lytebox from my page inside Lytebox</a>
         I have pasted that code everywhere I can think of and it doesn't work. I'm not even sure where to post it (on the first page where the lytebox links from? on      the page that opens in lytebox? on the page lytebox is linking to?)
         Here is the page i'm referring to: http://dallaskruse.com/dallaskruse.com/dallaskruse.html
         The lytebox link is in the Gramophone at the bottom left of the page.
    2. MediaElement Audio Player - I am trying to build a page where I can showcase about 15-20 audio clips (about 20-30) seconds each.  It is very important to me to be able to hear/view this page correctly on multiple browsers along with tablets and mobile phones. Someone recommended medialement.js.
    After HOURS of trying to figure this out, I finaly found a way to add multiple players but not have them load the audio so as to not slow down the web page...and it just was simply not loading on an iPad.
    Here's my issue:
         I couldn't figure out how to design (in code) how to add text (song name, artist info, etc) that was to my liking in the HTML so I added the <audio> player via <HTML> and just added text around it in iWeb manually. Problem: iPad is somehow resizing the layout and by the time you get to the bottom of the page, the <audio> players have moved and are now covering up the text. Its all a big mess.
         Question: can mediaelement.js use a jukebox style playback?
         Here's a link to the page in question: http://dallaskruse.com/dallaskruse.com/arrangements.html
    3. MediaElement Not Playing Back on iPad - I've ran some tests and when I just have 1 <audio> player on the page, it'll play fine on the iPad. But when there's more than 1 player then none of the <audio> players want to work. I'm not sure what's going on but even after about 20+ hours of sitting at my laptop, I'm thinking of searching around for a jukebox that has HTML5 and Flash fallback that looks NICE and easy to modify for beginners.
    If ANYONE has ANY pointers or can help in ANY way ... I'd be forever greatful. Sorry for the long post.

    in iWeb, on the page in question, i've only got 2 HTML snippets (windows). One for the "Vocals" and one for the "Orchestrations".
    In the HTML snippet, I've coded in 12 players for the "Vocals" snippet and 10 in the other snippet for the "Orchestrations" players.
    So, I guess I only have 2 snippets.
    heres the "Vocals" code
    <!DOCTYPE html>
    <html>
    <head>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
              <script src="http://dallaskruse.com/mediaelement/build/jquery.js"></script>
              <script src="http://dallaskruse.com/mediaelement/build/mediaelement-and-player.min.js"></script>
              <link rel="stylesheet" href="http://dallaskruse.com/mediaelement/build/mediaelementplayer.min.css" />
    </head>
    <body>
    <div class="player"><p class="song"> Wade in the Water</p><p class="artist">performed by dallas kruse</p>
    <audio id="player1" src="http://dallaskruse.com/mediaelement/media/Vocals/wadevoxMASTERCLIP.mp3" type="audio/mp3" controls="controls" preload="none">
    </audio>
    <script>
    $('audio').mediaelementplayer();
    </script>
    <br/>
    <br/>
    <audio id="player2" src="http://dallaskruse.com/mediaelement/media/Vocals/45sMasterClip.mp3" type="audio/mp3" controls="controls" preload="none">
    </audio>
    <script>
    $('audio').mediaelementplayer();
    </script>
    <br/>
    <br/>
    <audio id="player3" src="http://dallaskruse.com/mediaelement/media/Vocals/4amBlues.mp3" type="audio/mp3" controls="controls" preload="none">
    </audio>
    <script>
    $('audio').mediaelementplayer();
    </script>
    <br/>
    <br/>
    <audio id="player4" src="http://dallaskruse.com/mediaelement/media/Vocals/sunshinevocalsMASTERCLIP.mp3" type="audio/mp3" controls="controls" preload="none">
    </audio>
    <script>
    $('audio').mediaelementplayer();
    </script>
    <br/>
    <br/>
    <audio id="player5" src="http://dallaskruse.com/mediaelement/media/Vocals/IllSayNothingVocals.mp3" type="audio/mp3" controls="controls" preload="none">
    </audio>
    <script>
    $('audio').mediaelementplayer();
    </script>
    <br/>
    <br/>
    <audio id="player6" src="http://dallaskruse.com/mediaelement/media/Vocals/ImOnYourSideVocalsMasterClip.mp 3" type="audio/mp3" controls="controls" preload="none">
    </audio>
    <script>
    $('audio').mediaelementplayer();
    </script>
    <br/>
    <br/>
    <audio id="player7" src="http://dallaskruse.com/mediaelement/media/Vocals/BenjaminOrchVoxMasterClips.mp3" type="audio/mp3" controls="controls" preload="none">
    </audio>
    <script>
    $('audio').mediaelementplayer();
    </script>
    <br/>
    <br/>
    <audio id="player8" src="http://dallaskruse.com/mediaelement/media/Vocals/MoonRiverVocalArr_2.mp3" type="audio/mp3" controls="controls" preload="none">
    </audio>
    <script>
    $('audio').mediaelementplayer();
    </script>
    <br/>
    <br/>
    <audio id="player9" src="http://dallaskruse.com/mediaelement/media/Vocals/justsouthvocalMASTERCLIP1.mp3" type="audio/mp3" controls="controls" preload="none">
    </audio>
    <script>
    $('audio').mediaelementplayer();
    </script>
    <br/>
    <br/>
    <audio id="player10" src="http://dallaskruse.com/mediaelement/media/Vocals/NewJerusalemVocals.mp3" type="audio/mp3" controls="controls" preload="none">
    </audio>
    <script>
    $('audio').mediaelementplayer();
    </script>
    <br/>
    <br/>
    <audio id="player11" src="http://dallaskruse.com/mediaelement/media/Vocals/RevolvingVocalsMasterClip.mp3" type="audio/mp3" controls="controls" preload="none">
    </audio>
    <script>
    $('audio').mediaelementplayer();
    </script>
    <br/>
    <br/>
    <audio id="player12" src="http://dallaskruse.com/mediaelement/media/Vocals/StopThis_Vocal Arr.mp3" type="audio/mp3" controls="controls" preload="none">
    </audio>
    <script>
    $('audio').mediaelementplayer();
    </script>
    </body>
    </html>

  • Trouble with native audio player

    Hi! recently I´ve been trouble with native audioplayer on my Ipod Touch 4 (64GB). When i chose the audio player from main menu screen, it changes to a blank screen (it seems as it is reading or something) but application does no starts and backs to main screen. I tried to reset de iPod many times as user guide recommends, but nothing happens: audio player does not work
    I purchased some audio players from appstore; first I tought that apps were the problem, so I uninstall them, but the problem stills; 2 hours ago I restart only "settings" on Settings / General / Restart (in spanish "Ajustes / General / Restablecer") and it seems to work but I'm not confortable with that.
    Is ther any I'm doing wrong? maybe I reached memory for Playlist,...
    Thanks!

    hai i have the same problem
    but if i understand it right  the problem is
    windows 8 / 8.1 /10 the have flash but it getting crippeld by some thing (anthore program i believe it was explorere 9 if i recall correct)
    didn't pay  to good attention .
    what we all three have to do is go to explorer and look up the previouse flash( so the wone we didn't install but was already on the os .
    then you have to delete this  .as well the wone you tried to install after you found out.
    then it's possible to install the new one .
    my os is win10 but has the same problem  the solution is as found after some hours reading
    i hope i didn't read for nothing.
    so i gonna try now
    good luk.
    greatings
    remko wijgman
    How do I revert to a previous version of Flash Player?
    forums.adobe.com/thread/1022066?tstart=0

  • Audio has ceased when at Amazon and with e-mails with audio attachments. This only during last few days previously O.K. Windows Media Player still working so no problem with speakers only happens with online audio. John

    Operating system Windows 7. A few days ago no problems with audio, clear sound when listening to e-mail audio attachments and Amazon music samplers. During last 2/3 days both attachments and samplers fail to work, but when playing music from library held in Windows Media Player no problems. This would appear to show no problem with speakers etc and I have not knowingly amended any audio controls.

    Thank you so much for replying.
    Yes I have removed and reinstalled WMP.
    I had good results with the PD6 application installed on the default path onto the C: drive with the one exception that if the application was launched by accident and the user data path was not available, the PD6 application would blow away my custom user path registry settings. Now that I know what they are I have made a .reg file to repair my registry to my desired user data paths.
    Installing the application on the removable drive appeared to help prevent me from launching the application by accident and overwriting my registry with default user paths.
    So which is the less of the two evils?
    If the application directory is not available, windows media player still tries to launch the .msi for installing PD6.
    If I install the application to the C: drive but the user data to the removable drive, launching the PD6 application without the user data drive will still corrupt my registry settings for a user data path.
    Both these issues seem like a logical (if not easy) fix that should be done in the PD6 application and installation package. I mean really, cannot anyone tell me why windows media player is checking the PD6 application directory? Why in PD4 did we have an option control for setting the user data path from the PD4 application? Why is this option not in the PD6 application, just the installer?
    I am given a choice during installation to move the user data to another non default location. Why else would this be provided if not to accommodate my kind of request to store the user data into an alternate location other than “My Document”. Certainly Palm is not trying to force the users on how to protect and store their personal data?
    Post relates to: Centro (Verizon)

  • Default audio player issue with ITunes 10.5.

    I recently downloaded the ITunes 10.5 update and it has permanently set ITunes as my default audio player.  It will not accept when I "uncheck" the ITunes as default player under the advanced options tab.  Does anyone know how to resolve?

    I don't know if this will work for you but this was an easy fix for me. At first, I sync like how I usually sycned my ipods etc. But I pressed the "sync" button in iTunes instead of it automatically doing it for me. It kept on doing step 1 of 3 and it finished really quickly, I knew there was something wrong with it. Nothing was synced to my iphone. I had to manually go to the "Music" tab of my device and select Sync Music, apply. It took a while but it actually worked. Again, I don't know if it will work for you, just give it a try. Other threads said I had to "restore" but I've never actually restored my iphone before so I was a little hesitant. You could try that if my method doesn't work.

  • Crash and restart while playing audio book with Media player

    Hi,
    I'm currently trying to play an audio book (approx. 4 1/2 hours length) ind m4b-format.
    This file plays well with iPod, SE K850i and iTunes on Mac.
    The file begins tp play properly on my Curve too.
    But when I try to go to some part of the book after around 3h or later (by using the scroll bar of the media application),
    I sometimes get a prompt telling me, that I'm using a invalid file format (though Media plays it from 0h on without problems).
    In addition, the Blackberry freezes, the LED on top lights red and the Blackberry restarts!! Wow!
    I can reproduce this with different audio books, all playing well on the other devices I use.
    The m4b files are creaated with Audio Book Builder and contain no DRM rights as they are not downloaded from iTunes Store or audible.
    I'm using a Blackberry Curve 8310 v4.2.2.176
    Micro Edition Media Version 1.1 
     Allthough I think that my curve should crash while playing a simple audio book, I would even be gladif you could lead me to a third-party software which supports audio-books properly, so at least I can
    hear my Audio books while there is no patch for the curve available which solces the problem natively. 
    Allthough I think that my curve should crash while playing a simple audio book.
    Thanks for any help in advance.
     CU
    elwood070 

    elwood070 wrote:
    I'm currently trying to play an audio book (approx. 4 1/2 hours length) ind m4b-format. 
    You are talking about a specific audio file format : m4b. It stands for "MPEG4, Part 14", which is not currently supported by the Blackberry Curve. The list of supported file formats, including mp3 and "MPEG4, Part 2", is available here :
    Supported media files
    I don't know if there is a Blackberry application that can read that m4b format. You can, on your PC, convert the m4b file into a regular mp3 file, then transfert the mp3 file to your blackberry. There are many free tools to do that, I'll give you one : LameDrop. Its a small square, you drag'n'drop your files on it et voilà.
    LameDrop
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

Maybe you are looking for

  • Can't open/place files in other programs

    I can't open or place Illustrator files in InDesign or Photoshop, and vice verse, unless I save them as pdf's first. I'm pretty sure I used to be able to open and place any file in any program without making them pdf's. Any ideas?

  • No Pro because Player won't install

    I've just bought QuickTime Pro. Unfortunately I hadn't installed the QuickTime player before purchasing. Now I find that the player won't install: it looks for the QuickTime.msi file so that it can uninstall a previous version of the player, but the

  • BPM flow Proxy to File and then Acknowledgement back to Proxy or JDBC.

    hi All, I have to create an BPM scnario to get acknowledgement from receiver file adapter. Steps created in BPM are: receive -> send (Transport Acknowledgement is selected) as per blog /people/michal.krawczyk2/blog/2006/06/22/xi-playing-with-the-file

  • Calling report through URL

    Hi, How to call a report through a URL?. If there are more than one bind parameter in the report ,how the values for each parameter to be supplied through the URL and what should be separating character b/w parameter values (is it ',' or '&' or somet

  • IWeb 2.01 - does publish empty pages

    I have just updated from a dual G4 to a MacPro. It came with iWeb '08. Previously I was using iWeb '07 (v1.x). I can see all pages just fine, but when I publish it to DOT-mac the content is missing. All I can see is a message "Blog Summary Widget" on