Under Review
Last Updated: 03 Jul 2017 05:00 by Eric
Imported User
Created on: 01 Jul 2017 18:46
Type: Feature Request
2
a filter for media files (audio video) like chrome developer tools have
In google chrome developer tools:

Go to:

Network -> Media

and as you are viewing the page you can see the audio files and video files are being played on the page.

Please add the same filter to filters of fiddler.

Thanks
1 comment
Eric
Posted on: 03 Jul 2017 05:00
I'm not entirely sure what you're asking for-- can you explain specifically how you'd use this?

I don't see a "Media" option in the Network tab of Chrome's developer tools.

Fiddler offers a very extensive list of filtering options including the Filtering tab and elsewhere; perhaps you're asking that the Response Type and Size box offer a "Show only video/*" and "Show only audio/*" option?

FWIW, it's trivial to emulate those today. Click Rules > Customize Rules. Scroll to OnBeforeResponse and add something like:

if (!oSession.ResponseHeaders.ExistsAndContains("video/")) oSession["ui-hide"] = "Not a video";