Audio Player Control

I'm looking for a vcr control that will control audio
playback -- pause, rewind, or drag to a position midway -- that I
can use with an external audio file. The person viewing the
Captivate slide would be able to start, stop, or repeat sections of
the audio. Why? Our sales training uses audio examples that are
5-10 min long and we need to let the user control whether the
dialog plays and then skip around to review parts of the recording
at will.
I've puzzled through the Captivate 2 help file and figured
out how to let the user stop and start the audio. I can't find a
clue about how to let the user pause or skip around.
Any suggestions?

Hey, thanks for the tip. Sounds promising. I'll give it a try
and let you know.
Also, I've not described why I want to allow the user to
control audio, so it does seem an unusual need.
I'll use the Captivate Soft-Skills Sample that comes with the
application as an example. On the path between slide 10:Closing and
13:End insert a slide that lets the learner listen to three
examples of a sales person greeting a prospect . Oh yeah, while
they listen show a transcript of the conversation so they can read
along.
These three audio examples are not just snippets, like the
shopper's responses on slides 5-10. Instead they are a real life
conversation between an actual shopper and sales person. Suppose
the example audios are each 2 - 3 minutes in length, which is the
average duration of a real sales greeting. Ask the learner listen
to the greeting examples and then rank them into good, better, best
using a matching question or Likert scale or whatever.
In our experience the learner will want to compare the
examples by listening more than once, rewinding to a phrase or a
key point, etc. If they can't easily do so, they complain about the
inconvenience of always having to start from the beginning. Then
they unkindly mention the dvd remote control, adding "how hard can
it be?". I tell you, I'm tempted to suggest that the real problem
is lack of short term memory on the learner's part but we are
customer oriented, eh?
Finally, suppose that after a series of lessons in how to
sell, an audio example includes the entire sales interaction from
greeting to close. We use this a final integrative exercise in
preparation for certification by a panel of grizzled sales
managers. So now the length of each example is about 10 minutes.
Believe me, it's hard to sell someone enough furniture for an
entire room in 10 minutes and be close to realistic; but we manage.
Short audio is terrific. We use it all the time. Just let it
play as the movie unfolds and the user can jump to next slide or
back, if bored or confused. Captivate seems to be just the ticket.
But short audio doesn't match real life interactions. In our
world shoppers seldom say, "Oh really" and then stop so you can
supply the next step. Perhaps in the training but never in the
showroom. Extended audio is also required in our environment. If
for no other reason, I convinced our team to use it in integrative
exercises and we are most pleased with the results. It's just that
learners need to be able to rewind and jump around and I've got all
this audio recorded . . .
So, I'm evaluating whether we should migrate to Captivate,
which offers so many advantages, or look elsewhere. Again, thanks
for the advice and I'll update my tale of woe to let you know the
results.

Similar Messages

  • How do I get the remote control app to work for a Sony HDD Hi Res audio player?

    Can't get the iPhone remote control app to work for my HDD Hi Res Audio player.  The app can "find" the player and I can turn on the power with the app but then can't get it to go to my music - can only use the "demo" tool with the demo info. What am I doing wrong?

    Good day cb94!
    I'd like to see if I can assist you with the Hi-Res Audio player. Please provide us the model, use this link to verify the model: http://esupport.sony.com/ Thank you! - Paul

  • HTML5 audio player has no volume control

    I'm using FireFox 20.0.1 & get no volume control on html5 audio player?
    Is this broken in this version of FireFox?
    Is it due to the plugins/addons conflicting?
    Grateful for help & look forward to reply to get this fixed-thanks

    Volume Control in Firefox 11+
    This is an problem that has cropped up recently. Some of you may have noticed that the volume controls have disappeared from the audio player in Firefox 11+. True, you can mute it, and the volume controls are still controllable via the keyboard’s up and down keys, but the volume slider itself was removed due to two bugs. I assume this will return in the future, but for now, in case you were wondering what happened to them, it’s not your fault. (You can, of course, use the Media API to build your own set of custom controls.)

  • 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.

  • Audio player not working in Firefox 8.0.1 on Windows 7 64-bit

    Audio players, like the ones on this page, will not play in Firefox 8.0.1 on my Windows 7 Pro 64-bit machine. They play in every other browser, including Firefox 8.0.1 on my Windows XP Pro 32-bit machines.
    Any suggestions toward troubleshooting this will be greatly appreciated!
    Rob

    @ʇɐb ɹəuəllıʍ- See if you can duplicate this:
    On a win7 64-bit machine, running firefox 8.0.1:
    > Go to Control Panel\All Control Panel Items\Display.
    > Set dpi to 150%
    > Save
    > Open this page in Firefox 8.0.1
    > Click on any audio player.
    > Let me know if it plays.
    Thanks, Rob

  • Audio player problem !!

    Hey amigoses ^^
    I'm a little bit stuck again with this time trying to make a mere mp3 player !!
    Probabilly the most simple one !!
    I have a list view that will contain the music titles but again, nothing comes that esay ^^
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package audioplayer;
    import java.io.File;
    import javafx.application.Application;
    import javafx.collections.FXCollections;
    import javafx.collections.ObservableList;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ListView;
    import javafx.scene.control.Slider;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaPlayer;
    import javafx.stage.FileChooser;
    import javafx.stage.FileChooser.ExtensionFilter;
    import javafx.stage.Stage;
    * @author Minedun6
    public class AudioPlayer extends Application {
        ListView list = new ListView();
        Button btn_load = new Button("Load File");
        Button btn_play = new Button("play");
        Button btn_stop = new Button("Stop");
        Button btn_pause = new Button("Pause");
        ObservableList<String> array;
        FileChooser chooser = null;
        File file;
        Media media;
        MediaPlayer player;
        Slider longeur;
        @Override
        public void start(Stage primaryStage) {
            list.setLayoutX(210);
            list.setLayoutY(10);
            list.setPrefSize(160, 260);
            btn_load.setLayoutX(295);
            btn_load.setLayoutY(260);
            btn_stop.setLayoutX(50);
            btn_pause.setLayoutX(100);
            longeur.setPrefSize(150,10);
            longeur.setLayoutX(5);
            longeur.setLayoutY(50);
            btn_load.setOnMouseClicked(new EventHandler<MouseEvent>(){
                @Override
                public void handle(MouseEvent t) {
                   chooser = new FileChooser();
                   ExtensionFilter mp3 = new ExtensionFilter("MP3 Files(*.mp3)", "*.mp3");
                   ExtensionFilter aac = new ExtensionFilter("AAC Files(*.aac)", "*.aac");
                   chooser.getExtensionFilters().addAll(mp3,aac);
                    file = chooser.showOpenDialog(null);
                   String fi = file.getAbsoluteFile().toURI().toString();
                   String name = file.getName().toString();
                   list.getItems().add(name);
                    array = FXCollections.observableArrayList();
                    array.addAll(fi);
                    System.out.println(array);
            btn_play.setOnMouseClicked(new EventHandler<MouseEvent>(){
                @Override
                public void handle(MouseEvent t) {
                    media = new Media(array.get(list.getSelectionModel().getSelectedIndex()).toString());
                    player = new MediaPlayer(media);
                    player.play();
            btn_stop.setOnMouseClicked(new EventHandler<MouseEvent>(){
                @Override
                public void handle(MouseEvent t) {
                    player.stop();
            btn_pause.setOnMouseClicked(new EventHandler<MouseEvent>(){
                @Override
                public void handle(MouseEvent t) {
                    player.pause();
            Group root = new Group();
            root.getChildren().addAll(list,btn_load,btn_play,btn_stop,btn_pause,longeur);
            Scene scene = new Scene(root, 400, 300);
            primaryStage.setTitle("Hello World!");
            primaryStage.setScene(scene);
            primaryStage.show();
         * The main() method is ignored in correctly deployed JavaFX application.
         * main() serves only as fallback in case the application can not be
         * launched through deployment artifacts, e.g., in IDEs with limited FX
         * support. NetBeans ignores main().
         * @param args the command line arguments
        public static void main(String[] args) {
            launch(args);
    }I really tried to do something very simple but seems no !!
    And by the way, the pause button, when i press on it, it should only pauses the play but seems it's making the player stop not pause ^^

    Thx again !!
    For the images/text, i'll be trying myself to do something and i hope this time i'll do it without yur help !!
    As for the Mp3 Player, here is the code, would be nice of to see if there is something that can be added, perfectionized !!
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package audioplayer;
    import java.io.File;
    import javafx.application.Application;
    import javafx.beans.InvalidationListener;
    import javafx.beans.Observable;
    import javafx.beans.binding.Bindings;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.collections.FXCollections;
    import javafx.collections.ObservableList;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.Label;
    import javafx.scene.control.ListView;
    import javafx.scene.control.Slider;
    import javafx.scene.input.KeyCode;
    import javafx.scene.input.KeyEvent;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.AnchorPane;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.paint.Color;
    import javafx.scene.paint.LinearGradient;
    import javafx.stage.FileChooser;
    import javafx.stage.FileChooser.ExtensionFilter;
    import javafx.stage.Stage;
    import javafx.util.Duration;
    * @author Minedun6
    public class AudioPlayer extends Application {
    //Creating the GUI Form
        Button btn_play = new Button("Play");
        Button btn_pause = new Button("Pause");
        Button btn_stop = new Button("Stop");
        Button btn_previous = new Button("Prev");
        Button btn_next = new Button("Next");
        Button btn_load = new Button("Load");
        ListView list = new ListView();
        ObservableList array = FXCollections.observableArrayList();
        FileChooser choose;
        File file;
        Media media;
        MediaPlayer player;
        Slider status = new Slider();
        Slider volume = new Slider();
    //End of GUI
        @Override
        public void start(Stage stage) throws Exception {
            //Styling btn_previous
            btn_previous.setPrefSize(80, 30);
            btn_previous.setLayoutX(10);
            btn_previous.setLayoutY(330);
            //end of btn_previous
            //Styling btn_pause
            btn_pause.setPrefSize(80, 30);
            btn_pause.setLayoutX(100);
            btn_pause.setLayoutY(330);
            //end of btn_pause
            //Styling btn_play
            btn_play.setPrefSize(80, 30);
            btn_play.setLayoutX(190);
            btn_play.setLayoutY(330);
            //end of btn_play
            //Styling btn_stop
            btn_stop.setPrefSize(80, 30);
            btn_stop.setLayoutX(280);
            btn_stop.setLayoutY(330);
            //end of btn_stop
            //Styling btn_next
            btn_next.setPrefSize(80, 30);
            btn_next.setLayoutX(370);
            btn_next.setLayoutY(330);
            //end of btn_next
            //Styling list
            list.setPrefSize(280, 300);
            list.setLayoutX(500);
            list.setLayoutY(10);
            //end of list
            //Styling btn_load
            btn_load.setPrefSize(80, 30);
            btn_load.setLayoutX(600);
            btn_load.setLayoutY(330);
            //end of btn_load
            //Styling status slider
            status.setPrefSize(450, 10);
            status.setLayoutX(10);
            status.setLayoutY(290);
            //end of status slider
            //Styling volume slider
            volume.setPrefSize(100, 10);
            volume.setLayoutX(350);
            volume.setLayoutY(310);
            volume.setValue(100.0);
            volume.setMin(0.0);
            volume.setMax(100.0);
            //end of volume slider
            btn_play.disableProperty().bind(Bindings.isEmpty(list.getSelectionModel().getSelectedItems()));
            btn_next.disableProperty().bind(Bindings.isEmpty(list.getSelectionModel().getSelectedItems()));
            btn_previous.disableProperty().bind(Bindings.isEmpty(list.getSelectionModel().getSelectedItems()));
            btn_pause.disableProperty().bind(Bindings.isEmpty(list.getSelectionModel().getSelectedItems()));
            btn_stop.disableProperty().bind(Bindings.isEmpty(list.getSelectionModel().getSelectedItems()));
            list.setOnKeyReleased(new EventHandler< KeyEvent>(){
                @Override
                public void handle(KeyEvent t) {
                    if(t.getCode() == KeyCode.DELETE){
                        list.getItems().remove(list.getSelectionModel().getSelectedIndex());
                        array.remove(list.getSelectionModel().getSelectedIndex());
            btn_load.setOnMouseClicked(new EventHandler<MouseEvent>() {
                //Evenement associé au clic du bouton Load
                @Override
                public void handle(MouseEvent t) {
                    //Ajout des Filtres de choix !!
                    ExtensionFilter mp3 = new ExtensionFilter("MP3 Files(*.mp3)", "*.mp3");
                    ExtensionFilter aac = new ExtensionFilter("AAC Files(*.aac)", "*.aac");
                    choose = new FileChooser();
                    choose.getExtensionFilters().addAll(mp3, aac);
                    file = choose.showOpenDialog(null);
                    if (file != null) {
                        //Ajout à la liste pour stocker les titres chansons !!
                        String fi = file.getAbsoluteFile().toURI().toString();
                        String name = file.getName().toString().substring(0, file.getName().toString().lastIndexOf("."));
                        list.getItems().add(name);
                        array.add(fi);
            btn_play.setOnMouseClicked(new EventHandler<MouseEvent>() {
                //Evenement associé au click du button play
                @Override
                public void handle(MouseEvent t) {
                    if (!(list.getItems().isEmpty())) {
                        //player.stop();
                        media = new Media(array.get(list.getSelectionModel().getSelectedIndex()).toString());
                        player = new MediaPlayer(media);
                        player.play();
                        player.setOnReady(new Runnable() {
                            @Override
                            public void run() {
                                status.setMin(0.0);
                                status.setValue(0.0);
                                status.setMax(player.getTotalDuration().toSeconds());
                                volume.setValue(100.0);
                                player.setVolume(100.0 / 100);
                                player.currentTimeProperty().addListener(new ChangeListener<Duration>() {
                                    @Override
                                    public void changed(ObservableValue<? extends Duration> ov, Duration t, Duration t1) {
                                        status.setValue(t1.toSeconds());
            status.valueProperty().addListener(new InvalidationListener() {
                @Override
                public void invalidated(Observable o) {
                    if (status.isValueChanging()) {
                        player.seek(Duration.seconds(status.getValue()));
            volume.valueProperty().addListener(new InvalidationListener() {
                @Override
                public void invalidated(Observable o) {
                    if (volume.isValueChanging()) {
                        //le volume doit être divisé par 100 pour ressentir la dégradation du volume
                        //sinon ça passe trop vite
                        player.setVolume(volume.getValue() / 100);
            btn_next.setOnMouseClicked(new EventHandler<MouseEvent>() {
                @Override
                public void handle(MouseEvent t) {
                    if ((list.getItems().size() != 0) || (list.getItems().get(list.getItems().size() + 1) != null)) {
                        player.stop();
                        list.getSelectionModel().selectNext();
                        media = new Media(array.get(list.getSelectionModel().getSelectedIndex()).toString());
                        player = new MediaPlayer(media);
                        player.play();
                        player.currentTimeProperty().addListener(new ChangeListener<Duration>() {
                                    @Override
                                    public void changed(ObservableValue<? extends Duration> ov, Duration t, Duration t1) {
                                        status.setValue(t1.toSeconds());
            btn_previous.setOnMouseClicked(new EventHandler<MouseEvent>() {
                @Override
                public void handle(MouseEvent t) {
                    if ((list.getItems().size() != 0) || (list.getItems().get(-1) != null)) {
                        player.stop();
                        list.getSelectionModel().selectPrevious();
                        media = new Media(array.get(list.getSelectionModel().getSelectedIndex()).toString());
                        player = new MediaPlayer(media);
                        player.play();
                        player.currentTimeProperty().addListener(new ChangeListener<Duration>() {
                                    @Override
                                    public void changed(ObservableValue<? extends Duration> ov, Duration t, Duration t1) {
                                        status.setValue(t1.toSeconds());
            Group root = new Group();
            root.getChildren().addAll(btn_play, btn_previous,
                    btn_pause, btn_stop, btn_next, btn_load, list,
                    status, volume);
            Scene scene = new Scene(root, 800, 450);
            stage.setScene(scene);
            scene.getStylesheets().add(getClass().getResource("style.css").toExternalForm());
            stage.setTitle("Audio Player");
            stage.show();
        public void disableAll(){
            if(list.getItems().isEmpty()){
            btn_play.setDisable(true);
            btn_pause.setDisable(true);
            btn_next.setDisable(true);
            btn_previous.setDisable(true);
            btn_stop.setDisable(true);
        public static void main(String[] args) {
            launch(args);
    }

  • Flash Audio Player inserted via Dreamweaver

    I am looking for a flash solution to insert easily into a dreamweaver html page. I need a small audio player with a start and stop button. It should have a white background (no text). To work like the example in www.spolin.com/about.html
    I would like to have a flash plug in that allows me to insert into another webpage and use an FLV file or other audio format.
    Dreamweaver's player does not look good inserted into any webpage.

    This information and tutorial assumes I have knowledge of programming and flash pro. I have no knowledge of programming.
    Is there a tool or an existing simple player I can modify easily without knowing much about Flash Pro or programming?
    I bought Flash Pro because a tech support person from Dreamweaver told me I needed it in order to convert my flv to something that would work in Dreamweaver. I am only an intermediate user of Dreamweaver and Flash Pro is overwhelming in its capacity. I have no idea how to use it.
    The player included in Dreamweaver is terrible. It assumes the sound file must be played as a video and inserts a black default video screen with the player controls.
    There is no way to simply insert a play, stop button player using Dreamweaver's insert flv player.

  • Divx web player won't show me any player controls.

    I recently reinstalled divx on my macbook and now for some reason when i am streaming a divx video in safari there are no player controls. The video plays fine and when i double click, it was go to fullscreen. But it doesnt pause even when i push space bar. Any suggestions?

    Having the same problem with some but not all of my 15" and 17" core I5 and I7 macbook pros. All are based on the same image. The afflicted ones can run DVD Player with the 32bit kernel but not with the 64bit kernel. applejack seemed to fix two out of three of them, but on at least one of those the problem returned. When it doesn't work, the DVD Player is running and I can hear the audio, but the video is black.

  • Audio player strange behaviour

    I have a problem with the audio player of iBooks Author: when I arrive to the page that contains the audio file, the player looks for a moment like the one of Real Player (grey, with some controls). Then, it becames black, with only the play botton (grey). Is this a standard behaviour? Can it be fixed?!?
    Thanks so much!
    Pier83

    and i have the same problem
    качественные недорогие грузоперевозки Одесса украина

  • Customize Audio Player (html5)

    Is there a way to modify the appearance of the standard audio player in html5. I think it's too wide, too high and I'd like to change the color, so that it matches the website I use it in. Can it be done by changing css-specifications?

    The HTML5 audio/sound players are styled by the browser in which they are viewed.  IOW, there's nothing you can do to change its appearance except to change browsers.  Height and width of player is controlled by the attributes you set in the HTML code.
    When you need something less generic looking, step up to a commercial/3rd party player.
    Pickle Player
    http://www.pickleplayer.com/
    JW Player
    http://www.longtailvideo.com/jw-player/
    Flowplayer
    http://flowplayer.org/
    Nancy O.

  • Lacking sufficent privilges to make ITUNES the default Audio player.

    Never had any problems until updating to this latest version of ITUNES but it now gives me the "you lack sufficent privilages" message whenever I try to set ITUNES as the default player for audio files in preferances.
    I've set my permissions on MY DOCUMENTS/MY MUSIC and all sub-folders/files to full control for everyone and yet this problem persists.
    I have went into program access control and set ITUNES as default and it acts like it is setting it as default but when I open ITUNES it asks me if I want to set it to default player I check yes and it promply tells me I lack sufficent privilages to do so.
    I am of coure running as an ADMIN account.
    I am running XP PRO with all latest updates and patches
    SPYBOT S&D
    SpywareBlaster
    AVG anti-virus
    AD-AWARE SE
    COMODO Firewall
    I have tried changing things with all of the above security items turned off on 2 differant ADMIN level accounts and the result is the same...no joy
    My computer has Two ADMIN level accounts on it and a VISITOR account with limited privilages...could the limited Privilage account be causing a problem as it was added after my original install of ITUNEs (version 6.whatever) and was already installed on the computer when I installed the current upgraded version.
    Since ITUNES installs it's startup ICON in the ALL/USERS folder could the fact that the one account has limited privilages prevent allowing the change to be made on all accounts??
    If anyone has the solution please respond...this version should be called LOONEYTUNES cause that is where it is driving me!!

    It makes and keeps all the changes I make in preferances with the exception of making ITUNES the default audio player. The only solution or work around has been to go and right click on say a MP3 file select file/open with/select ITUNES check the box always open with this program box and then it will open the Mp3 files with ITUNES.
    It kinda gets what I want done I suppose, but I, like the Dyson vacuum guy on TV believe things "should work as they as supposed to".
    As yet ITUNES Ver.7 has been a disappointment, as long as windows XP has been around and as widspread as the usage of ITUNES is on windows platrom machines, IMHO there is no excuse for these kind of compatability issues.

  • Default Audio Player  Error - Is there a solution?!

    Hi,
    I've been checking in for quite some time to determine if there has a been a solid solution to the inability for some ppl to make iTunes the default audio player in Windows. Here's the exact issue error:
    On opening iTunes the following prompt appears:
    "iTunes has detected that it is not the default audio player for audio files. Do you want to make iTunes the default player for audio files?"
    Selecting "Yes" prompts the following error panel:
    "An error occurred while updating the default player for audio file types. You do not have enough access privileges for this operation."
    Here's some of the responses I've seen to this problem and my personal answers.
    1. Do you have full admin privleges? Yes.
    2. Do you have MS Antispyware disabled? Yes. It's actually not even installed.
    3. Do you have other virus protection software (Norton, McAfee, etc.) disabled when installing iTunes? Yes.
    4. Did you make iTunes the default player in the Control Panel "Set Program Access and Defaults"? Did you reboot? Yes.
    5. Do you have full write privileges to your "My Documents" folder or your iTunes music folder location? Yes.
    I've scoured the net and tried everything. So far I'm yet to see a concrete solution though I have seen many ppl complain about the issue. Anyone know of a solid fix or if Apple has addressed this? It's only with 6.x that this issue has popped up.
    I'd REALLY appreciate any insight (as it seems many others would as well).
    Thanks,
    Devin
    AMD Windows XP Pro SP2
    AMD   Windows XP Pro   SP2

    Thought I'd bump this one time since my original post was over the weekend and there hasn't been any response. Thanks.

  • A way to link to embedded audio player

    I am very new to this and am trying to add the audio (mp3)
    from a conference that my office held to our website. I wanted to
    have a list of the presenters at the conference to the left of my
    page with each name being a link to one embedded audio player on
    the right. Is this possible to do? I can figure out how to embed
    the player with a playlist and just have the viewer control it from
    the player but I would prefer to use a sleeker player that does not
    incorporate a playlist viewer - so the ability to be able to link
    multiple links to the one embedded player would be perfect.

    Search Google for "free flash mp3 player". There are many
    that you can
    incorporate.
    Alec
    Adobe Community Expert

  • Show quicktime player controls in Keynote for iOS?

    I am trying to build an interactive iPad presentation in Keynote, which is essentially a wrapper for hundreds of training videos. On the mac, you can pause and scrub through a video housed within a Keynote presentation but I do not see that option on iOS. Can anybody confirm this, or does somebody know a way to enable quicktime player controls on a video playing in Keynote?
    Thanks!
    Brian

    FOUND THE SOLUTION:
    I had this same problem and this resolved it for me:
    -Go to your "Settings" icon and click on the "General" tab.
    -About 2/3 way down the page you will see "Use side switch to:" - make sure "mute" is checked rather than "lock rotation."
    -Then make sure the side switch, located next to the volume toggle switch on the side of your ipad, is moved to the right (no red dot showing).
    My audio worked fine in embedded videos after I did those two things.  Hope it works for you.

  • Audio player bar not appearing in IE on pcs

    www.petergolding.net
    On this page I've embedded an MP3 audio file using Dreamweaver4. Originally there was no problem, but recently I've noticed on PCs at work and on the client's pc, both using IE, the audio player bar does not display and is replaced with a white cross on a red background and no indication of what to do. Now as I understand it I should possibly put a url in the properties directing visitors to down load the appropriate plugin. Problems here are as follows:
    I don't know what the appropriate plugin is.
    If I do put the correct url in, will visitors then get a prompt? Does it need to point to a specific page?
    Is there an alternative audio format or play method that would circumvent this issue?
    Thanks,
    Billy

    Well I take on board your comments about the code errors and will be rebuilding this site in the near future and hope to put those right. But at the moment I want to just address the issue of how to deliver an audio file to visitors. The media file was delivered as an mp3 file and following turorials on Lynda.com it did seem straight forward enough to just "insert>media>plugin". It's clearly not as straight forward as that.
    I would like to be able to present this audio with play control, in whatever format is best to avoid the need for visitors to download plugins.
    The <embed> tag is there:
    <embed src="media/01 Score Montage.mp3" width="634" height="24" align="top" border="0" controller ="true" autoplay="false"></embed>
    Billy

Maybe you are looking for