Switch Video Quality
by team-ok 4.3 (11 reviews)

Switch Video Quality

Adds quality switch functionality and automatic embed code generation to the wordpress video player.

Switch Video Quality ranks #14,957 among WordPress.org plugins with 100+ active installations, is #1,393 of 6,314 in the Media category, a 4.3/5 rating from 11 reviews, and was last updated Nov 13, 2020. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 5.5 (Current: 7.1)
v1.5.7 Current Version v1.5.7
Updated 5 years ago Last Update on 13 Nov, 2020
Refreshed 15 hours ago Last Refreshed on
#1,393 of 6,314 in Media Top 25% by installs No update in over a year
View on WordPress.org
Rank
#14,957
-11 this week
Active Installs
100+
-32%
KW Avg Position
N/A
No change
Downloads
11K
+1 today
Support Resolved
0%
No change
Rating
86%
Review 4.3 out of 5
4.3 (11 reviews)

Next Milestone 200

Total Progress 32%
100+ 200+
8,326
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro

Unlock Exact Install Count

See the precise estimated active installs for this plugin, calculated from real-time ranking data.

  • Exact install estimates within tiers
  • Track install growth over time
  • Milestone progress predictions
Upgrade to Pro
Need 68 more installs to reach 200+

Rank Changes

14,897 14,942 14,987 15,031 15,076 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026
14,892 14,948 15,004 15,060 15,116 03-09-2026 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026
Current #14,957
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026
0 10 03-09-2026 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

4.3
11 reviews
Overall 86%
5
9 (82%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
2 (18%)

Security History

Source: WPVulnerability

No known vulnerabilities on record for Switch Video Quality. Checked 1 month ago.

TL;DR

AI summary of the plugin's readme

Site owners running self-hosted HTML5 videos through the WordPress video shortcode who want viewers to pick a quality or format. It adds a quality/format switcher to the default WordPress video player and can generate an iframe embed code, with optional playlists and subtitles.

  • Multiple quality/format switching
  • Playlist creation with thumbnails
  • Automatic iframe embed code
  • Multi-language subtitles
  • Drag and drop playlist reordering
  • Custom quality level labels
  • Automatic HD/4K labeling
  • Per-post enable/disable toggle

Frequently Asked Questions

Common questions about Switch Video Quality

Normal users: Ask your server administrator to increase the max filesize limit. Admins: Edit the php.ini file and change the values of upload_max_filesize, post_max_size and memory_limit.
Maybe your webserver doesn't support pseudo streaming over http. Ask your server administrator to install the missing module. Also make sure your video files are encoded properly. MP4s must have the MOOV Atom placed at the beginning of the file. I have uploaded my video as mp4 and webm, but I can select only one of them in the player At page load the plugin checks the types of html5 video your browser can play and then only the first supported file format is used.
No, sorry, the plugin is meant to be used with only one player instance per post/page. But you can have multiple posts (each with Switch Video Quality activated) displayed on a page, e.g., if you query by a certain category or tag.
There's a filter hook for doing that. Copy the following code into your functions.php and change the content of the $to_be_excluded array with the registered names of the post types you want to exclude: add_filter('svq_exclude_post_types', 'custom_svq_exclude_post_types'); function custom_svq_exclude_post_types($excluded){ $to_be_excluded = array('post_type_name', 'another_post_type_name'); $excluded = array_merge($excluded, $to_be_excluded); return $excluded; } If you don't know the registered name of a custom post type: it's shown in your browser's adress bar when you look at the post type's managing screen (after edit.php?post_type=).
Use the filter hook 'svq_default_quality'. Copy the following code into your functions.php and change the return value to whatever (unitless video height) you like: add_filter('svq_default_quality', 'set_svq_default_quality'); function set_svq_default_quality(){ return 720; } Your videos don't need to exactly match the defined quality. The one with the quality closest to (but not smaller than) the defined quality will be set as default.
Use the filter hook 'svq_embed_setting_overwrite'. Copy the following code into your functions.php and change the post IDs of the $not_active array to enable the embed functionality for all posts except the ones with the IDs you specified. You can easily modify this code to disable embedding for all posts or enable it for all posts that are in a certain category. add_filter( 'svq_embed_setting_overwrite', 'overwrite_svq_embed_setting', 10, 2); function overwrite_svq_embed_setting($setting, $post_id) { $not_active = array(32, 42); if ( !in_array($post_id, $not_active) ){ $setting = true; } return $setting; }
You can use the filter hook 'svq_embed_page_name'. Copy the following code into your functions.php and replace the page name in the return statement. add_filter( 'svq_embed_page_name', 'my_svq_embed_page_name'); function my_svq_embed_page_name(){ return 'embeds'; } Note that the default template used for generating the iframe content won't output the post content or any metadata of a specified page. If you want to add any code to the iframe, you'll need to write a custom template (see another question). But if you just want a certain page name to be a part of your embed codes, you can leave that page blank and use the default template.
For everything to work properly copy the content of the plugin's embed template and modify or add only what you need. Save it as 'svq_embeds.php' (mandatory) and upload it to your theme or child-theme directory and the plugin will automatically use it. If you want to put it somewhere else, use the filter hook 'svq_locate_template'. Copy the following code into your functions.php and change the path to the template: add_filter('svq_locate_template', 'svq_locate_custom_template'); function svq_locate_custom_template(){ return YOURCUSTOMPATH . '/svq_embeds.php'; }

Sign In / Register

You need to sign in or register to use this feature.