- Parses SCTE-35 Cues from MPEGTS or Bytes or Base64 or Hex or Int or Octal or even Base 36.๐ก
- Parses SCTE-35 Cues spread over multiple MPEGTS packets ๐ช
- Supports multi-packet PAT and PMT tables ๐๏ธ
- Supports multiple MPEGTS Programs and multiple SCTE-35 streams ๐ฉน
- Encodes Time Signals and Splice Inserts with Descriptors and Upids. ๐งบ
Want to parse an MPEGTS video and print the SCTE-35? ๐งฎ
Do it in ten lines.
โ๏ธ
package main // 1
import ( // 2
"os" // 3
"github.com/futzu/cuei" // 4
) // 5
func main(){ // 6
arg := os.Args[1] // 7
stream := cuei.NewStream() // 8
stream.Decode(arg) // 9
} // 10 lines
go get github.com/futzu/cuei@latest
- cueidemo.go
package main
import (
"os"
"fmt"
"github.com/futzu/cuei"
)
func main(){
arg := os.Args[1]
stream := cuei.NewStream()
cues := stream.Decode(arg)
for _,cue := range cues {
fmt.Printf("Command is a %v\n", cue.Command.Name)
}
}
go build cueidemo.go
./cueidemo a_video_with_scte35.ts
Next File: mpegts/out.ts
{
"Name": "Splice Info Section",
"TableID": "0xfc",
"SectionSyntaxIndicator": false,
"Private": false,
"Reserved": "0x3",
"SectionLength": 49,
"ProtocolVersion": 0,
"EncryptedPacket": false,
"EncryptionAlgorithm": 0,
"PtsAdjustment": 0,
"CwIndex": "0x0",
"Tier": "0xfff",
"SpliceCommandLength": 20,
"SpliceCommandType": 5,
"DescriptorLoopLength": 12,
"Command": {
"Name": "Splice Insert",
"CommandType": 5,
"SpliceEventID": "0x5d",
"OutOfNetworkIndicator": true,
"ProgramSpliceFlag": true,
"DurationFlag": true,
"BreakDuration": 90.023266,
"TimeSpecifiedFlag": true,
"PTS": 38113.135577
},
"Descriptors": [
{
"Tag": 1,
"Length": 10,
"Identifier": "CUEI",
"Name": "DTMF Descriptor",
"PreRoll": 177,
"DTMFCount": 4,
"DTMFChars": 4186542473
}
],
"Packet": {
"PacketNumber": 73885,
"Pid": 515,
"Program": 51,
"Pcr": 38104.526277,
"Pts": 38105.268588
}
}
- Use cuei.Stream.DecodeBytes for more fine-grained control of MPEGTS stream parsing.
package main
import (
"fmt"
"github.com/futzu/cuei"
"os"
)
func main() {
args := os.Args[1:] // Take multiple command line args
for _, arg := range args {
var cues []*cuei.Cue
stream := cuei.NewStream() // New StreamParser for each file
stream.Quiet = true // suppress printing SCTE-35 messages
file, err := os.Open(arg)
if err != nil {
break
}
defer file.Close()
buffer := make([]byte, cuei.BufSz) // Parse in chunks
for {
_, err := file.Read(buffer)
if err != nil {
break
}
cues = stream.DecodeBytes(buffer) // StreamParser.Parse returns a [] *cuei.Cue
for _,cue := range cues {
// do stuff with the cues like:
cue.Show()
// or
fmt.Printf("Command is a %v\n", cue.Command.Name)
}
}
}
}
package main
import (
"fmt"
"github.com/futzu/cuei"
)
func main(){
cue := cuei.NewCue()
data := "/DA7AAAAAAAAAP/wFAUAAAABf+/+AItfZn4AKTLgAAEAAAAWAhRDVUVJAAAAAX//AAApMuABACIBAIoXZrM="
cue.Decode(data)
fmt.Println("Cue as Json")
cue.Show()
}
package main
import (
"fmt"
"github.com/futzu/cuei"
)
type Cue2 struct {
cuei.Cue // Embed cuei.Cue
}
func (cue2 *Cue2) Show() { // Override Show
fmt.Printf("%+v",cue2.Command)
}
func main(){
var cue2 Cue2
data := "/DA7AAAAAAAAAP/wFAUAAAABf+/+AItfZn4AKTLgAAEAAAAWAhRDVUVJAAAAAX//AAApMuABACIBAIoXZrM="
cue2.Decode(data)
cue2.Show()
}
package main
import (
"fmt"
"github.com/futzu/cuei"
)
type Cue2 struct {
cuei.Cue // Embed cuei.Cue
}
func (cue2 *Cue2) Show() { // Override Show
fmt.Println("Cue2.Show()")
fmt.Printf("%+v",cue2.Command)
fmt.Println("\n\ncuei.Cue.Show() from cue2.Show()")
cue2.Cue.Show() // Call the Show method from embedded cuei.Cue
}
func main(){
var cue2 Cue2
data := "/DA7AAAAAAAAAP/wFAUAAAABf+/+AItfZn4AKTLgAAEAAAAWAhRDVUVJAAAAAX//AAApMuABACIBAIoXZrM="
cue2.Decode(data)
cue2.Show()
}
/**
Show the packet PTS time and Splice Command Name of SCTE-35 Cues
in a MPEGTS stream.
**/
package main
import (
"os"
"fmt"
"github.com/futzu/cuei"
)
func main() {
arg := os.Args[1]
stream := cuei.NewStream()
cues := stream.Decode(arg)
for _,c := range cues {
fmt.Printf("PTS: %v, Splice Command: %v\n",c.PacketData.Pts, c.Command.Name )
}
}
- cuei can accept SCTE-35 data as JSON and encode it to Base64, Bytes, or Hex string.
package main
import (
"fmt"
"github.com/futzu/cuei"
)
func main() {
js := `{
"InfoSection": {
"Name": "Splice Info Section",
"TableID": "0xfc",
"SectionSyntaxIndicator": false,
"Private": false,
"Reserved": "0x3",
"SectionLength": 42,
"ProtocolVersion": 0,
"EncryptedPacket": false,
"EncryptionAlgorithm": 0,
"PtsAdjustment": 0,
"CwIndex": "0xff",
"Tier": "0xfff",
"CommandLength": 15,
"CommandType": 5
},
"Command": {
"Name": "Splice Insert",
"CommandType": 5,
"SpliceEventID": 5690,
"OutOfNetworkIndicator": true,
"ProgramSpliceFlag": true,
"TimeSpecifiedFlag": true,
"PTS": 23683.480033
},
"DescriptorLoopLength": 10,
"Descriptors": [
{
"Length": 8,
"Identifier": "CUEI",
"Name": "Avail Descriptor"
}
],
"Crc32": 3608566905
}
`
cue := cuei.Json2Cue(js)
cue.AdjustPts(28.0) // Apply pts adjustment
fmt.Println("\nBytes:\n\t", cue.Encode()) // Bytes
fmt.Println("\nBase64:\n\t",cue.Encode2B64()) // Base64
fmt.Println("\nHex:\n\t",cue.Encode2Hex()) // Hex
}
- Output
Bytes:
[252 48 42 0 0 0 38 115 192 255 255 240 15 5 0 0 22 58 127 207 254 127 12 79 115
0 0 0 0 0 10 0 8 67 85 69 73 0 0 0 0 236 139 53 78]
Base64:
/DAqAAAAJnPA///wDwUAABY6f8/+fwxPcwAAAAAACgAIQ1VFSQAAAADsizVO
Hex:
0xfc302a0000002673c0fffff00f050000163a7fcffe7f0c4f7300000000000a00084355454900000000ec8b354e
Cuei is the FourCC / identifier for SCTE-35