Disable “Create Audio Playlist” and “Create Video Playlist” in Add Media

I think u can do that with hooks too: Add this in functions.php in your theme:

add_filter( 'media_library_show_audio_playlist', function() { return false; });
add_filter( 'media_library_show_video_playlist', function() { return false; });