Many WordPress blogging sites have faced the same question, whether to let bloggers upload videos to the same web server as your site, i.e. self-hosted videos. The answer is No<\/strong>! Especially if your website is hosted on a shared server.<\/span> A high definition video files can easily exceed 100-200 MB, take up a lot of hard drive and memory but also demand<\/span> bandwidth and other resources,<\/span> quickly exceed the limits of the web server hosting your website, and overwhelm your website and other websites also hosted on the same server.<\/span><\/p>\n The best way to add video to your website is with <\/span>a video hosting service such as YouTube. Let the blogger upload the video to a video hosting service first, then<\/span> paste the video UR<\/span>L <\/span>to embed the video in a WordPress post or page. This way<\/span> videos will be streamed from video host\u2019s global server network without using your website\u2019s bandwidth. It will also increase the visibility of the video and your web site<\/span>.<\/span><\/p>\n How can you stop bloggers from uploading videos to your site? On the WordPress blog site, add a snippet as follows. <\/span><\/p>\n function adjust_mime_types($mime_types){ If bloggers upload a video MOV, they get<\/span>the error message:<\/span>\u00a0\u201cSorry, you don\u2019t have permission for this file type\u201d;<\/span><\/p>\n One thing worth noting is the MIME Type. <\/span>If you look up the MIME Type of MOV online, <\/span>you will get video\/quicktime.<\/p>\n But the video\/quicktime type doesn\u2019t work in Snippet.Bloggers will still be able to upload videos. Only if the MIME type is defined in WordPress that can prevent video uploading. Where can you find these definitions? <\/span>WordPress has a list of registered MIME types stored in wp-includes\/functions.php for developers use wp_get_allowed_mime_types() getting MIME file types. These are MIME file types recognized by WordPress. By looking the functions.php source code, you will find that \u2018mov|qt\u2019 is for blocking video files with the MOV extension.<\/span><\/p>\n ","protected":false},"excerpt":{"rendered":" \u5f88\u591aWordPress\u535a\u5ba2\u7f51\u7ad9\u90fd\u9047\u5230\u540c\u4e00\u4e2a\u95ee\u9898\uff0c \u8981\u4e0d\u8981\u8ba9\u535a\u5ba2\u4f5c\u8005\u4e0a\u4f20\u89c6\u9891\u5230\u60a8\u7684\u7f51\u7ad9\u7684\u540c\u4e00\u7f51\u7edc\u670d\u52a1\u5668\uff0c\u5373\u81ea\u6258\u7ba1\u89c6\u9891\u3002\u7b54\u6848\u662f\u4e0d\u8981\uff01<\/p>","protected":false},"author":8856,"featured_media":7755,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[51],"tags":[49],"class_list":["post-2200","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-51","tag-49"],"acf":[],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/chinagold.com\/en\/wp-json\/wp\/v2\/posts\/2200","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/chinagold.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/chinagold.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/chinagold.com\/en\/wp-json\/wp\/v2\/users\/8856"}],"replies":[{"embeddable":true,"href":"https:\/\/chinagold.com\/en\/wp-json\/wp\/v2\/comments?post=2200"}],"version-history":[{"count":6,"href":"https:\/\/chinagold.com\/en\/wp-json\/wp\/v2\/posts\/2200\/revisions"}],"predecessor-version":[{"id":7842,"href":"https:\/\/chinagold.com\/en\/wp-json\/wp\/v2\/posts\/2200\/revisions\/7842"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/chinagold.com\/en\/wp-json\/wp\/v2\/media\/7755"}],"wp:attachment":[{"href":"https:\/\/chinagold.com\/en\/wp-json\/wp\/v2\/media?parent=2200"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/chinagold.com\/en\/wp-json\/wp\/v2\/categories?post=2200"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/chinagold.com\/en\/wp-json\/wp\/v2\/tags?post=2200"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}
\nunset($mime_types[‘mp4|m4v’]);\u00a0 \/\/ block mp4 video
\nunset($mime_types[‘mov|qt’]); \/\/ block quicktime mov video
\nunset($mime_types[‘pdf’]); \/\/ block pdf files
\nreturn $mime_types;
\n}
\nadd_filter(‘upload_mimes’, ‘adjust_mime_types’);<\/p>\n<\/p>\n
<\/p>\n