You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am only fetching aac and dumping into mp4 file using mp4muxer_init() and mp4muxer_audio() API and trying to play the mp4 file but it does not play. On checking the mp4 file it is observed that stts, stsc, stsz, stco type are empty. I am assuming mp4muxer_init is not called properly. I am passing below arguments in mp4muxer_init() :
Is it required to call mp4muxer_video as well as it invokes write_fixed_tracka_data(mp4) API or I can only dump audio data using mp4muxer_audio API as well?
The text was updated successfully, but these errors were encountered:
I am only fetching aac and dumping into mp4 file using mp4muxer_init() and mp4muxer_audio() API and trying to play the mp4 file but it does not play. On checking the mp4 file it is observed that stts, stsc, stsz, stco type are empty. I am assuming mp4muxer_init is not called properly. I am passing below arguments in mp4muxer_init() :
aacinfo[0] = 0x11;
aacinfo[1] = 0x88; //sample rate is 48000
muxer = mp4muxer_init(mux_filename, 10000, 0, 1920, 1080, 30, 30, 0, 2, 48000, 16, 1024, aacinfo);
Is it required to call mp4muxer_video as well as it invokes write_fixed_tracka_data(mp4) API or I can only dump audio data using mp4muxer_audio API as well?
The text was updated successfully, but these errors were encountered: