Go實戰--golang實現MP4視頻檔案伺服器(nareix/joy4)

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

生命不止,繼續 go go go !!!

有點忙,有點懈怠,繼續。

關於golang實現的靜態檔案伺服器之前有寫過:
Go實戰–golang實現靜態檔案伺服器(檔案查看,檔案上傳,檔案下載)

正好,最近在做視頻方面的東西,那麼先來個簡單的,實現一個提供mp4視頻檔案的伺服器吧,並且通過瀏覽器訪問播放。

MP4檔案伺服器

package mainimport (    "log"    "net/http"    "os"    "time")func ServeHTTP(w http.ResponseWriter, r *http.Request) {    video, err := os.Open("./test.mp4")    if err != nil {        log.Fatal(err)    }    defer video.Close()    http.ServeContent(w, r, "test.mp4", time.Now(), video)}func main() {    http.HandleFunc("/", ServeHTTP)    http.ListenAndServe(":8080", nil)}
package mainimport "io/ioutil"import "log"import "net/http"import "strings"type viewHandler struct{}func (vh *viewHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {    path := r.URL.Path[1:]    data, err := ioutil.ReadFile(string(path))    if err != nil {        log.Printf("Error with path %s: %v", path, err)        w.WriteHeader(404)        w.Write([]byte("404"))    }    if strings.HasSuffix(path, ".html") {        w.Header().Add("Content-Type", "text/html")    } else if strings.HasSuffix(path, ".mp4") {        w.Header().Add("Content-Type", "video/mp4")    }    w.Write(data)}func main() {    http.Handle("/", new(viewHandler))    http.ListenAndServe(":8080", nil)}

nareix/joy4

Golang audio/video library and streaming server

我們先淺嘗輒止,簡單使用一下:

package mainimport (    "fmt"    "github.com/nareix/joy4/av"    "github.com/nareix/joy4/av/avutil"    "github.com/nareix/joy4/format")func init() {    format.RegisterAll()}func main() {    file, _ := avutil.Open("test.mp4")    streams, _ := file.Streams()    for _, stream := range streams {        if stream.Type().IsAudio() {            astream := stream.(av.AudioCodecData)            fmt.Println(astream.Type(), astream.SampleRate(), astream.SampleFormat(), astream.ChannelLayout())        } else if stream.Type().IsVideo() {            vstream := stream.(av.VideoCodecData)            fmt.Println(vstream.Type(), vstream.Width(), vstream.Height())        }    }    file.Close()}

輸出:
AAC 48000 FLTP 1ch
H264 960 720

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.