Hi all,

Merging all tracks is a bit hard but if it works for you then fine!

Otherwise, you have different options:

* Use a "rotate" operator (not sur of the name in 0.9.2), if the
number of tracks in the playlist is fixed that should work fine.
* Using a request.queue that you feed with only 3 tracks, wait until
it is empty. start playing a commercial, feed it again with 3 more
tracks etc..
* Use request.dynamic and implement your own track selection scheduler.
..and probably more..


Also, do not set mksafe on the base sources as it will mess with all
these operators. You should use mksafe only on the final sources (just
before output)..

2012/10/29 Samuel Mimram <[email protected]>:
> Hi,
>
> You can "convert" the full playlist into one track by doing something like
>
> ad = merge_tracks(playlist.once("ad.m3u"))
>
> I guess that it should do the job!
>
> ++
>
> Sam.
>
> On Wed, Oct 24, 2012 at 9:13 PM, Patrick Brown <[email protected]>
> wrote:
>>
>> I have two playlists, the main playlist and an ad playlist, I have the ad
>> playlist called every 20 minutes and it plays one ad from the list just
>> fine.
>> My problem is I need it to play the FULL playlist not just one track (the
>> list has 3 URLs pulling from an ad server).
>>
>> I have tried many different things but it continues to only play the first
>> URL then back to my main playlist.
>>
>> Here is what I have:
>> s = mksafe(playlist(reload=3600, "Punk.m3u" ))
>> ad = mksafe(playlist("ad.m3u" ))
>> # (1200 sec = 20 min)
>> new_ad = delay(120.,ad)
>> s = fallback([new_ad,s])
>>
>>
>> Thank you.
>> --Patrick
>>
>>
>> ------------------------------------------------------------------------------
>> Everyone hates slow websites. So do we.
>> Make your web apps faster with AppDynamics
>> Download AppDynamics Lite for free today:
>> http://p.sf.net/sfu/appdyn_sfd2d_oct
>> _______________________________________________
>> Savonet-users mailing list
>> [email protected]
>> https://lists.sourceforge.net/lists/listinfo/savonet-users
>>
>
>
> ------------------------------------------------------------------------------
> The Windows 8 Center - In partnership with Sourceforge
> Your idea - your app - 30 days.
> Get started!
> http://windows8center.sourceforge.net/
> what-html-developers-need-to-know-about-coding-windows-8-metro-style-apps/
> _______________________________________________
> Savonet-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/savonet-users
>

------------------------------------------------------------------------------
The Windows 8 Center - In partnership with Sourceforge
Your idea - your app - 30 days.
Get started!
http://windows8center.sourceforge.net/
what-html-developers-need-to-know-about-coding-windows-8-metro-style-apps/
_______________________________________________
Savonet-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to