1 diff --git a/homeassistant/components/ffmpeg/__init__.py b/homeassistant/components/ffmpeg/__init__.py
2 index 4ab4ee32a0..0f04f037f6 100644
3 --- a/homeassistant/components/ffmpeg/__init__.py
4 +++ b/homeassistant/components/ffmpeg/__init__.py
5 @@ -46,7 +46,7 @@ CONF_FFMPEG_BIN = "ffmpeg_bin"
6 CONF_EXTRA_ARGUMENTS = "extra_arguments"
9 -DEFAULT_BINARY = "ffmpeg"
10 +DEFAULT_BINARY = "@ffmpeg@"
12 CONFIG_SCHEMA = vol.Schema(
14 diff --git a/tests/components/ffmpeg/test_binary_sensor.py b/tests/components/ffmpeg/test_binary_sensor.py
15 index 6eec115d6f..c55b4fb26c 100644
16 --- a/tests/components/ffmpeg/test_binary_sensor.py
17 +++ b/tests/components/ffmpeg/test_binary_sensor.py
18 @@ -24,7 +24,7 @@ async def test_noise_setup_component(hass: HomeAssistant) -> None:
19 await async_setup_component(hass, "binary_sensor", CONFIG_NOISE)
20 await hass.async_block_till_done()
22 - assert hass.data["ffmpeg"].binary == "ffmpeg"
23 + assert hass.data["ffmpeg"].binary == "@ffmpeg@"
24 assert hass.states.get("binary_sensor.ffmpeg_noise") is not None
27 @@ -35,7 +35,7 @@ async def test_noise_setup_component_start(mock_start, hass: HomeAssistant):
28 await async_setup_component(hass, "binary_sensor", CONFIG_NOISE)
29 await hass.async_block_till_done()
31 - assert hass.data["ffmpeg"].binary == "ffmpeg"
32 + assert hass.data["ffmpeg"].binary == "@ffmpeg@"
33 assert hass.states.get("binary_sensor.ffmpeg_noise") is not None
35 hass.bus.async_fire(EVENT_HOMEASSISTANT_START)
36 @@ -55,7 +55,7 @@ async def test_noise_setup_component_start_callback(mock_ffmpeg, hass: HomeAssis
37 await async_setup_component(hass, "binary_sensor", CONFIG_NOISE)
38 await hass.async_block_till_done()
40 - assert hass.data["ffmpeg"].binary == "ffmpeg"
41 + assert hass.data["ffmpeg"].binary == "@ffmpeg@"
42 assert hass.states.get("binary_sensor.ffmpeg_noise") is not None
44 hass.bus.async_fire(EVENT_HOMEASSISTANT_START)
45 @@ -80,7 +80,7 @@ async def test_motion_setup_component(hass: HomeAssistant) -> None:
46 await async_setup_component(hass, "binary_sensor", CONFIG_MOTION)
47 await hass.async_block_till_done()
49 - assert hass.data["ffmpeg"].binary == "ffmpeg"
50 + assert hass.data["ffmpeg"].binary == "@ffmpeg@"
51 assert hass.states.get("binary_sensor.ffmpeg_motion") is not None
54 @@ -91,7 +91,7 @@ async def test_motion_setup_component_start(mock_start, hass: HomeAssistant):
55 await async_setup_component(hass, "binary_sensor", CONFIG_MOTION)
56 await hass.async_block_till_done()
58 - assert hass.data["ffmpeg"].binary == "ffmpeg"
59 + assert hass.data["ffmpeg"].binary == "@ffmpeg@"
60 assert hass.states.get("binary_sensor.ffmpeg_motion") is not None
62 hass.bus.async_fire(EVENT_HOMEASSISTANT_START)
63 @@ -111,7 +111,7 @@ async def test_motion_setup_component_start_callback(mock_ffmpeg, hass: HomeAssi
64 await async_setup_component(hass, "binary_sensor", CONFIG_MOTION)
65 await hass.async_block_till_done()
67 - assert hass.data["ffmpeg"].binary == "ffmpeg"
68 + assert hass.data["ffmpeg"].binary == "@ffmpeg@"
69 assert hass.states.get("binary_sensor.ffmpeg_motion") is not None
71 hass.bus.async_fire(EVENT_HOMEASSISTANT_START)
72 diff --git a/tests/components/ffmpeg/test_init.py b/tests/components/ffmpeg/test_init.py
73 index 452a818859..41ba776436 100644
74 --- a/tests/components/ffmpeg/test_init.py
75 +++ b/tests/components/ffmpeg/test_init.py
76 @@ -81,7 +81,7 @@ def test_setup_component():
77 with assert_setup_component(1):
78 setup_component(hass, ffmpeg.DOMAIN, {ffmpeg.DOMAIN: {}})
80 - assert hass.data[ffmpeg.DATA_FFMPEG].binary == "ffmpeg"
81 + assert hass.data[ffmpeg.DATA_FFMPEG].binary == "@ffmpeg@"