Yo,

On Wed, Dec 1, 2010 at 9:51 PM,  <[email protected]> wrote:
> TagLib: MPEG::Properties::read() -- Could not find a valid last MPEG frame

(We can ignore that, it's only about metadata.)

> Invalid value at line 187, char 20-68: That source is fallible."

Might be useful to check what file is at this line... (I can't know by
looking at an excerpt.)

> I know both the original 'fallback.mp3' and 'silence.mp3' exist, and are
> callable at the url I used. So, at this point, I have no idea what to do.

They must also be recognized/decodable by liquidsoap. To check this,
ask liquidsoap what it thinks about the corresponding request:
  liquidsoap -r <file.mp3>

I hope that you can figure it out by carefully checking things as
indicated above.

Actually... I think I just figured it out :)

scmp3 = fallback([ogp,security])
scmp3 = crossfade(start_next=0.7, fade_in=0.2, fade_out=0.2, ogp)

You define scmp3 then redefine it, masking the previous definition
before it's been used anywhere. In other words, this is rigorously
equivalent to the following:

foo = fallback([ogp,security])
scmp3 = crossfade(start_next=0.7, fade_in=0.2, fade_out=0.2, ogp)

A better script is:

scmp3 = fallback([ogp,security])
scmp3 = crossfade(start_next=0.7, fade_in=0.2, fade_out=0.2, scmp3)

Cheers,
-- 
David

------------------------------------------------------------------------------
Increase Visibility of Your 3D Game App & Earn a Chance To Win $500!
Tap into the largest installed PC base & get more eyes on your game by
optimizing for Intel(R) Graphics Technology. Get started today with the
Intel(R) Software Partner Program. Five $500 cash prizes are up for grabs.
http://p.sf.net/sfu/intelisp-dev2dev
_______________________________________________
Savonet-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to