You can allow/block the different contents though the preferences:
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument("--disable-infobars")
options.add_argument("--window-size=800,600")
options.add_experimental_option("prefs", { \
"profile.default_content_setting_values.media_stream_mic": 1, # 1:allow, 2:block
"profile.default_content_setting_values.media_stream_camera": 1, # 1:allow, 2:block
"profile.default_content_setting_values.geolocation": 1, # 1:allow, 2:block
"profile.default_content_setting_values.notifications": 1 # 1:allow, 2:block
})
driver = webdriver.Chrome(chrome_options=options)