Loop/Repeat on continuous

hey all,
I want to Loop/Repeat a audio track on continuous play. I've tried something like Audacity which would create the track 200 times and it would be 13hrs long (which would be generally how long I'd want the track to last in a loop) but this was too awkward because it would end up being about 7-8 GB file...which wasn't what I wanted, because I need it to go on a audio cd and played off a cd player/dvd player.
What I want.:
Audio track looped.
Track NOT massive in size.
To play on a cd/dvd.
-OR-
If anybody knows a way that I could do it through something like FCP/DvD Studio Pro or other video editing suites, and then burn to dvd - that would also be a great solution!

I don't think there's anyway around it. To burn a disc you need an audio file. The audio file is necessarily going to be big.
Perhaps you can find a cd player with a loop function.

Similar Messages

  • Where is loop/repeat feature on n8 video player

    hi can someone tell me where the loop/repeat featue is on n8 video player
    thanks

    I have the same problem,
    I liked the real player on my nokia n95.
    wondering if I can download a copy to my n8, it does loop,

  • Trying to loop/repeat a video for a continuous presentation on ipod touch

    If anyone could help me out here, I'm trying to display a video from the ipod touch on a projector, it's just a 1 minute loop and so far I have no luck trying to get it to loop. I have tried to set it to repeat in photo libraries and play but it still never starts over. I have tried an app called CWG's Video Loop Presenter which seems to work but only on the ipod, and doesn't project the video into the projector. If you guys could help me out then that would be great. Thank you.

    Thank you for the help, I resolved it a few minutes ago by making the video into a music video through the Get Info option and it is now in my Music app and I'm able to loop it just like I would loop a regular song.
    Thanks!

  • SC approval loop repeats..

    Hi All,
    I have got an issue with item based approval of SC. Approval loop is getting repeated multiple times when some changes are made to SC( e.g. cost center change, G/L a/c change etc. ). I guess it is repeating approval process only when changed are made to SC. Can you please help me to debug the BAID BBP_WFL_APPROV_BADI.
    What I  observe is that the container element ApproverList in main workflow has multiple enteries and approval will repeat until all the approvers has approved the SC.
    KR,
    Vithalprasad

    Hi ..
    If you are implementing PCW , then you can use class '/SAPSRM/CL_WF_FACADE_SEARCHFIND_WORKITEM_BY_DOCUMENT' to get the header workitem id AND use class '/SAPSRM/CL_WF_APV_FACADEGET_CURRENT_PROCESS_STATE' to get the current process level details along with the agents that are assigned.. Hope this help you...
    Saravanan

  • Itunes not responding to shuffle, repeat or continuous play of songs!!!

    hi ...
    yesterday morning itunes was working fine and i could play tracks on shuffle mode and continuous play but last night that was not the case.....now when i select a track regardless of what play mode i have selected itunes will only play one song and then stop so that now i have to keep clicking on the next track manually....its is very frustrating ....i have switched itunes off and relaunched it several times but the problem is still happening....
    can anyone help or shed some light on why this is happening? thanks

    thanks chris .....the problem has been solved and i now can take a breather from all that manual clicking :))) one more question what would i have pressed to un-mark all my tracks in that little box and how do i re-mark the little boxes for all tracks in one full swoop? thanks

  • How do I set images, specifically, .gif's to loop once or continually?

    When I set up FF 4.0, I remember a setting to have images that are animated in some way (gif's mostly) loop only once. I'd like to unset this feature and can't find where I did it. Might anyone have a big arrow pointing toward the right settings menu?

    hello vyoumans,
    i found a couple different ways this can be done.
    1. this firefox addon, [https://addons.mozilla.org/en-US/firefox/addon/toggle-animated-gifs/ Toggle animated GIFs], seems to work pretty good. ctrl+m toggles the animations on and off.
    2. if you don't want to install an addon, you can go to your browser configuration file. type ''about:config'' in the address bar and find the entry ''image.animation_mode''. double click it and set its value to ''none''. this should disable all GIF animations

  • AI Read is executing only once in a while loop instead of continuously scanning the channels

    The ultimate goal is to sample 15 channels (1 at 20kHz, 9 at 1000Hz, and 5 at 100Hz). Since only one scan rate is possible, I would like to reduce the data (for both displaying and saving purposes). The decimate function does not seem to work correctly.
    Attached is the current subroutine used to 'decimate' the data. It seems to work on the first loop iteration, as seen by the data block with correct time stamps and data values, but with each additional iteration, all values are zero. Why is only one scan being used in the displaying of data?
    Attachments:
    Acquire_N_ScansNM4.llb ‏76 KB

    When you call AI Clear, the DAQ session is over. You will not get any new data by calling AI Read after an AI Clear. Move your AI Clear to the right of your while loop such that it runs after the while loop completes. Don't forget to wire an error cluster or DAQ session ID to AI Clear from inside the while loop to create the data dependency. Also, consider adding a shift register for the error cluster and some way to exit the loop on an error.
    Remember that Alliance Members are here to help. We do this stuff every day.
    Daniel L. Press
    PrimeTest Corp.
    www.primetest.com

  • Need help with looping/repeat webpage in Apple Script

    I would like to repeat an action in AppleScript by opening up a URL page in Safari, closing it, and then re-opening it again.
    Can someone please help me with this action? Please be very specific in your response. I am not very familiar with this program.
    Thank you

    tell application "Safari"
        repeat with theURL in theURLs
            make new document
            set URL of front document to theURL
            delay 1
            repeat until ((do JavaScript "document.readyState" in front document) is "complete")
                delay 1
            end repeat
            close front document
        end repeat
    end tell
    This is what I have so far..but it is not working. It only opens it up ONCE. What I want is for the web page to repeatedly be generating every 1 or 2 seconds, after it closes out the previous one.
    I want only ONE website continously being opened up.
    Someone help please!!

  • Nested Loop/Repeat Region, PHP

    Hello,
    My conundrum is trying to gather information from 4 different record sets and do some separate nested loops
    There is one record per project
    There is one client per project
    There may be more than one staff member per project
    There may be more that one consultant per project
    The MySQL schema is as follows. ( Sorry but there are 7 of them)
    mysql> describe ND_assign_consultant;
    +---------------+------------------+------+-----+---------+----------------+
    | Field         | Type             | Null | Key | Default | Extra          |
    +---------------+------------------+------+-----+---------+----------------+
    | assign_pro_id | int(10) unsigned | NO   | PRI | NULL    | auto_increment |
    | project_id    | varchar(8)       | NO   |     |         |                |
    | architect_id  | varchar(11)      | NO   |     |         |                |
    +---------------+------------------+------+-----+---------+----------------+
    mysql> describe ND_assign_project;
    +---------------+------------------+------+-----+---------+-------+
    | Field         | Type             | Null | Key | Default | Extra |
    +---------------+------------------+------+-----+---------+-------+
    | assign_pro_id | int(10) unsigned | NO   |     | 0       |       |
    | client_id     | varchar(11)      | YES  |     | NULL    |       |
    | project_id    | varchar(11)      | YES  |     | NULL    |       |
    +---------------+------------------+------+-----+---------+-------+
    mysql> describe ND_assign_staff;
    +--------------+------------------+------+-----+---------+----------------+
    | Field        | Type             | Null | Key | Default | Extra          |
    +--------------+------------------+------+-----+---------+----------------+
    | assign_id    | int(11) unsigned | NO   | PRI | NULL    | auto_increment |
    | project_id   | char(8)          | NO   |     |         |                |
    | staff_id     | char(4)          | NO   |     |         |                |
    | stake_holder | char(1)          | YES  |     | 0       |                |
    +--------------+------------------+------+-----+---------+----------------+
    mysql> describe ND_client;
    +--------------+---------------------------+------+-----+---------+----------------+
    | Field        | Type                      | Null | Key | Default | Extra          |
    +--------------+---------------------------+------+-----+---------+----------------+
    | client_id    | int(10) unsigned zerofill | NO   | PRI | NULL    | auto_increment |
    | title        | varchar(20)               | YES  |     | NULL    |                |
    | first_Cname  | varchar(30)               | NO   |     |         |                |
    | last_Cname   | varchar(30)               | NO   |     |         |                |
    | company      | varchar(80)               | YES  |     | NULL    |                |
    | phone        | varchar(12)               | YES  |     | NULL    |                |
    | mobile       | varchar(12)               | YES  |     | NULL    |                |
    | fax          | varchar(12)               | YES  |     | NULL    |                |
    | email        | varchar(80)               | YES  |     | NULL    |                |
    | road_type    | varchar(20)               | YES  |     | NULL    |                |
    | street       | varchar(100)              | YES  |     | NULL    |                |
    | city         | varchar(80)               | YES  |     | NULL    |                |
    | State        | char(3)                   | YES  |     | NULL    |                |
    | postcode     | varchar(4)                | YES  |     | NULL    |                |
    | int_city     | varchar(80)               | YES  |     | NULL    |                |
    | int_state    | varchar(80)               | YES  |     | NULL    |                |
    | int_postcode | varchar(5)                | YES  |     | NULL    |                |
    | country      | varchar(40)               | YES  |     | NULL    |                |
    | comments     | text                      | YES  |     | NULL    |                |
    +--------------+---------------------------+------+-----+---------+----------------+
    mysql> describe ND_consultant;
    +-----------------+------------------+------+-----+---------+----------------+
    | Field           | Type             | Null | Key | Default | Extra          |
    +-----------------+------------------+------+-----+---------+----------------+
    | architect_id    | int(10) unsigned | NO   | PRI | NULL    | auto_increment |
    | consultant_type | varchar(40)      | NO   |     |         |                |
    | first_name      | varchar(30)      | YES  |     | NULL    |                |
    | last_name       | varchar(30)      | YES  |     | NULL    |                |
    | company         | varchar(80)      | YES  |     | NULL    |                |
    | licence         | varchar(20)      | YES  |     | NULL    |                |
    | phone           | varchar(12)      | YES  |     | NULL    |                |
    | mobile          | varchar(12)      | YES  |     | NULL    |                |
    | fax             | varchar(12)      | YES  |     | NULL    |                |
    | email           | varchar(80)      | YES  |     | NULL    |                |
    | website         | varchar(150)     | YES  |     | NULL    |                |
    | street          | varchar(100)     | YES  |     | NULL    |                |
    | city            | varchar(80)      | YES  |     | NULL    |                |
    | state           | char(3)          | YES  |     | NULL    |                |
    | postcode        | varchar(4)       | YES  |     | NULL    |                |
    | region          | varchar(40)      | YES  |     | NULL    |                |
    | regular         | char(1)          | YES  |     | NULL    |                |
    +-----------------+------------------+------+-----+---------+----------------+
    17 rows in set (0.00 sec)
    mysql> describe ND_project;
    +----------------+-----------------+------+-----+-------------------+--------------------- --------+
    | Field          | Type            | Null | Key | Default           | Extra                       |
    +----------------+-----------------+------+-----+-------------------+--------------------- --------+
    | project_id     | int(6) unsigned | NO   | PRI | NULL              | auto_increment              |
    | listed         | timestamp       | NO   |     | CURRENT_TIMESTAMP | on update CURRENT_TIMESTAMP |
    | deadline       | varchar(25)     | YES  |     | NULL              |                             |
    | contact        | varchar(30)     | YES  |     | NULL              |                             |
    | project_type   | varchar(20)     | YES  |     | NULL              |                             |
    | quote          | decimal(10,0)   | YES  |     | NULL              |                             |
    | invoice        | char(3)         | YES  |     | NULL              |                             |
    | invoice_number | varchar(8)      | YES  |     | NULL              |                             |
    | details        | text            | YES  |     | NULL              |                             |
    | status         | varchar(20)     | YES  |     | NULL              |                             |
    | streetN        | varchar(20)     | YES  |     | NULL              |                             |
    | pro_street     | varchar(100)    | YES  |     | NULL              |                             |
    | pro_city       | varchar(80)     | YES  |     | NULL              |                             |
    | pro_state      | char(3)         | YES  |     | NULL              |                             |
    | pro_postcode   | varchar(4)      | YES  |     | NULL              |                             |
    +----------------+-----------------+------+-----+-------------------+--------------------- --------+
    mysql> describe ND_staff;
    +-------------+----------------------+------+-----+---------+----------------+
    | Field       | Type                 | Null | Key | Default | Extra          |
    +-------------+----------------------+------+-----+---------+----------------+
    | staff_id    | smallint(5) unsigned | NO   | PRI | NULL    | auto_increment |
    | f_name      | varchar(30)          | NO   |     |         |                |
    | l_name      | varchar(30)          | NO   |     |         |                |
    | email       | varchar(80)          | NO   |     |         |                |
    | mobile      | varchar(12)          | NO   |     |         |                |
    | extension   | char(3)              | NO   |     |         |                |
    | username    | varchar(20)          | NO   | UNI |         |                |
    | password    | varchar(16)          | NO   |     |         |                |
    | rate        | int(3) unsigned      | NO   |     | 0       |                |
    | staff1      | char(1)              | YES  |     | NULL    |                |
    | staff2      | char(1)              | YES  |     | NULL    |                |
    | projects1   | char(1)              | YES  |     | NULL    |                |
    | projects2   | char(1)              | YES  |     | NULL    |                |
    | clients     | char(1)              | YES  |     | NULL    |                |
    | revisions1  | char(1)              | YES  |     | NULL    |                |
    | revisions2  | char(1)              | YES  |     | NULL    |                |
    | consultants | char(1)              | YES  |     | NULL    |                |
    | access      | char(1)              | YES  |     | NULL    |                |
    +-------------+----------------------+------+-----+---------+----------------+
    I tried to attach the php file and the CSS but they're not allowed.
    Record Sets:
    <?php
    mysql_select_db($database_neilly_davies, $neilly_davies);
    $query_qProject = "SELECT project_id, listed, quote, status, streetN, pro_street, pro_city FROM ND_project WHERE status ='In Progress' OR 'Quote'";
    $qProject = mysql_query($query_qProject, $neilly_davies) or die(mysql_error());
    $row_qProject = mysql_fetch_assoc($qProject);
    $totalRows_qProject = mysql_num_rows($qProject);
    mysql_select_db($database_neilly_davies, $neilly_davies);
    $query_qClient = "SELECT ND_client.client_id, ND_client.first_Cname, ND_client.last_Cname, ND_client.company, ND_assign_project.client_id, ND_assign_project.project_id FROM ND_client, ND_assign_project, ND_project WHERE ND_project.project_id = ND_assign_project.project_id AND ND_client.client_id = ND_assign_project.client_id";
    $qClient = mysql_query($query_qClient, $neilly_davies) or die(mysql_error());
    $row_qClient = mysql_fetch_assoc($qClient);
    $totalRows_qClient = mysql_num_rows($qClient);
    mysql_select_db($database_neilly_davies, $neilly_davies);
    $query_qStaff = "SELECT ND_staff.staff_id, ND_staff.f_name, ND_staff.l_name, ND_assign_staff.staff_id, ND_assign_staff.project_id, ND_assign_staff.stake_holder, ND_project.project_id FROM ND_staff, ND_assign_staff, ND_project WHERE ND_staff.staff_id = ND_assign_staff.staff_id AND ND_assign_staff.project_id = ND_project.project_id";
    $qStaff = mysql_query($query_qStaff, $neilly_davies) or die(mysql_error());
    $row_qStaff = mysql_fetch_assoc($qStaff);
    $totalRows_qStaff = mysql_num_rows($qStaff);
    mysql_select_db($database_neilly_davies, $neilly_davies);
    $query_qConsultant = "SELECT ND_consultant.architect_id, ND_consultant.first_name, ND_consultant.last_name, ND_consultant.company, ND_assign_consultant.architect_id, ND_assign_consultant.project_id FROM ND_consultant, ND_assign_consultant WHERE ND_consultant.architect_id = ND_assign_consultant.architect_id";
    $qConsultant = mysql_query($query_qConsultant, $neilly_davies) or die(mysql_error());
    $row_qConsultant = mysql_fetch_assoc($qConsultant);
    $totalRows_qConsultant = mysql_num_rows($qConsultant);
    ?>
    Table requiring the nested loops:
          <tr valign="top">
            <th width="90" align="left"><?php echo $row_qProject['project_id']; ?> </th>
            <td width="90" align="left"><?php echo $row_qProject['status']; ?></td>
            <td align="left"><?php echo $row_qProject['pro_street']; ?> <?php echo $row_qProject['streetN']; ?> <?php echo $row_qProject['pro_city']; ?></td>
            <td align="left"><?php echo $row_qClient['first_Cname']; ?> <?php echo $row_qClient['first_Cname']; ?><br />
                <?php echo $row_qClient['company']; ?></td>
            <td align="left"><?php echo $row_qProject['listed']; ?></td>
            <td width="6">$</td>
            <td align="right"><?php echo $row_qProject['quote']; ?></td>
            <td align="left"><?php echo $row_qStaff['f_name']; ?> <?php echo $row_qStaff['l_name']; ?></td>
            <td align="left"><?php echo $row_qStaff['stake_holder']; ?> </td>
            <td align="left"><?php echo $row_qConsultant['first_name']; ?> <?php echo $row_qConsultant['last_name']; ?><br />
                <?php echo $row_qConsultant['company']; ?> </td>
          </tr>
    <tr>
    Thanks in advance if you can point me in the right direction.
    Steve

    Tom Muck has a free Dreamweaver extension that does this: http://www.tom-muck.com/extensions/help/HorizontalLooper/. There's also a reasonably priced commercial version that does more. The link to the commercial version is at the bottom of the page on Tom's site.

  • No loop/repeat feature for Videos - really?

    I find it ridiculous that you cannot set a video to repeat. Hanging an iPad from the backseat to play episodes of Yo Gabba Gabba would make like a lot easier if ITunes could just make this simple feature happen. The workarounds are insane and I haven't got one to work yet...

    And I've tried various video playlist apps to get around the problem but because the Yo Gabba Gabba shows were bought from iTunes, they are DRM protected and will not work with the apps.
    So iTunes doesn't have the simple feature I need and won't allow its videos (sorry, I meant to say MY videos since I purchased them) to work with apps that add the feature - ridiculous!
    Can an Apple rep chime in here please?

  • Encore CS4 - Main Menu Loops / Repeats Every Few Seconds (Blu-Ray)

    Hello there,
    I am experiencing a rather unusual issue with Encore CS4 in which after burning my project to Blu-Ray the main menu (which has a two minute long audio track linked to it) appears to "reset" itself every one or two seconds repeatedly, thus making it next to impossible to select any of the buttons on the menu itself. (I should also note that I've tried playing this disc on both my Blu-Ray player and my computers Blu-Ray drive and both of them have produced the exact same results)
    Any help would be greatly appreciated.
    Thank you

    The only thing I can think of to try is to delete the menu from your project (again!).  Also delete the .wav file asset.  Save the project, then close Encore.  Launch En and open any other project.  Go to Edit | Preferences | Media and clean the cache.  Re-open the problem project and re-import the .wav file and the menu.  Hopefully cleaning the cache will reset whatever En is doing with the menu audio.
    -Jeff

  • Wifi connecting loops repeatedly back to start (unlock) page

    I've had the Samsung Galaxy 10.1 for a month and recently when I try to connect to a wifi network, it repeatedly cycles back to the start (unlock) page. Samsung tech and Verizon have not provided an answer so far. I have tried "forgetting" all old networks, rebooting router, re-entering network and security code, updating software and multiple combinations of this.  Others have had this problem (posted on youtube) but have not posted a solution. I would hope that restoring factory settings is not the only answer as would lose apps, data, pictures, and kindle books.  Have others with this problem found a solution?  I cannot use wifi as it is.

    I have had the same problem with my GT7 - no answers from Verizon, but have learned through many blogs that there is an issue with their not being able to connect to Belkin wireless routers (my kind).  There are things to try like changing the channel, or connecting without a password, but those have not worked for me, either.  If you have Windows 7, an option is to tether onto your WiFi via Win7's home network setup (you'll have to look it up if you don't know how). That worked great for me. But, with the last Android update, that isn't working either, now : ( , but I haven't had time to troubleshoot to see if I can get it working again.

  • How do I create a slide show that repeats (continuously loops)

    I am new to iMovie and iDVD. I am creating a photo album in iMove and want to burn for iDVD to show at a party. I can't find out how to set this up to loop - repeat.
    Novice
    Bruce

    Hi Bruce
    Welcome to apple discussions. you'll want to make an AutoStart Dvd and check the loop option w/in iDvd. Just go to map view after you launch iDvd and drag and drop your QT movie or slideshow to the very first or top box.
    If you still aren't sure just look up AutoStart Dvd on this forum using the Search field to the top right of this page.
    Message was edited by: SDMacuser

  • Adobe FormsCentral Sign In Continuous Loop Issue

    Hi,
    One of my co-worker is trying to sign in FormsCentral but once she enters her e-mail and password it goes into a continuous loop. By continuous loop, I mean that the page is blank and the browser is loading and looping in between 3 Adobe related URL but never loads anything.
    It works from my computer. We both have the same Internet Explorer version (11.0.11). I tried it on the Internet Explorer without Add-on and it does the same thing.
    Any ideas how to fix this?
    Thank you in advance for your help!

    I think I've seen this on machines which do not have Flash installed.
    1. Check for Flash
    2. Try Firefox
    3. Try Chrome (which has a built-in Flash player)
    Hope that helps,
    Brian

  • Alarm Tone Loop Delay

    The other day, I made a custom ringtone loop and loaded it onto my iPhone. In iTunes, the loop sounded perfect; when I tried the tone as a ringtone, it also worked perfectly. However, when I try to use the same tone as an alarm tone, there is a short pause before the loop, which causes the tone to not loop seamlessly. Is there a reason for this, and is there any way I can fix it, such as editing the tone file?
    I tried searching for this on the web, and I kept getting results either for online custom tone makers or the old iTunes ringtone maker.

    Hi,
    same problem here in the UK. Got the iPhone 4 in June...British Summer Time - BST - ended on Saturday night...our iPhones failed to wake us up this morning because although they had automatically updated to the correct time, the repeating alarms continued to think it was an hour later...
    I wonder how much money companies will have lost this morning due to iPhone users turning up late for work! ;-/
    I have called the UK iPhone support today (0844 209 0611), which costs £0.05 per minute if you are beyond the free 90-day support allowance...and they suggested resetting everything in settings! Or maybe doing a 'restore'. If you're reading this, please call the support line because when I rang they said they had not had any calls about the problem. So the more people who lodge a complaint, the more likely it is that Apple will do something to help us. Have you see forums elsewhere on the internet? It seems this is quite a problem for a lot of people.
    Obviously this is not the end of the world but it is a slightly irritating bug

Maybe you are looking for

  • How do i switch all my info over to my new apple id?

    My sister and I have been sharing an apple id now for a while and now because of complications we need our own account each.That includes she has her own icloud and i have my own.She lives 90 miles away so i dont have access to her close up.She has a

  • Problems trying to retrieve data from R/3 using Java - RecordSetWrapper

    Hello everyone! I am having problems retrieveing a result from r/3 using Connector Framework API. An ABAP consultant has created a ABAP program which returns an employee based on his or her personal number as an input. <b>When i run the AbstractPorta

  • Airport problem with WEP

    Hi, I started having problem connecting to WEP 40/128-bit ASCII access point after installing the following updates. http://www.info.apple.com/kbnum/n305031 I always get an error something like.. "There was an error connecting on the airport network

  • How to know that we are using sp12

    hi i want to upgrade sap xi , from sp12 to sp18 . can u tell me the step by step process? plz provide me the link where an i get the information atleast? thanks akhil

  • IPhoto 9.5 - crashes when updating iPhoto Library file

    I have updated my MacBook Pro system software to 10.9, and updated iPhoto & iMovie.  The new version of iPhoto (9.5) now crashes when attempting to update the iPhoto Library file. I cannot view any photo files. Any assistance would be appreciated The