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
hi issue
*423 media_set_parse_sequences: invalid number of sequences 34 while getting mapping
for any json file have sequences length bigger 32 clips ,any json sequences <= 32 working with any issue.
solution
editing MAX_SEQUENCES & MAX_SOURCES from 32 to 45 by edit nginx-vod-module/vod/media_set.h file and rebuild nginx
after reboot i get connection reset from browser and Error: socket hang up from postman without any error or access in nginx logs
you can't just increase the const, the code assumes it's not larger than 32, e.g. it uses uint32_t to store a bitmask of the sequences.
going above 32 will require a thorough review of the code to find all the places that need to be changed.
hi
issue
*423 media_set_parse_sequences: invalid number of sequences 34 while getting mapping
for any json file have sequences length bigger 32 clips ,any json sequences <= 32 working with any issue.
solution
editing MAX_SEQUENCES & MAX_SOURCES from 32 to 45 by edit nginx-vod-module/vod/media_set.h file and rebuild nginx
after reboot i get connection reset from browser and Error: socket hang up from postman without any error or access in nginx logs
so how to increase MAX_SEQUENCES limit above 32 ?
my nginx config file
The text was updated successfully, but these errors were encountered: