Opened 17 months ago

Last modified 17 months ago

#10080 new defect

ffmpeg makes a new request for DELETE regardless of http_persistent

Reported by: ffmpeguser68068 Owned by:
Priority: normal Component: avformat
Version: unspecified Keywords:
Cc: Blocked By:
Blocking: Reproduced by developer: no
Analyzed by developer: no

Description

Summary of the bug:

ffmpeg creates a new tcp/http connection for deleting segments (DELETE request), regardless of http_persistent

if http_persistent is set to one, create a separate persistent connection (for DELETE requests), the same way as PUT request connections (one for media segments, and one for the playlist)

How to reproduce:

ffmpeg -re \
	-i testfile.flac \
	-vn -c:a libopus \
	-f dash \
	-seg_duration 4 -window_size 4 -use_template 1 -use_timeline 1 -extra_window_size 0 \
	-method PUT -http_persistent 1 \
	-init_seg_name "streaminit-\$RepresentationID\$.\$ext\$" \
	-media_seg_name "media-\$RepresentationID\$-\$Number%08d\$.\$ext\$" \
	'http://127.0.0.1/webdav/stream.mpd'

Attachments (1)

packet.png (159.7 KB ) - added by ffmpeguser68068 17 months ago.
Packet capture screenshot

Download all attachments as: .zip

Change History (2)

by ffmpeguser68068, 17 months ago

Attachment: packet.png added

Packet capture screenshot

comment:1 by ffmpeguser68068, 17 months ago

Component: undeterminedavformat
Note: See TracTickets for help on using tickets.