def transform = Action {
val fileStream: Enumerator[Array[Byte]] = {
Enumerator.fromFile(new File("data.txt"))
}
val transfo = Enumeratee.map[Array[Byte]]{byteArray =>
val chunckedString = new String(byteArray)
//add blablabla on each line
val newChunk = chunckedString.replaceAll("\n", " blablabla\n")
//newChunk <-- stream text
newChunk.getBytes //<-- stream file
}
Ok.stream(fileStream.through(transfo))
}
def transform = Action {
lazy val bufferedReader = new BufferedReader(new InputStreamReader(new FileInputStream("data.txt")))
val fileStream : Enumerator[String] = Enumerator.generateM[String] {
scala.concurrent.Future{
val line: String = bufferedReader.readLine()
Option(line)
}
}
val transfo = Enumeratee.map[String]{line =>
val newLine = line + " blablabla" + "\n"
newLine.getBytes
}
Ok.stream(fileStream.through(transfo))
}
@loicdescotte, Thank you for your code. I need to stream a image from the S3. How do I do this in Play scala framework. I did the following. But it didn't work.
How do I display the image in "
". Can you please help me to fix this issue?
Note: I need to do it for video also.