-
-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FastForwardBegin = 8 #2230
Comments
Fast forwarding/reverse is currently not supported. I think it mostly is because no one has requested it. Would have to try it out to ensure it actually works, but would otherwise be really easy to implement. Should be done for both MRP and Companion. |
Fast forward and rewind would be a great addition! I quickly checked if pyatv/pyatv/protocols/companion/__init__.py Lines 337 to 343 in 0a0720d
with async def channel_up(self) -> None:
await self.api.mediacontrol_command(MediaControlCommand.FastForwardBegin)
async def channel_down(self) -> None:
await self.api.mediacontrol_command(MediaControlCommand.FastForwardEnd) and fast forward works (in Apple TV+)! How to get that properly implemented with a FastForward/Rewind feature is another question :-) I'd have to find time to figure out the inner workings of pyatv. One question: there is only one speed level, multiple |
I've pressed comment too fast! While in fast forward mode, |
What do you need help with?
Hi, I am trying to find the command to fast forward. I see that in pyatv/protocols/companion/api.py there is a reference to FastForwardBegin = 8 but when i do atvremote commands I don't see any fast forward command in there. How do I send a fast forward command? This is similar to pressing and holding the right key on the appletv remote.
The text was updated successfully, but these errors were encountered: