Hi. thanks for the answer.
This works for samples, now i have tried apply this for stream and have no success
extends StreamPlayer
var Song = load("res://Sounds/Jobro.ogg") # you can use load() instead
var player = StreamPlayer.new()
func _ready():
player.set_stream(Song)
player.play()
this runs fine, with an empty error on player.play() without any info...
i have tried some tutorials and things on the net but...
can you help me on this?