Flash CC "stream" mp3 clip starts from beginning, regardless of current frame

I have an mp3 set to "stream", it's 25.7 seconds long, 41.1k, 16-bit, mono. "Stream" works fine when I scrub through the timeline by mouse, but during playback, the clip always start from the beginning, so it is out of sync unless I start from the first frame. How can I fix this? It makes the program much less usable for lip-sync.

I do see a bug logged internally for this. However since this is inconsistent repro, it will be great if you can PM me the test file that shows this problem.
-Sujai

Similar Messages

  • Mountain lion download is very slow and in-between it hangs of and starts from beginning. Is there a solution i have already purchased it can i download a torrent and authorize it

    Mountain lion download is very slow and in-between it hangs of and starts from beginning. Is there a solution I have already purchased it can I download a torrent and authorize it. Somebody pl. Help

    Exactly. Some of us don't understand the situation in India. This is a country with sickest internet speeds. The internet segment is dominated by fraudulant companies. There is no consistency that is why most of the data transfer here is through Pen drives and torrent websites. We have never seen a good downlooad speed here. And on the top of inconsistency lies the Mac book Air without a built in RJ45 port.
    If i have to do it in an internet cafe it will cost me more time and money than to purchase a Mac book air itself. Apple should start giving us software loaded flash drives at least at premium.

  • Can't download mountain lion from app store, shows error message: retry/cancel and starts from begining

    can't download mountain lion from app store, shows error message: retry/cancel and starts from begining,
    I alreasy paid for it
    Can I get a direct download link other than from app store

    Try opening the Terminal utility in your system and running the following command to open the system's caches folder:
    open $TMPDIR../C
    Then locate and remove the folder called "com.apple.appstore" and then try relaunching the App Store and downloading the installer again.

  • Rollover 18 weeks starting from week number of current month

    Hi,
    I have a requirement as described below.
    Table Name Time:
    Columns: Fiscal Year, Fiscal Month and Fiscal Week
    above table has join with sales table and it contain sales data on week basis. so least granularity of data at week level.
    we have a report with columns fiscal year, actual sales and forcast sales. our requirement is to filter the data with following criteria.
    Current Month Filter
    Jan fiscal week between 1-18 of current year
    Feb fiscal week between 5-23 of current year
    March fiscal week between 9-27 of current year
    November fiscal week between week 44 of current year and week 10 of next year
    December
    so with above requirement we need to filter data with rollover 18 weeks starting from week number of current month
    I tried with timestampadd(sql_tsi_week, interval, week) but it's not working as I expacting. Please provide the code/logic to get it done.
    Appreciate your help.
    Thanks
    Jay.

    Jay wrote:
    I need to get rollover 18 week data at anypoint of time starting with week number of 1st of every month to 18 weeks. read my question again and you will be able to understand.You're kind of missing the point to be honest. It's very hard to answer specific questions without the required information. To answer a question like this we need a minimum of:
    1. Oracle version
    2. Sample data (CREATE TABLE / INSERT statements)
    3. Expected output
    4. Explanation of business rules.
    Alternatively, you can read the link in my original response.
    Please provide the required information and someone can help.

  • [Bug] Playing stream audio from the editor almost always starts from beginning.

    Whenever I am creating a movie clip with an audio layer set to "stream" I usually click certain points of the movie and hit enter to see and hear it. In Flash CC however, it seems about 95% of the time no matter what frame I am on when I hit enter the audio starts from the beginning and is not in sync. There have been a few cases in which the audio started at right frame but I haven't yet been able to isolate the process. Audio works great in the exported SWF, this issue is just just with the editor.

    This bug still hasn't been fixed. I don't recommend Flash for any animator; the issue makes syncing to music and vocals extremely frustrating. This bug has been around for months without solution.
    Running as administrator does not solve the problem.
    You will have the audio bug even if you do not have a Beats Audio Soundcard.
    The longer and more complicated your project, the more frequently the bug happens. When it first begins (around 15-30 seconds worth of frames and about 7 layers) you can make the audio stream as it should by clicking your audio track, setting it to "stop," saving your project, and setting the audio to "stream" again.
    However, when you have about 60 seconds on your timeline, the bug happens a lot more, and you have to actually close the project to get the sound to work again if you do not have the patience to wait for it to fix itself. The wait ranges from 30 seconds to several minutes to never fixed until you close. It's highly unpredicatable. Sometimes it is not enough to close the project, in which case you must quit Flash and start it up again.
    It happens with both mp3 and wav sounds.
    After a month of this bug, I still can't pinpoint what causes it. It's completely random.
    This post suggests it has something to do with scrubbing the timeline. I haven't been able to replicate the bug by doing this. It happens whether or not you use the slider or just click on frames to navigate.
    My system specs:
    Windows 7 Home Premium (Service Pack 1)
    64-bit operating system
    Processor: Intel i5-4670K CPU @3.40 GHz
    RAM: 8 GB
    NVIDIA GeForce GTX 660 Graphics Card
    Audio is also NVIDIA High Definition Audio
    The bug happens even if I plug in headphones to a regular audio port not on the graphics card.
    Other audio types I have are the Intel Display Audio and Realtek High Definition Audio. I've tried messing with audio settings to no avail.

  • MLB on Apple TV not starting from beginning of live game when Play is pressed

    I have an Apple TV 2nd Generation and have been using the MLB.tv app.
    Only compalint:  When I select a game, Apple TV tells be to press Select to play live and Play to start from the beginning.
    However, when I press play or select, I am taken to the live game, which is a drag.
    Anyone experiencing the same problem?

    Hi christoph, this is one of those headbangers.
    the AAC and mpeg or exported as mp3 files both do it, which yes, is totally weird.
    So, i can get the context menu, right clicking or cntl click, but what option is there to set it to new, as you suggest.
    Thanks for your efforts
    :)c
    Hey, brother
    I just got the solution in another forum. fascinating.
    see the link http://forums.macrumors.com/showthread.php?p=7191871#post7191871
    its about the "remember playback position" checked in the individual track options in track info.
    Nice one.
    Auf Wiedersehn.

  • Start from beginning in a Thread

    Hello!
    I have some problem of starting a Thread again when I have stoped it. The thing I want is that I want to start a Thread, then stop it and after that start the Thread from begining, and I can not use resume/suspend because the Thread should need to begin just after run. For example
    Class hello extends Thread
         run()
              // do something....
         main
              hello h=new hello();
              while(1>0)
              if(.....)
              h.start();
              if(.......)
              h.stop()
    Because of the while these if can happen many times and h will be stopped and started many times. But after I have stoped it once then when I try to start it, it wont start.
    I have solved this problem by making new Threads like h, h1, h2..... all the time but is there a way to do this with only one name of the Thread. And that when it is started then it should start from the beginning of the run.
    Regards
    Tomas

    Don't use stop():
    It was deprecated.
    "This method is inherently unsafe. Stopping a thread with Thread.stop causes it to unlock all of the monitors that it has locked (as a natural consequence of the unchecked ThreadDeath exception propagating up the stack). If any of the objects previously protected by these monitors were in an inconsistent state, the damaged objects become visible to other threads, potentially resulting in arbitrary behavior. Many uses of stop should be replaced by code that simply modifies some variable to indicate that the target thread should stop running. The target thread should check this variable regularly, and return from its run method in an orderly fashion if the variable indicates that it is to stop running. If the target thread waits for long periods (on a condition variable, for example), the interrupt method should be used to interrupt the wait."
    You can use wait() and notifyAll() inside synchronized block.

  • How to get the date starting from 1 to the current date from the system dat

    Dear all,
    Please tell me how to get the date starting from 1 based on the system date
    and it should come with respect of time also.
    example.
    suppose today is 6 Dec, 2006
    so ABAP report should find the 1 dec. 2006.
    Please help me as soon as possible.
    Regards,

    concatenate sy-datum0(2) '01' sy-datum4(4) into v_firstdate.
    or yo ucan use the fm:
    HR_JP_MONTH_BEGIN_END_DATE
    usage:
        call function 'HR_JP_MONTH_BEGIN_END_DATE'
             exporting
                  iv_date             = sy-datum
             importing
                  ev_month_begin_date = gv_begda
                  ev_month_end_date   = gv_endda.
    Regards,
    Ravi
    Message was edited by:
            Ravi Kanth Talagana

  • ITunes U forgets where I stop last time, and always starts from beginning of the audio/video

     

    This bug still hasn't been fixed. I don't recommend Flash for any animator; the issue makes syncing to music and vocals extremely frustrating. This bug has been around for months without solution.
    Running as administrator does not solve the problem.
    You will have the audio bug even if you do not have a Beats Audio Soundcard.
    The longer and more complicated your project, the more frequently the bug happens. When it first begins (around 15-30 seconds worth of frames and about 7 layers) you can make the audio stream as it should by clicking your audio track, setting it to "stop," saving your project, and setting the audio to "stream" again.
    However, when you have about 60 seconds on your timeline, the bug happens a lot more, and you have to actually close the project to get the sound to work again if you do not have the patience to wait for it to fix itself. The wait ranges from 30 seconds to several minutes to never fixed until you close. It's highly unpredicatable. Sometimes it is not enough to close the project, in which case you must quit Flash and start it up again.
    It happens with both mp3 and wav sounds.
    After a month of this bug, I still can't pinpoint what causes it. It's completely random.
    This post suggests it has something to do with scrubbing the timeline. I haven't been able to replicate the bug by doing this. It happens whether or not you use the slider or just click on frames to navigate.
    My system specs:
    Windows 7 Home Premium (Service Pack 1)
    64-bit operating system
    Processor: Intel i5-4670K CPU @3.40 GHz
    RAM: 8 GB
    NVIDIA GeForce GTX 660 Graphics Card
    Audio is also NVIDIA High Definition Audio
    The bug happens even if I plug in headphones to a regular audio port not on the graphics card.
    Other audio types I have are the Intel Display Audio and Realtek High Definition Audio. I've tried messing with audio settings to no avail.

  • End of clip play from beginning.

    When playing the last clip to the end... it jumps to the very beginning and starts playing from the very beginning.
    What is the trick to turning off this feature?
    Thanks Marv.

    I've had similar in other Adobe programs recently. In PS the All Caps button kept getting turned ON in the Character Palette. I have never used it, and took a moment to sort out what was happening. Within the week, three others had the same problem in PS. At least I had the quick answer. All swore, like me, that they had never touched that button. Phases of the Moon?
    Glad Colin helped you out. Now we all know to watch out for the "phantom button pusher!"
    Hunt

  • Exported audio tracks are not starting from beginning of track

    I have GB '08.
    I export recorded podcasts (i actually make language learning CDs using an external mic) so each track ends up at between 20 sec or say 2 mins, to an Itunes playlist. I may play a track, and then click on another, by double clicking as is usual in itunes to start a new track, EXCEPT that it starts the new track at the place it was last time when it was played, even if it is its first time played in itunes, but was listened to some point whilst in garage band.
    so the tracks dont start at the beginning of the track but rather where they were left off when last listened too. This happens also on my ipod with those tracks and i have to manually drag a track's progress bar back to the beginning to hear it from its start.
    This is a disaster for my product. Is it a bug or is it a setting? Please help urgently.
    Many thanks, Craig

    Hi christoph, this is one of those headbangers.
    the AAC and mpeg or exported as mp3 files both do it, which yes, is totally weird.
    So, i can get the context menu, right clicking or cntl click, but what option is there to set it to new, as you suggest.
    Thanks for your efforts
    :)c
    Hey, brother
    I just got the solution in another forum. fascinating.
    see the link http://forums.macrumors.com/showthread.php?p=7191871#post7191871
    its about the "remember playback position" checked in the individual track options in track info.
    Nice one.
    Auf Wiedersehn.

  • Audio will start from beginning midway?

    When I put a video into the project area and then drag into the Sequence the video will start to play normally and the audio is in sync. But for some reason at 3 minutes and 43 seconds, the audio will jump all the way back to the beginning but it will still show that it is playing the same track. I have played the video in regular windows media player and there is no issue, it only happens in Premiere. Does anyone have any idea how to fix this? I've tried recreating new sequences from the clip and it keeps happening... thanks for any help!

    I have this problem as well but it is intermittent. Sometimes it restarts where I ended. I can not figure out what is different between the situations though. It seems that this must just be a bug in the software. Hopefully it will get fixed because, I agree, it is terribly annoying. I've learned to use the screenshot function to capture my position.

  • Flash Player 10.1 crashes accessing streaming MP3 from FMIS

    We used Flex Builder 3 to build a Flash-based streaming MP3 client which connects to FMIS.
    The client can be seen at www.radiospirits.com and click Listen Now at top-right of page.
    It has worked flawlessly for as long as we've had it, until now.
    As people upgrade to Flash Player 10.1, we are seeing many complaints of it actually locking up and crashing the browser.
    We have been able to reproduce this problem in Windows IE 8, as well as Mac Safari, and have had reports of crashes in other browsers and OSes.
    Rolling back to Flash Player 10.0 or earlier fixes problem.
    Using FMIS 3.5.4

    Hi, The only general information that I could give you is to try turning off the hardware acceleration feature, which is turned on by default. You right click any video, Settings, Display Settings and UN check the H.A. It has also been recommended to update the graphic and video drivers to the latest versions. If that doesn't work, then there is some other conflict on the system. Anti-Virus and or add ons in the browsers(s) Now this is assuming that Flash Player is Installed correctly, along with the IE and non-IE browsers that Flash Player supports.
    This site explains the hardware acceleration:
    http://www.macromedia.com/support/documentation/en/flashplayer/help/help01.html
    Hope this helps.
    Thanks,
    eidnolb

  • How to limit streaming bandwith using Flash media streaming server

    Hello,
    We have recently designed our audio streaming player
    (designed in Flash) to stream mp3 content using FMS rather than
    progressive download. Our goal was to reduce the waste of bandwidth
    which occurs with progressive download - in cases where the player
    loads the song and only a few seconds are heard, though the entire
    song file is downloaded to the client computer which wastes
    bandwidth. We thought using FMS and streaming the mp3s using
    rtmp:// protocol would reduce our bandwidth usage.
    However this has not happened. Our bandwidth is slightly
    lower but not significantly so. Seems like FMS is also downloading
    the entire song even though a listener maybe only a few seconds
    from the beginning of the song. The bandwidth charts are
    essentially the same as compared with progressive download which
    was simply using
    http:// with the mp3 content on a web server.
    Does anyone have any suggestions of how we can make changes
    to FMS in a config file or console where we can set the streaming
    server to only download a few seconds beyond where the player is
    listening? It just seems like we are at no advantage with FMS in
    terms of decrease in bandwidth which was our major reason to go
    forth with this technology.
    Any suggestions would be greatly appreciated.
    Thanks,
    MD

    ...........ok perhaps I wasnt clear in my original post.
    I get that the 4g connection is going to use the best possible connection speed which will essentially stream the video inside the app in HD. 
    This uses a considerable amount of data.
    I'm wondering if there is an app out there that will let me control the streaming speed, throttle if you will, the speed of the connection so that i dont burn through my entire months data usage (12GB's) by watching 2 games.

  • Archive start from sequence=2...

    Hi All,
    After completion Database (10g) installation on solaris machine , check the sequence number from v$log view as shown below : it display sequence 2 is current and archive is also start from sequence 2.(check this archive files manually from log_archive_dest_1's location.)
    but when we are looking for any recovery scenarios then will it be asking for archive sequence 1?
    select * from v$log;
    GROUP# THREAD# SEQUENCE# BYTES MEMBERS ARC STATUS
    1 1 2 52428800 2 NO CURRENT
    2 1 0 52428800 2 YES UNUSED
    3 1 1 52428800 2 YES INACTIVE
    Can any one suggest me why it's start from sequence 2 as current instead of sequence1?
    Thanks...

    Furthermore, read my earlier reply about the backup : "As you haven't taken any Database Backup yet, the archivelogs that are currently being generated will not be required in a Recovery scenario -- you can't begin Restore+Recovery until you have a Backup to Restore."
    Even if log sequence#1 did get archived, it is meaningless. Any archives created before any database backup are unusable in a Recovery situation. A Recovery can apply archivelogs only from the point when a backup was created. You wouldn't, COULDN'T, have taken a Backup before Log Sequence#1 , so there won't be a need for an archive log of that file.
    The situation when Log Sequence#1 is archived is IF a database, being already in ARCHIVELOG mode, is opened with RESETLOGS , for example, after an Incomplete Recovery. Then, the next archive would be Log Sequence#1 of the Incarnation created by the ResetLogs .

Maybe you are looking for

  • What is the problem in installing 8.1.7 on Linux

    Hi I have seen a lot of posts discussing about problem in installing 8.1.7 on rh Linux 7. Can anyone tell me what is the actual problem, and do I need to download any patches to resolve it ? pam

  • Indd 5.5: When using drop shadow or lower opacity in object, I lose fills

    I have ugraded to InDesign 5.5 (v. 7.5) for Mac OS. Here is my problem: If I have object "A" with transparency (lower than 100% opacity) or a drop shadow (which also uses a transparency) overlapping object "B", then "B" loses it fill when printing to

  • Prevent shadow system in SUM

    Hello I have installed a new PI 7.4 system (SR 1) and now I'm updating it from SP 5 to the newest, SP 7 (both java and ABAP stacks) I'm using SUM 1 SP 10 patch 8, which is the newest SUM version. Is there any way to prevent SUM from creating a shadow

  • Should SD R/3 be connected with CRM server , No Org. data  in CRM

    Hi Experts, while creating the org. model in CRM server ( ppoca_crm  - tcode) , I tried to assign its busines attribue as sale organisation. It  throw the error saying ," No connection with OLTP", Detailed message says that " No RFC connection with t

  • Paid debugging help

    I'm nearing the end of a deadline for a project (tomorrow) that has proven to be too much for me to handle on my own in the time allowed. I'm still new to Flex and I'm not able to debug some of the issues as quickly as I'd like. If anyone can provide