Osprey Details
Why would you want an Osprey Box?
Osprey boxes were designed to act like a traditional cable box. They excel at tuning TV channels, which is what makes their use in Channels DVR automation so great. Highlights include:
- Cheap on the used market.
- Supported by Vendor (DirecTV)
- Built-in Ethernet
- The ability to tune by Deep Link or by Channel Number Input (unique to Osprey)
- Do not have streaming limits or "Are you still watching" prompts like the DTV App (unique to Osprey)
- Work with ADBTuner and AH4C!
Hardware Versions
-
C71KW-200 (Osprey/Late 2018) - The original, made by Samsung. Oldest and slowest.
-
C71KW-400 SKU 60164 (Osprey/2019) - Made by Wistron NeWeb Corporation, updated version, 2GB RAM.
-
C71KW-400 SKU 60233 (Osprey/late 2019) - Made by Wistron NeWeb Corporation, updated version, 4GB RAM.
-
C71KW-400 (Gemini)* - The black sticker, DirecTV refresh (away for AT&T). AFAIK, same as the 60233, manufactured all the way through 2023
-
Gemini Air - Dongle (Chromecast) style, can buy from DirecTV, super expensive but faster than Osprey.
Sourcing Used Hardware
New or refurb devices are no longer available from DirecTV. The best sources I found is eBay, but others report luck with Walmart and Amazon. When selecting a device, look for screenshots of the DirecTV Login screen in the postings pictures. There is a slight chance some of the very old AT&T versions will not update firmware.
I purchased four of the 60164 models from this eBay vendor, and they worked just fine. I have no affiliation with this seller: Aplera Inc | eBay Stores
Black Label Ospreys
The newest, and last revision of the Osprey boxes were the Gemini versions produced from 2021 to about 2023. The are identical to the C71KW-400 SKU 60233 model, but have a distinct black label instead of green one. If you find these, you will be getting the best hardware version of the Osprey with 4GB of RAM. But there is a catch.
Starting sometime in 2023, these devices could be used for either DirecTV Satellite or Streaming. You may get one with Satellite firmware, which will not work on Streaming. Most models made 2022 or earlier will be safe to use for Streaming. If you find you have satellite firmware, you can use this document to try and convert. I have not confirmed this is functional: DirecTV Stream C71KW-400 Flip Satellite > Stream - Google Docs
Gemini Air
They are the newest hardware, in dongle form. IMHO they offer low value due to cost. They should work just as any normal Osprey. I would recommend avoiding them for now.
2GB RAM (60164) vs 4GB RAM (60233)
There is a difference in performance, mainly in tuning speed when waking the device. However, the quality of the stream is the same. While the larger amount of RAM is nice, I would not fret if you find a good deal on the more common 2GB model. I have a mix of both in my setup.
Sleep or No Sleep - Power Savings and Heat
The Osprey boxes are older, with a design all the way back to 2018. They are don't use a ton of power, but they can get warm, especially if you stack a few together. I let my Osprey boxes sleep between each channel tuning. This takes a little longer to wake for next tune, but it keeps my network quiet. Others, including @mackid1993 have a different take.
Prepping for Production
Over the years I've tested the Osprey Boxes to get the most out of my LinkPi Encoder and ADBT/AH4C tuner setups. Here are a few recommendations, all found in settings (somewhere, doing this from memory):
- Disable HDMI CEC
- Disable HDR
- Set Preference on Wake to return to Last Channel, not Home Screen.
- Disable Surround Sound, set to Stereo
- Set to automatically select your DirecTV profile (if you have multiple) on reboot.
- Disable Deep Sleep or sleep after four hours if you intend to let them run all the time.
- Use ADB to disable DOZE setting, to avoid deep sleep, especially for the DirecTV app (launcher on the Osprey)
- Tune a Channel with sports, turn off sports mode, or score mode (forget what it's called)
- Advanced: Remove any unnecessary apps using ADB shell. This speeds things up.
Quick Cleanup of Unwanted Apps using Windows Batch File
You can copy the following into a batch file, run once connect to Osprey via ADB Shell to bulk de-bloat preloaded apps.
@echo off
FOR %%P IN (
com.peacocktv.peacockandroid
com.pandora.android.atv
com.espn.score_center
com.playworks.freegames
com.amazon.amazonvideo.livingroom
com.discovery.discoveryplus.mobile
com.hulu.livingroomplus
com.wbd.stream
com.glance.tv.directv
com.disney.disneyplus
) DO (
echo Uninstalling %%P...
adb shell pm uninstall -k --user 0 %%P
)
echo Done.
pause
For debloat on Linux/Unix, refer to post by @mutebutton: DirecTV Osprey/Gemini Boxes - #17 by mutebutton
ADBTuner vs AH4C
Both are great ways to use Osprey boxes. I tested and contributed the config to use AH4C to tune Osprey boxes using Channel Number input back in 2024 (ish). This works really well as the channel numbers don't change. Very reliable.
ADBTuner is what I use currently, with deep links. This work really well, is faster and more seamless than by channel number.
If Deep Links every stop working, you can always fall back to AH4C to tune. Options are good.
Using Osprey for other Android Apps
Yes. You can. I recommend you don't. Where the Ospreys tune DirecTV channels extremely well, opening apps is not great. For the few apps I like to use, I have Onn 4K Plus boxes which are much faster and more predicable for automating deep links.
ADBTuner Setup Sample
Once you get ADBTuner setup, and your Osprey connected, you will need a tuning configuration and a channel list. Let's start with the configuration.
The example below is a copy of my working Config for Ospreys. You don't techncially need a custom config, but it makes onboarding a little easier.
Create a new config, copy in everything below. You can rename it whatever you like. This is my working DirecTV Osprey Deep Link (DODL) that runs my production every day.
{
"name": "DirecTV Osprey Deep Link (DODL)",
"author": "",
"version": "0",
"description": "Fast launch of Osprey Hardware. Wake, Tune, Sleep.",
"uuid": "566bb682-790c-4dea-ad80-024872b1f26e",
"global_options": {
"wait_for_video_playback_detection": true,
"use_fixed_delay": false,
"fixed_delay_seconds": 0,
"check_for_and_clear_whos_watching_prompts": false
},
"pre_tune_commands": [
"input keyevent 224"
],
"tune_commands": [
"am start -W -a android.intent.action.VIEW -d '||TARGET_URL_OR_IDENTIFIER||' '||TARGET_PACKAGE_NAME||'"
],
"post_tune_commands": [
"input keyevent 26"
]
}
Second, you'll need is a list of channels. Here is a channel export, sorted to match DirecTV channel numbers. It should cover most all channels on DirecTV, but you may need to add any extra channels you have manually. This list also matches the Configuration UUID from the previous step. You will need to copy this list into a JSON file, then import into ADBTuner.
[{"provider_name": "DirecTV", "number": 202, "name": "CNNHD", "url": "https://deeplink.directvnow.com/tune/live/channel/CNNHD/d3603aea-f5d8-e789-786c-43c5e8799428", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "58646", "guide_offset_hours": "", "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "1.0"}, {"provider_name": "DirecTV", "number": 206, "name": "ESPN HD", "url": "https://deeplink.directvnow.com/tune/live/channel/ESPNHD/dede9246-d012-a0b5-3a0d-47e1dab9aad8", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "32645", "guide_offset_hours": "", "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "2.0"}, {"provider_name": "DirecTV", "number": 209, "name": "ESPN2 HD", "url": "https://deeplink.directvnow.com/tune/live/channel/ESPN2HD/86803936-4000-2af7-19e9-81ba8fa148d8", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "45507", "guide_offset_hours": "", "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "3.0"}, {"provider_name": "DirecTV", "number": 214, "name": "RACERNetwork", "url": "https://deeplink.directvnow.com/tune/live/channel/RACER/351b0623-e45c-790e-a36f-afb5a842cd04", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "61036", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "4.0"}, {"provider_name": "DirecTV", "number": 219, "name": "FS1", "url": "https://deeplink.directvnow.com/tune/live/channel/FS1HD/5c55c82f-c5cb-2aa5-6376-cc868d5cdc32", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "5.0"}, {"provider_name": "DirecTV", "number": 229, "name": "HGTV", "url": "https://deeplink.directvnow.com/tune/live/channel/HGTVHD/deaa46a3-836f-58f3-f897-73a42289a940", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "14902", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "6.0"}, {"provider_name": "DirecTV", "number": 231, "name": "Food Network", "url": "https://deeplink.directvnow.com/tune/live/channel/foodHD/7822f08f-c09d-d890-2b46-948766f9f571", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "12574", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "7.0"}, {"provider_name": "DirecTV", "number": 235, "name": "Tastemade", "url": "https://deeplink.directvnow.com/tune/live/channel/TASTE/6a0016fd-74ec-7d3e-973f-da042697284d", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "107076", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "8.0"}, {"provider_name": "DirecTV", "number": 236, "name": "E HD", "url": "https://deeplink.directvnow.com/tune/live/channel/E!HD/b4bd8603-8a28-c738-450b-b43807610760", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "61812", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "9.0"}, {"provider_name": "DirecTV", "number": 237, "name": "Bravo", "url": "https://deeplink.directvnow.com/tune/live/channel/BRVOHD/aad256ef-1e09-f926-a05e-2591a809ffff", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "58625", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "10.0"}, {"provider_name": "DirecTV", "number": 238, "name": "ReelzChannel HD", "url": "https://deeplink.directvnow.com/tune/live/channel/REELZHD/c3fbdc9f-44b7-76e3-23e9-cde81c5b3117", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "68385", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "11.0"}, {"provider_name": "DirecTV", "number": 239, "name": "Sundance", "url": "https://deeplink.directvnow.com/tune/live/channel/SUNDHD/d94cb013-806e-43f9-c316-31ed9073b3d3", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "71280", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "12.0"}, {"provider_name": "DirecTV", "number": 241, "name": "Paramount TV", "url": "https://deeplink.directvnow.com/tune/live/channel/PARHD/6924fc10-8306-4009-6495-714764f0dbf6", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "59186", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "13.0"}, {"provider_name": "DirecTV", "number": 242, "name": "USA Network", "url": "https://deeplink.directvnow.com/tune/live/channel/USAHD/28bbbe87-9c3b-5da7-4ad4-9868916b173d", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "58452", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "14.0"}, {"provider_name": "DirecTV", "number": 244, "name": "Syfy HD", "url": "https://deeplink.directvnow.com/tune/live/channel/SyfyHD/148e9301-574b-e202-9f1d-5eaac40731ac", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "58623", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "15.0"}, {"provider_name": "DirecTV", "number": 245, "name": "TNT HD", "url": "https://deeplink.directvnow.com/tune/live/channel/TNTHD/acf51074-6940-81d8-2355-c2eb610e0afc", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "42642", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "16.0"}, {"provider_name": "DirecTV", "number": 246, "name": "truTV HD", "url": "https://deeplink.directvnow.com/tune/live/channel/truTVHD/e7971467-59df-3be6-5711-8b9f72b70787", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "64490", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "17.0"}, {"provider_name": "DirecTV", "number": 247, "name": "TBS HD", "url": "https://deeplink.directvnow.com/tune/live/channel/TBSHD/ded1f9a7-a3e2-503d-7129-3e31e5257fae", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "58515", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "18.0"}, {"provider_name": "DirecTV", "number": 248, "name": "FX HD", "url": "https://deeplink.directvnow.com/tune/live/channel/FXHD/f1281894-b977-5b3a-596d-5cf3b1b176ca", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "58574", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "19.0"}, {"provider_name": "DirecTV", "number": 249, "name": "Comedy Central", "url": "https://deeplink.directvnow.com/tune/live/channel/COMHD/853e2bbe-abda-d6b7-26c9-69fbe2d007ef", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "62420", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "20.0"}, {"provider_name": "DirecTV", "number": 252, "name": "Lifetime", "url": "https://deeplink.directvnow.com/tune/live/channel/LIFEHD/bab3ef03-eeac-b5b1-a157-1a98bf4fbbde", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "60150", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "21.0"}, {"provider_name": "DirecTV", "number": 254, "name": "AMC HD", "url": "https://deeplink.directvnow.com/tune/live/channel/AMCHD/91f974cf-5346-2c4a-47c6-ad3326597a6b", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "59337", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "22.0"}, {"provider_name": "DirecTV", "number": 256, "name": "TCM HD", "url": "https://deeplink.directvnow.com/tune/live/channel/TCMHD/cca34ba0-ffc4-bcdd-16d1-20469ae2f1c9", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "64312", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "23.0"}, {"provider_name": "DirecTV", "number": 259, "name": "FXX HD", "url": "https://deeplink.directvnow.com/tune/live/channel/FXXHD/79dfae40-37b1-adf0-d95b-97c72f792a02", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "66379", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "24.0"}, {"provider_name": "DirecTV", "number": 260, "name": "WE TV", "url": "https://deeplink.directvnow.com/tune/live/channel/WEHD/af87404f-791a-a30f-c3f9-484abfce0452", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "59296", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "25.0"}, {"provider_name": "DirecTV", "number": 264, "name": "BBC America", "url": "https://deeplink.directvnow.com/tune/live/channel/BBCAHD/aade5336-7457-df09-bcfe-7485240a2f8d", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "64492", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "26.0"}, {"provider_name": "DirecTV", "number": 267, "name": "EarthxTV", "url": "https://deeplink.directvnow.com/tune/live/channel/EARTHX/76c132b0-fa3f-ac34-bc39-b0fecdc68e49", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "126128", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "27.0"}, {"provider_name": "DirecTV", "number": 269, "name": "HISTORY", "url": "https://deeplink.directvnow.com/tune/live/channel/HISTHD/3d2a7de5-af2e-b845-da1c-17d51e5f156a", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "57708", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "28.0"}, {"provider_name": "DirecTV", "number": 271, "name": "VICE", "url": "https://deeplink.directvnow.com/tune/live/channel/VICEHD/5d43cf2a-99f7-f804-499b-4409953e578d", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "65732", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "29.0"}, {"provider_name": "DirecTV", "number": 274, "name": "Ovation HD", "url": "https://deeplink.directvnow.com/tune/live/channel/OVTVHD/334adfc3-a627-41bd-7724-f313e9101697", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "69061", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "30.0"}, {"provider_name": "DirecTV", "number": 276, "name": "National Geographic Channel", "url": "https://deeplink.directvnow.com/tune/live/channel/NGCHD/2b76c29e-325d-a699-9a6c-99bbe6a7c765", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "49438", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "31.0"}, {"provider_name": "DirecTV", "number": 278, "name": "DSC HD", "url": "https://deeplink.directvnow.com/tune/live/channel/DSCHD/1755a18d-4cf4-8440-8f4a-bd73849cd9d6", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "56905", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "32.0"}, {"provider_name": "DirecTV", "number": 280, "name": "TLC HD", "url": "https://deeplink.directvnow.com/tune/live/channel/TLCHD/88bbbc54-9107-45ec-26b0-a79707a87bb2", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "57391", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "33.0"}, {"provider_name": "DirecTV", "number": 281, "name": "MotorTrend", "url": "https://deeplink.directvnow.com/tune/live/channel/MTHD/649c0044-750a-d41a-9d3d-55229567a62f", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "31046", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "34.0"}, {"provider_name": "DirecTV", "number": 282, "name": "Animal Planet", "url": "https://deeplink.directvnow.com/tune/live/channel/APLHD/6b8b578e-eaa0-8086-4803-340763f93d36", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "57394", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "35.0"}, {"provider_name": "DirecTV", "number": 285, "name": "Investigation Discovery", "url": "https://deeplink.directvnow.com/tune/live/channel/IDHD/29ef0716-ed45-4e47-5185-d4384199b291", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "65342", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "36.0"}, {"provider_name": "DirecTV", "number": 288, "name": "PBS Kids HD", "url": "https://deeplink.directvnow.com/tune/live/channel/PBSK/71932d04-1596-5e58-992b-300394cedca9", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "101364", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "37.0"}, {"provider_name": "DirecTV", "number": 289, "name": "Disney Junior HD", "url": "https://deeplink.directvnow.com/tune/live/channel/DSJRHD/74b13512-5e2c-8c70-15d0-d1c8b9fda9b2", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "74885", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "38.0"}, {"provider_name": "DirecTV", "number": 290, "name": "Disney Channel HD", "url": "https://deeplink.directvnow.com/tune/live/channel/DISeHD/22f13b87-4c9d-9674-f01d-328925c190e9", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "59684", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "39.0"}, {"provider_name": "DirecTV", "number": 292, "name": "Disney XD HD", "url": "https://deeplink.directvnow.com/tune/live/channel/DXDHD/d5b8d53c-1409-d612-3436-d7bccebc4e04", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "60006", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "40.0"}, {"provider_name": "DirecTV", "number": 293, "name": "Baby First HD", "url": "https://deeplink.directvnow.com/tune/live/channel/BABY/dc98eaf2-8e61-8222-e2a3-54dcb9e3d08a", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "50338", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "41.0"}, {"provider_name": "DirecTV", "number": 296, "name": "Cartoon Network", "url": "https://deeplink.directvnow.com/tune/live/channel/CNeHD/2336facb-8e11-c83b-b49f-4e54682104e3", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "60048", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "42.0"}, {"provider_name": "DirecTV", "number": 298, "name": "BOOM", "url": "https://deeplink.directvnow.com/tune/live/channel/Boom/e331455c-dfa0-7d05-2b47-2d22768394b9", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "21883", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "43.0"}, {"provider_name": "DirecTV", "number": 299, "name": "Nickelodeon", "url": "https://deeplink.directvnow.com/tune/live/channel/NIKeHD/ed9654e0-a239-473b-2654-f45e655b183c", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "59432", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "44.0"}, {"provider_name": "DirecTV", "number": 303, "name": "TeenNick", "url": "https://deeplink.directvnow.com/tune/live/channel/TNCK/dacae6da-950d-bc52-9e77-a120799ca097", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "59036", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "45.0"}, {"provider_name": "DirecTV", "number": 304, "name": "TV Land", "url": "https://deeplink.directvnow.com/tune/live/channel/TVLDHD/b24b7b6f-c840-e216-e73c-7d32d9eecbda", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "73541", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "46.0"}, {"provider_name": "DirecTV", "number": 305, "name": "ION", "url": "https://deeplink.directvnow.com/tune/live/channel/IONEHD/a6740f2c-81c8-f263-90ea-ac83df064f10", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "76894", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "47.0"}, {"provider_name": "DirecTV", "number": 307, "name": "NewsNation", "url": "https://deeplink.directvnow.com/tune/live/channel/NwsNnHD/870c91a5-e875-37f0-3c4f-d1b41ec6b831", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "91096", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "48.0"}, {"provider_name": "DirecTV", "number": 311, "name": "Freeform HD", "url": "https://deeplink.directvnow.com/tune/live/channel/FRFMHD/d3046aab-71b5-2d44-1b53-fcab4c9d7cad", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "59615", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "49.0"}, {"provider_name": "DirecTV", "number": 312, "name": "Hallmark Channel", "url": "https://deeplink.directvnow.com/tune/live/channel/HALLHD/a2236f35-6af2-3c7f-bf9d-979acaec1251", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "66268", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "50.0"}, {"provider_name": "DirecTV", "number": 314, "name": "Family Movie Classics", "url": "https://deeplink.directvnow.com/tune/live/channel/FMC/57b6cb4b-1a42-2381-901c-16a2813c6492", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "122068", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "51.0"}, {"provider_name": "DirecTV", "number": 323, "name": "FETV", "url": "https://deeplink.directvnow.com/tune/live/channel/FETV/3ef9f466-918c-40c8-a141-280f8d15f623", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "73413", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "52.0"}, {"provider_name": "DirecTV", "number": 327, "name": "CMT", "url": "https://deeplink.directvnow.com/tune/live/channel/CMTHD/61086ae5-48ce-8085-6d40-1da956771eba", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "10138", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "53.0"}, {"provider_name": "DirecTV", "number": 328, "name": "TV One", "url": "https://deeplink.directvnow.com/tune/live/channel/TV1/95d012f3-9276-a155-be33-96d29a3bf2e5", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "61960", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "54.0"}, {"provider_name": "DirecTV", "number": 329, "name": "BET HD", "url": "https://deeplink.directvnow.com/tune/live/channel/BETHD/1c362f35-5526-952d-b892-b1b8492d3d54", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "63236", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "55.0"}, {"provider_name": "DirecTV", "number": 331, "name": "MTV HD", "url": "https://deeplink.directvnow.com/tune/live/channel/MTVHD/9ec54b53-8d07-7efc-99a7-349057b95eed", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "60964", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "56.0"}, {"provider_name": "DirecTV", "number": 332, "name": "MTV2 HD", "url": "https://deeplink.directvnow.com/tune/live/channel/MTV2HD/721ab65b-5333-8c23-4a03-3fff869176c9", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "75077", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "57.0"}, {"provider_name": "DirecTV", "number": 333, "name": "IFC HD", "url": "https://deeplink.directvnow.com/tune/live/channel/IFCHD/156dda5e-4d82-707a-ee92-cd9fd017f425", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "59444", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "58.0"}, {"provider_name": "DirecTV", "number": 334, "name": "REVOLT", "url": "https://deeplink.directvnow.com/tune/live/channel/RVLTHD/541dd341-6a6d-19e4-58cf-b1d6469c4c05", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "83098", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "59.0"}, {"provider_name": "DirecTV", "number": 335, "name": "VH1 HD", "url": "https://deeplink.directvnow.com/tune/live/channel/VH1HD/f4d9239f-9378-1beb-9ab3-23c07a0b1473", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "60046", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "60.0"}, {"provider_name": "DirecTV", "number": 340, "name": "AXSTV", "url": "https://deeplink.directvnow.com/tune/live/channel/AXSTV/d0c3c9df-90af-6f4a-5ad0-ab0e0d646dd5", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "28506", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "61.0"}, {"provider_name": "DirecTV", "number": 341, "name": "Cleo TV", "url": "https://deeplink.directvnow.com/tune/live/channel/CLEOTV/abb3ce13-34f9-a681-7a07-ccee20166ee1", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "110289", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "62.0"}, {"provider_name": "DirecTV", "number": 342, "name": "theGrio", "url": "https://deeplink.directvnow.com/tune/live/channel/GRIOTV/bdc5570f-ff4d-776f-157d-cf398c4d0853", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "132272", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "63.0"}, {"provider_name": "DirecTV", "number": 345, "name": "RFD-TV", "url": "https://deeplink.directvnow.com/tune/live/channel/RFDTV/8653742c-ddfd-32d3-e9c9-8c3489892ff6", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "63717", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "64.0"}, {"provider_name": "DirecTV", "number": 347, "name": "The First", "url": "https://deeplink.directvnow.com/tune/live/channel/TheFirst/4bdf80f2-d09d-45d5-b98a-86da258f373e", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "114934", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "65.0"}, {"provider_name": "DirecTV", "number": 349, "name": "Newsmax TV", "url": "https://deeplink.directvnow.com/tune/live/channel/NEWSMXH/533f3fad-e91d-5cbf-6f80-82db799e4953", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "97163", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "66.0"}, {"provider_name": "DirecTV", "number": 350, "name": "C-SPAN", "url": "https://deeplink.directvnow.com/tune/live/channel/CSP1/c167f6c4-9128-4043-d798-50a8df3f29de", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "10161", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "67.0"}, {"provider_name": "DirecTV", "number": 351, "name": "C-SPAN2", "url": "https://deeplink.directvnow.com/tune/live/channel/CSP2/49943603-c8bb-1a02-9621-15c8e95ecf7c", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "10162", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "68.0"}, {"provider_name": "DirecTV", "number": 353, "name": "Bloomberg TV", "url": "https://deeplink.directvnow.com/tune/live/channel/BTVHD/862d91ba-d234-e4bc-1caa-79726755fd67", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "71799", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "69.0"}, {"provider_name": "DirecTV", "number": 354, "name": "Cheddar News", "url": "https://deeplink.directvnow.com/tune/live/channel/CHDR/3180919e-9228-678f-baa7-88a09c369a95", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "109333", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "70.0"}, {"provider_name": "DirecTV", "number": 355, "name": "CNBC HD", "url": "https://deeplink.directvnow.com/tune/live/channel/CNBCHD/a2ce2e53-bc11-775d-b070-e3c2d4a62d99", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "58780", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "71.0"}, {"provider_name": "DirecTV", "number": 356, "name": "MSNBC", "url": "https://deeplink.directvnow.com/tune/live/channel/MSNBC/6ea83d29-e16f-7ab5-397e-6efb32bbcba9", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "64241", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "72.0"}, {"provider_name": "DirecTV", "number": 358, "name": "CNNi HD", "url": "https://deeplink.directvnow.com/tune/live/channel/CNNiHD/ad9a7dfd-d780-1be2-adf2-a449399254f1", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "10146", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "73.0"}, {"provider_name": "DirecTV", "number": 359, "name": "Fox Business Network", "url": "https://deeplink.directvnow.com/tune/live/channel/FBNHD/b0129946-46f3-f80f-42ea-315f64eeaac0", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "58718", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "74.0"}, {"provider_name": "DirecTV", "number": 360, "name": "Fox News Channel", "url": "https://deeplink.directvnow.com/tune/live/channel/FNCHD/5f3323ab-7390-8fcc-177f-bf9cc8000bcf", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "60179", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "75.0"}, {"provider_name": "DirecTV", "number": 363, "name": "FOXWX", "url": "https://deeplink.directvnow.com/tune/live/channel/FOXWX/ecd16979-bf5c-6f24-2575-11788b27f387", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "93141", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "76.0"}, {"provider_name": "DirecTV", "number": 369, "name": "Daystar HD", "url": "https://deeplink.directvnow.com/tune/live/channel/DSTRHD/6ee7980c-e134-7e7a-7bd0-ddc88fb558cb", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "87001", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "77.0"}, {"provider_name": "DirecTV", "number": 381, "name": "Aspire HD", "url": "https://deeplink.directvnow.com/tune/live/channel/ASPHD/63976b4a-449a-c192-ff84-10c5d0c18fd2", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "97409", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "78.0"}, {"provider_name": "DirecTV", "number": 383, "name": "Justice Central HD", "url": "https://deeplink.directvnow.com/tune/live/channel/JCHD/cf7d17e0-f70e-9775-73a4-bd109035b169", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "78850", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "79.0"}, {"provider_name": "DirecTV", "number": 386, "name": "FM HD", "url": "https://deeplink.directvnow.com/tune/live/channel/FM HD/953bc9f7-4dc5-93b4-8052-2a3ba1cfe4af", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "72094", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "80.0"}, {"provider_name": "DirecTV", "number": 565, "name": "HallmarkMystery", "url": "https://deeplink.directvnow.com/tune/live/channel/HMYSHD/d120a585-8155-4df6-b294-2808d6e3f640", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "46710", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "81.0"}, {"provider_name": "DirecTV", "number": 566, "name": "HDNETMOVIES", "url": "https://deeplink.directvnow.com/tune/live/channel/HDNM/427146c7-ba72-f092-5c39-a973864c1429", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "33668", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "82.0"}, {"provider_name": "DirecTV", "number": 604, "name": "PursuitChannel", "url": "https://deeplink.directvnow.com/tune/live/channel/PRST/aefee661-f332-a0e1-9232-17775d8eb624", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "84542", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "83.0"}, {"provider_name": "DirecTV", "number": 3204, "name": "HLN", "url": "https://deeplink.directvnow.com/tune/live/channel/HLN/6d1f5d8a-9616-b2aa-fd67-190f5f108591", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "10145", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "84.0"}, {"provider_name": "DirecTV", "number": 3361, "name": "AccuWeather", "url": "https://deeplink.directvnow.com/tune/live/channel/ACCUHD/dc033f1c-cc4a-adb2-fc2e-9188dc2d36ec", "package_name": "com.att.tv.openvideo", "alternate_package_name": "", "tvc_guide_stationid": "91994", "guide_offset_hours": 0, "configuration_uuid": "566bb682-790c-4dea-ad80-024872b1f26e", "sort_order": "85.0"}]
Please Note: Matching channels to DirecTV numbers and allowing my Ospreys to sleep after each tune is just my preference. There are other ways to build your config. Feel free to ask questions in this thread. Plenty of Osprey users happy to share setups.
Dealing with a used Osprey that is attached to an existing DTV Account - The Auto Login Challenge
When purchasing used Osprey, you may run into one that is still attached to an previous owners DirecTV Account. This Auto Login is a feature of DirecTV. Where is convenient when you factory reset your device, you can't de register with a normal reset or from any menu options. Luckily there is a way to work around this challenge.
- Do a factory reset by holding the red button on side for 10+ seconds.
- Plug the Osprey into Ethernet, power up and allow all updates to complete.
- Do a second factory reset by holding the red button on side for 10+ seconds.
- Walk through the initial setup until you get to "checking for updates".
- The second the updates complete pull the Ethernet Cable.
- Wait for the Account Login Screen, plug Ethernet back in.
- Log in and complete setup.
I have tested this and confirmed to work on a Black Label Osprey.
Consolidating Transformers, Use of POE - DC Power Sizes
The Osprey uses a 5.5 x 3.3mm Male Plug with a center pin for DC Power. Since the default Osprey power brick is a laptop size transformer, you may want to consolidate into a multiple tap adapter, or convert from PoE. Great info from @jagrim below.
What else?
You tell me! Or more accurately, ask me or any one of the awesome Community Members in this thread. If you are interested in taking the Osprey journey, do it. We'll help.
Edit Disclaimer: I may go back and periodically add new info to this post, or fix grammar issues found on revision read.