I am using rails_blob_url(o.audio_file) but it is annoying since url doesn't open file in browser but downloads the file as an attachment (this is not a default browser behaviour for audio files).
I want that browser opens the file however it wants. I do not want to force download file ...
rails_blob_url(o.audio_file, disposition: :inline)
Doesn't work.