Audio streaming on the entire folio

We have a customer who is interested in the creation of a 'radio' function, where we would have audio stream through the entire folio. The desired effect would be that audio play continuously and without interruption on each page of each article.

I know that there is a way to read a local audio file across the entire folio. We have already tested which and it should work perfectly, but the customer would like the audio streaming on the internet because we cannot have the rights to incorporate audio files.

Do you know if there is a provision to do something like that Adobe DPS? We heard that it might be possible using a set more like managers of browser, but I was unable to find any documentation about it.

iPad only.

We do not support creation of audio and video streams using the DPS, creative tools for the moment. There is no way to do it with an overlay of web as the overlay will get deleted from memory once that your player moves to another article.

Neil

Tags: Digital Publishing Suite

Similar Questions

  • Master Volume Control / Mute button that controls the audio files on the entire Folio?

    Hi, is there is no way to create a Master Volume Control / Mute button that controls the audio files on the entire Folio?  We have individual pages with noise when the page loads and there is a mute option for these on each individual page to help

    There is no way to toggle all the sound elements through the application.

    Neil

  • How can divide you two audio streams to the speakers and the headphones, using two separate takes?

    I am currently using windows 7 and I want to have music that fate of my speakers then I have game sounds threw my helmet. I currently have Hd Realtek Audio Driver.

    Bumping an old topic.

    I also had this works with the Realtek HD Audio Manager.
    There is an option in the settings: "do front and rear output devices play two different audio streams at the same time."
    Check it and you're good.

    It worked!  Thank you!!  I thought that I should buy a 2nd card audio to accomplish this task.  Can't thank you enough.

    And for the person looking for the option, double-click the Realtek speaker icon in the status bar.  When the window appears look on the left side, click on the pinion (Advanced Settings feature) and you'll see the option right there in the middle of the screen.  Check the box, it will reload the audio driver and you will be ready to go!

  • Live audio streaming on the flash site

    Hello

    I'm new to Flash and I'm working on a web page using flash, the page itself is going to be pretty basic, but the situation in that I am is the following, we would like to but a stream live audio feed on the site and I can't find how to add that.  The server it comes is a Broadwave server, and it MP3 stream.  I wish the audio stream starts automatically when the web page is opened.  Any help would be greatly appreciated.

    You can build your own player, but if you are new to Flash, you might want to just incorporate or place a pre-built player on the Web page. For example:

    http://www.longtailvideo.com/players/JW-FLV-Player/

    or

    http://flowplayer.org/

    or

    http://ffmp3.sourceforge.NET/

    each player will have its own configuration config for autoplay etc.

    Best wishes

    Adninjastrator

  • 4th gen play multi audio stream at the sametime.

    Hello

    I have a weird problem with the video which was remuxed with ffmpeg which have both 2 channel and ac3 aac streams 6 channels being played at the same time, it's a common problem?

    Video playback on other devices as expected, i.e. play only a single stream.

    Welcome to the Apple community.

    I suspect that they are simply coded incorrectly, I have no issue with the compressor.

  • Buzzing when audio scrubbing in the timeline

    Hello!

    I have a problem with the ear-tickling for you!

    When I rub streaming audio in my editing panel, a hum occurs, and it will not stop until I have close Flash.

    I hear no audio streaming in the background and the sound does not change if I scub other FLAs or timeline positions.

    I know that he has isolated Flash because the noise of other programs continues to play very well and the hum stops only when closing the entire program Flash (not only the open project).

    Here's what I'm running:

    Adobe Flash Professional CC

    Version 13.0.1.808

    OSX

    Version 10.9

    Model name: Mac Pro

    Model identifier: MacPro5, 1

    Processor name: Intel Quad - Core Xeon

    Help me Adobe Wan Kenobi!  You're my only hope!

    -Victor

    The new update (version Flash Pro CC - November 2013) which has a fix for this problem is now available to you. This update of Flash CC will update your version of flash to 13.1.0.217.

    You can update the application Adobe Creative Cloud or Flash Pro CC help-> Update menu.

    You can find more information about the update: http://helpx.adobe.com/flash/using/whats-new.html

    Thank you

    -Reynaud

  • WTVConverter problem with multiple audio streams...

    The WTVConverter MSFT includes Windows 7 does not correctly handle multiple audio streams. The WTVConverter in the conversion of the format ".wtv' to '.dvrms' instead of keep the main audio stream retains the other stream audio visually impaired. Usually, he keeps the other stream audio visually impaired. NCIS and NCIS Los Angeles, CBS programs have this problem because they include signals SAP (accessibility for blind and partially sighted options)
    How can I tell WTVConverter to include only the main audio instead of the stream audio visually impaired
    Thank you
    Chandra

    Hello, Chandra

    If you think that there should be an option to select a stream when converting, you can leave your comments on the following link:http://mymfe.microsoft.com/Windows%207/Feedback.aspx?formID=195

    In addition, you can try searching for a free replacement program convert WTV files.

    David
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Detect when HTML5 audio stream started playing or failed to load

    I'm working on an application audio streaming using the HTML5 and webkit browser. I created an audio stream using code similar to the following:

    var = new Audio audio
    audio.setAttribute ("src", "url of feed to play here");
    audio. Play();

    I would like to be able to tell the user:

    (1) when the feed was loaded and gets ready to play. This is because the stream can take a long time to load and I want to inform the user that the application works.

    (2) when a feed failed to load. If the flow is interrupted for some reason, I wish to inform the user that something did not.

    Does anyone have any ideas on how I can do this?

    There are a lot of events and properties on the media items. For example, you can add an event handler for the 'mistake' to detect if the load fails. The 'loadeddata' event is raised when data is actually down. There is also an event of 'progress', but I have not much used. There is an event of 'game '.

    I'd be a little careful about the assumptions of State - for example I would not be surprised if the press started playing before being fully charged. Seems to me the type of optimization that someone might throw together

    So I threw the following test code.

    appstart = function() {
        var main = document.getElementById("main");
    
        var b = document.createElement("button");
        var t = document.createElement("div");
        var a = document.createElement("audio");
        b.innerHTML = "Play";
        b.addEventListener("click", function() {
            a.addEventListener("timeupdate", function() {
                t.innerHTML += "Played "+a.currentTime+" of " + a.duration + "";
            });
            a.addEventListener("progress", function() {
                t.innerHTML += "Progress";
            });
            a.addEventListener("load", function() {
                t.innerHTML += "Load";
            });
            a.addEventListener("error", function() {
                t.innerHTML += "Error";
            });
            a.addEventListener("playing", function() {
                t.innerHTML += "Playing";
            });
            a.addEventListener("stalled", function() {
                t.innerHTML += "Stalled";
            });
            a.addEventListener("loadeddata", function() {
                t.innerHTML += "Loaded";
            });
            a.src="long.mp3";
            a.play();
        },0);
        main.appendChild(a);
        main.appendChild(b);
        main.appendChild(t);
    };
    
    window.addEventListener("load", appstart, 0);
    
  • Audio separation of the video to a video file

    I used to use cs4 and when I had a video and dragged to the timeline you can right click and unlink the audio from the video.

    now I have cs5 and when I click on remove the link does nothing, is there another way to do it or at least somehow the mute in the video?

    Well I had just realized that first pro clings my audio files in audio fifth column. but it will not allow ma to move it to an audio, do you know how can I do this?

    This is due to differences in the number of lanes between your Audio stream and the other Audio tracks. PrPro requires that the number of channels match. See this ARTICLE for more details.

    Good luck and hope that is why you see, what you see.

    Hunt

  • Unable to read the audio stream: no audio hardware is available, or the hardware is not responding.

    my kids are always downloading music and other things on the internet and some without reason, I lost my sound that I get an error that there is no audio device found... or being used?  This was the last message according to test of microspft race driver and then tried to play something of my documents... Unable to read the audio stream: no audio hardware is available, or the hardware is not responding.  Can you help?  Bill

    (1) try reinstalling the audio drivers from the drivers disk that should
    came with your PC.
    (2) try to do a restore to the point where the problem wasn't there:
    Start > programs > Accessories > system tools > system restore
    (3) download and install the latest driver from the manufacturer's website.
     

    Best regards
    Singapore Web hosting

  • HTTP Live Streaming Audio MP3 in the Simulator 10.1

    Hello

    I'm working on an online radio application and I am very disappointed to see that the BB 10.1
    Simulator (10.1.0.1483) does not support the HTTP live streaming of multimedia files (MP3) M3U.

    I get the following message in the log of the device:

    MediaPlayer: prepare::Error attach the input source. URL: ""http://abc.xyzxyz.com:9156 / stream ', "
    error = UnsupportedMediaType

    and also when you try to navigate to the URL in the browser of the Simulator:

    The media file is from and not supported type or could not be loaded. It can not be played.

    I would like to know if the BB 10.2 Simulator supports HTTP live streaming of MP3 files, or do I have to buy a real device?

    Best regards

    burakk

    Hi @burakk,

    My apologies for the late reply. Unfortunately, for the OS versions on the market to date, support for media playback on the Simulator is very limited. This is mainly due to problems of codecs required license. There is a support very limited no playback video and audio (uncompressed audio files in the WAV only). In later versions of OS Simulator, we might have the software decoding - if that happens, your use case would be satisfied then.

    For a complete list of the formats supported on devices: https://developer.blackberry.com/devzone/develop/supported_media/bb10_media_support.html

    See you soon,.
    Rashid

    Applications development consultant | Relationships with developers

    BlackBerry @surashid

  • Sound preview audio stream starts beginning rather than at the current position in the timeline

    I have an audio stream which I'm doing an animation. After working for a while, especially later in the video (like 2 minutes or more). audio will not play at the position, I'm in the workspace and rather play early instead. It is therefore impossible to work efficiently synchronize audio animation.

    I tried with several computers and sound cards, and I get the same behavior.

    What is going on? Is this a known bug?

    Yes, it is a known problem in Windows. I have reason to believe that it will be corrected in the next update to Flash Pro. Don't know when this will be.

  • Audio stream OF Android to win 10 PC + Toshiba BT Stack

    First of all, I don't mean ways to listen to music from the PC to the tablet.

    I am looking for a way to play music, e-books, etc. that I have on my Tablet and hear it through the speakers connected to my PC.

    I'm used to be able to do this with a laptop running Windows 7 HP.

    In a previous life, a Windows XP box, I used the Toshiba Bluetooth Stack, so I thought I could give it a try. I downloaded a file, TC00636200A, which, after installation, tells me it's "Bluetooth Stack for Windows by Toshiba, Version v. 9.10.32 (T). I had to re-pair of my keyboard, mouse and tablet, and I can transfer files from the PC to the table and the tablet to the PC. If the basics seem to work.

    But how do the audio of the tablet to the PC and the speakers? I see a checkbox for 'Service to flow' Audio in the Panel settings of Toshiba BT and that looks promising, but when I hoover the mouse over it I get a message about how this allows the audio synchronization of the remote device service and something about a microphone? Hardly what I'm looking for.

    Someone at - it runing Windows 10 (Pro?) with the Toshiba BT Stack and is able to stream music from a phone or tablet to the PC?

    No answer seems to be coming. Guess I'll go ahead and uninstall the Toshiba stack. Good bye.

  • Audio skipping on the Satellite L350

    I have problems with the audio on my Satellite L350.

    I bought it in February & for the first two months, I had no problem, but more recently I've been doing audio stuttering/vibrations/jump on my laptop.
    It always happens to intervals of 5 minutes for a few seconds on all the sound elements of my laptop - CD, DVD, winamp, iTunes, Windows media player, Media Player VLC, audio stream of Web sites, tones of warning if they happen be awakened at 5 min interval.

    I've seen some suggestions about this problem online like updating my audio drivers (I tried that & it didn't work), close all unesscesary programs, listen to music when I am not connected to the internet & the cnnection wireless on my laptop is off - none of them have worked.

    If someone else has had this provblem & is there a solution for this?

    Hello

    Hmm, I've never had or heard of this issue. I have the Satellite L300, which is similar to yours and I can't view t no problem with sound I even often listen music.

    In any case, noticed the same problem with external speakers too? I mean if you can determine if the internal speakers causing this problem or something else.
    Check it!

    In addition, I would recommend updated the BIOS you can find on the Toshiba site.
    And what OS are you using? You use the factory settings or you have installed another Windows?

  • range poor when bluetooth audio streaming

    My Macbook 2015 beginning has brought very poor when audio streaming to bluetooth speakers. my laptop should be in 1-2meters for clear sound without interruption. the most and jump in and out sounds like and scratched old CDs. not in any wall or something just to work from one end of my room the other maybe 3 meters... I have a bar of his sony with streaming audio bluetooth and one pill of beats the range is compatible with the two speakers. If I use my iPhone 6 paired with the same speakers the beach is really good 6 + meters... I've already had the laptop replaced from jbhifi for this problem and the replacement is identical. have apple cheeped out on the inner workings of bluetooth on this model?   I was wondering if anyone else has similar problems of bluetooth with these new MacBook?

    No, my bluetooth works fine. I can even run around the House with my bluetooth headset. I could say, mine is 20 meters. Not sure, but I can go very far with it

Maybe you are looking for