feat: select correct transcoding for streaming

This commit is contained in:
Deluan
2020-03-16 14:28:13 -04:00
committed by Deluan Quintão
parent 39993810b3
commit c8b0d2bfae
9 changed files with 204 additions and 54 deletions
+1
View File
@@ -13,4 +13,5 @@ type Transcodings []Transcoding
type TranscodingRepository interface {
Get(id string) (*Transcoding, error)
Put(*Transcoding) error
FindByFormat(format string) (*Transcoding, error)
}