abema / go-mp4

Go library for reading and writing MP4 file
https://dev.to/sunfishshogi/go-mp4-golang-library-and-cli-tool-for-mp4-52o1
MIT License
464 stars 30 forks source link

Is it possible to use the library to concatenate AAC fragments into a single MP4 file? #155

Closed laurento closed 1 year ago

laurento commented 1 year ago

I'm trying to understand if your library can be used to concatenate a number or AAC audio fragments into one single mp4 audio file without using external binaries (e.g. ffmpeg).

Do you happen to have a code snippet to demonstrate such use-case?

sunfish-shogi commented 1 year ago

Do you happen to have a code snippet to demonstrate such use-case?

Sorry, I have no sample code for this use-case so far.

go-mp4 supports only low-level MP4 box structure parsing or editing. So, this library is not suitable for complex box structure conversion.

laurento commented 1 year ago

Many thanks for your prompt reply. Keep up the good work!