-
Notifications
You must be signed in to change notification settings - Fork 345
Description
Hi,
i'm uploading footage to the kinesis stream directly by using a
timeout 120 gst-launch-1.0 filesrc -> kvssink
pipeline.
Sometimes the device has no connectivity it will time out, and we will try again later.
however sometimes we have bad connectivity, where to upload is progressing slowly but it still times out because of the fixed 120 sec timeout.
is there a way to check if there is any movement in the the upload ? so i can wait longer ?
i tried a plugin in the middle
filesrc -> data-throughput-checker -> kvssink
but the file gets streamed all to the kvssink in the first second (it must have a big internal buffer)
so i can not see what the actual sending part of the kvssink is up to.
Any suggestions on how i can get an indication of current throughput ?