/* NAME rtmp.go DESCRIPTION See Readme.md AUTHOR Saxon Nelson-Milton Dan Kortschak LICENSE rtmp.go is Copyright (C) 2017 the Australian Ocean Lab (AusOcean) It is free software: you can redistribute it and/or modify them under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. It is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with revid in gpl.txt. If not, see http://www.gnu.org/licenses. */ package rtmp /* #cgo CFLAGS: -I/usr/local/include/librtmp #cgo LDFLAGS: -lrtmp -lz #include #include RTMP* start_session(RTMP* rtmp, char* url, uint connect_timeout); int write_frame(RTMP* rtmp, char* data, uint data_length); int end_session(RTMP* rtmp); */ import "C" import ( "errors" "unsafe" ) // Session provides an interface for sending flv tags over rtmp. type Session interface { StartSession() error Write([]byte) error Close() error } // session provides parameters required for an rtmp communication session. type session struct { rtmp *C.RTMP url string timeout uint } var _ Session = (*session)(nil) // NewSession returns a new session. func NewSession(url string, connectTimeout uint) Session { return &session{ url: url, timeout: connectTimeout, } } // StartSession establishes an rtmp connection with the url passed into the // constructor func (s *session) StartSession() error { if s.rtmp != nil { return errors.New("rtmp: attempt to start already running session") } s.rtmp = C.start_session(s.rtmp, C.CString(s.url), C.uint(s.timeout)) if s.rtmp == nil { return errors.New("RTMP start error! Check rtmp log for details!") } return nil } // Write writes a frame (flv tag) to the rtmp connection func (s *session) Write(data []byte) error { if s.rtmp == nil { return errors.New("rtmp: attempt to write to non-running session") } if C.write_frame(s.rtmp, (*C.char)(unsafe.Pointer(&data[0])), C.uint(len(data))) != 0 { return errors.New("RTMP write error! Check rtmp log for details!") } return nil } // Close terminates the rtmp connection func (s *session) Close() error { if s.rtmp == nil { return errors.New("Tried to stop rtmp session, but not running!") } ret := C.end_session(s.rtmp) s.rtmp = nil if ret != 0 { return errors.New("RTMP end session error! Check rtmp log for details!") } return nil }