2011/6/25 pranza <[email protected]>:
> Hi Romain!

Hi!

> Thanks for the new build!
> I tried it, but still the same problem... I attach the log and my current
> radio's config file.

Sorry for the late response.. I have just uploaded a win32 build for
1.0.0-beta2.1 to our sourceforge file section. However, I think it is
pretty much the same build as you tested last..

In order to try to isolate the problem, I have compiled a very simple
test binary that reproduces that part where the playlist file is
opened and read in liquidsoap. It is available for download there:
  http://rastageeks.org/~toots/playlist.zip

If you could try to use it as follows:
  playlist.exe /path/to/file-to-test
and report whether it works or not, that would help us understanding your issue.

If you're worried about the binary, here is the source:
----
let filename = Sys.argv.(1)

let () =
  Printf.printf "Trying to read file %s\n%!" filename;
  try
    let channel = open_in filename in
    let length = in_channel_length channel in
    let content = String.create length in
    really_input channel content 0 length;
    (* Close the file now, I don't need it anymore.. *)
    close_in channel ;
    Printf.printf "File read without issues!\n%!"
  with
    | e -> Printf.printf "File could not be read: %s\n%!"
                (Printexc.to_string e)
----

> By the way, last week Savonet crashed on receiving connection to its harbor
> from ogg streaming software Traktor - had to "end task" the process and
> restart in order to play. Otherwise it's perfectly stable with local files.

Hmm... That's interesting. Could you report the issue to our bug
tracker with technical details (script, streaming software and logs)
so that we can see if we can reproduce and fix this issue?
Link: http://dev.sourcefabric.org/browse/LS

Thanks for you collaboration!
Romain

------------------------------------------------------------------------------
10 Tips for Better Web Security
Learn 10 ways to better secure your business today. Topics covered include:
Web security, SSL, hacker attacks & Denial of Service (DoS), private keys,
security Microsoft Exchange, secure Instant Messaging, and much more.
http://www.accelacomm.com/jaw/sfnl/114/51426210/
_______________________________________________
Savonet-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to