1
0
mirror of https://github.com/mxpv/podsync.git synced 2024-05-11 05:55:04 +00:00

26 lines
544 B
Go
Raw Normal View History

2017-08-05 13:48:53 -07:00
package builders
import (
"fmt"
itunes "github.com/mxpv/podcast"
2017-08-19 16:58:23 -07:00
"github.com/mxpv/podsync/pkg/api"
2017-08-05 13:48:53 -07:00
)
const (
podsyncGenerator = "Podsync generator"
defaultCategory = "TV & Film"
)
2017-08-10 15:23:07 -07:00
func makeEnclosure(feed *api.Feed, id string, lengthInBytes int64) (string, itunes.EnclosureType, int64) {
2017-08-05 13:48:53 -07:00
ext := "mp4"
contentType := itunes.MP4
2017-08-10 15:23:07 -07:00
if feed.Format == api.AudioFormat {
2017-08-05 13:48:53 -07:00
ext = "mp3"
contentType = itunes.MP3
}
url := fmt.Sprintf("http://podsync.net/download/%s/%s.%s", feed.HashId, id, ext)
return url, contentType, lengthInBytes
}