Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
* [FFmpeg-devel] Update for my hls and dash patches?
@ 2023-01-03 17:12 Basel Sayeh
  2023-01-04  2:37 ` Steven Liu
  0 siblings, 1 reply; 5+ messages in thread
From: Basel Sayeh @ 2023-01-03 17:12 UTC (permalink / raw)
  To: ffmpeg-devel; +Cc: kjeyapal, lingjiujianke

Hello,


Any update or comment on these patch sets?


Enable HTTP persistent connections for hls_delete_file & 
dashenc_delete_file: 
https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=8033


Use http_read_header in http_shutdown to react to response errors: 
https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=8058


_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [FFmpeg-devel] Update for my hls and dash patches?
  2023-01-03 17:12 [FFmpeg-devel] Update for my hls and dash patches? Basel Sayeh
@ 2023-01-04  2:37 ` Steven Liu
  2023-01-05  1:19   ` Basel Sayeh
  0 siblings, 1 reply; 5+ messages in thread
From: Steven Liu @ 2023-01-04  2:37 UTC (permalink / raw)
  To: Basel Sayeh; +Cc: kjeyapal, ffmpeg-devel

Basel Sayeh <basel.sayeh@hotmail.com> 于2023年1月4日周三 01:12写道:
>
> Hello,
>
>
> Any update or comment on these patch sets?
>
>
> Enable HTTP persistent connections for hls_delete_file &
> dashenc_delete_file:
> https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=8033

https://patchwork.ffmpeg.org/project/ffmpeg/patch/DB9P191MB14827461396938910246ACE9FE1B9@DB9P191MB1482.EURP191.PROD.OUTLOOK.COM/

You should check the first patch of this series.

>
>
> Use http_read_header in http_shutdown to react to response errors:
> https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=8058
Is it will use block mode of socket?
>
>
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [FFmpeg-devel] Update for my hls and dash patches?
  2023-01-04  2:37 ` Steven Liu
@ 2023-01-05  1:19   ` Basel Sayeh
  2023-01-05  6:26     ` Steven Liu
  0 siblings, 1 reply; 5+ messages in thread
From: Basel Sayeh @ 2023-01-05  1:19 UTC (permalink / raw)
  To: Steven Liu; +Cc: kjeyapal, ffmpeg-devel


> >
> > Hello,
> >
> >
> > Any update or comment on these patch sets?
> >
> >
> > Enable HTTP persistent connections for hls_delete_file &
> > dashenc_delete_file:
> > https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=8033

> https://patchwork.ffmpeg.org/project/ffmpeg/patch/DB9P191MB14827461396938910246ACE9FE1B9@DB9P191MB1482.EURP191.PROD.OUTLOOK.COM/
>
> You should check the first patch of this series.

Do you mean i should take a look at the warnings?

> >
> >
> > Use http_read_header in http_shutdown to react to response errors:
> > https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=8058
> Is it will use block mode of socket?

Yes, it will wait for a server reply (if not sent), and react to some http errors, like 404
I am aware that it may slow the encoding/sending down, but is there any better way that it can be done?

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [FFmpeg-devel] Update for my hls and dash patches?
  2023-01-05  1:19   ` Basel Sayeh
@ 2023-01-05  6:26     ` Steven Liu
  2023-01-07  0:31       ` Basel Sayeh
  0 siblings, 1 reply; 5+ messages in thread
From: Steven Liu @ 2023-01-05  6:26 UTC (permalink / raw)
  To: Basel Sayeh; +Cc: kjeyapal, ffmpeg-devel

Basel Sayeh <basel.sayeh@hotmail.com> 于2023年1月5日周四 09:19写道:
>
>
> > >
> > > Hello,
> > >
> > >
> > > Any update or comment on these patch sets?
> > >
> > >
> > > Enable HTTP persistent connections for hls_delete_file &
> > > dashenc_delete_file:
> > > https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=8033
>
> > https://patchwork.ffmpeg.org/project/ffmpeg/patch/DB9P191MB14827461396938910246ACE9FE1B9@DB9P191MB1482.EURP191.PROD.OUTLOOK.COM/
> >
> > You should check the first patch of this series.
>
> Do you mean i should take a look at the warnings?
Yes, just fix the warning should be ok.
>
> > >
> > >
> > > Use http_read_header in http_shutdown to react to response errors:
> > > https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=8058
> > Is it will use block mode of socket?
>
> Yes, it will wait for a server reply (if not sent), and react to some http errors, like 404
> I am aware that it may slow the encoding/sending down, but is there any better way that it can be done?
Yes, you aware that, so that if a problem. I have no better way to do
that. :( Maybe other developer can give us some better way?
>


Thanks Basel

Steven.
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [FFmpeg-devel] Update for my hls and dash patches?
  2023-01-05  6:26     ` Steven Liu
@ 2023-01-07  0:31       ` Basel Sayeh
  0 siblings, 0 replies; 5+ messages in thread
From: Basel Sayeh @ 2023-01-07  0:31 UTC (permalink / raw)
  To: Steven Liu; +Cc: kjeyapal, ffmpeg-devel


On 1/5/23 09:26, Steven Liu wrote:
> Basel Sayeh <basel.sayeh@hotmail.com> 于2023年1月5日周四 09:19写道:
>>
>>>> Hello,
>>>>
>>>>
>>>> Any update or comment on these patch sets?
>>>>
>>>>
>>>> Enable HTTP persistent connections for hls_delete_file &
>>>> dashenc_delete_file:
>>>> https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=8033
>>> https://patchwork.ffmpeg.org/project/ffmpeg/patch/DB9P191MB14827461396938910246ACE9FE1B9@DB9P191MB1482.EURP191.PROD.OUTLOOK.COM/
>>>
>>> You should check the first patch of this series.
>> Do you mean i should take a look at the warnings?
> Yes, just fix the warning should be ok.

Just sent a V6 that should have no new compilation warnings,

https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=8163


>>>>
>>>> Use http_read_header in http_shutdown to react to response errors:
>>>> https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=8058
>>> Is it will use block mode of socket?
>> Yes, it will wait for a server reply (if not sent), and react to some http errors, like 404
>> I am aware that it may slow the encoding/sending down, but is there any better way that it can be done?
> Yes, you aware that, so that if a problem. I have no better way to do
> that. :( Maybe other developer can give us some better way?

I hope developers can give their input on this


_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-01-07  0:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-03 17:12 [FFmpeg-devel] Update for my hls and dash patches? Basel Sayeh
2023-01-04  2:37 ` Steven Liu
2023-01-05  1:19   ` Basel Sayeh
2023-01-05  6:26     ` Steven Liu
2023-01-07  0:31       ` Basel Sayeh

Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

This inbox may be cloned and mirrored by anyone:

	git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
		ffmpegdev@gitmailbox.com
	public-inbox-index ffmpegdev

Example config snippet for mirrors.


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git