Great job, @bnhf !
Just wanted to point out a couple things.
Looks like you copy/pasted from a post which shows 2 clicks on a url, hence you have a space and number 2 where they don't belong.
It won't hurt anything leaving "Raw": "" in the json, but it's not needed
Thanks, I appreciate the feedback. I changed that temporary hard-coded URL to an image field and the config.yaml snippet looks like this:
- title: Manually Add Recordings
icon: '<img src = "https://community-assets.getchannels.com/original/2X/5/55232547f7e8f243069080b6aec0c71872f0f537.png" width = "48px"/>'
shell: /config/manualrecordings.sh "{{ name }}" {{ channel }} {{ time }} {{ duration }} "{{ summary }}" {{ image }}
arguments:
- name: name
type: ascii_sentence
description: The name you'd like used for the recording
- name: channel
type: int
description: The channel number to use for the recording
- name: time
type: very_dangerous_raw_string
description: The time to start the recording in 24h format hh:mm
- name: duration
type: int
description: The length of the recording in minutes
- name: summary
type: ascii_sentence
description: A Description of the recording (optional)
- name: image
type: url
description: An image URL to use for the recording (http://$CHANNELS_DVR/admin/recordings/files/uploads to add images and get URL)
default: http://$CHANNELS_DVR/admin/recordings/files/uploads/your_image_number/content
With the idea that one would add their desired image to DVR-Manage-Images and then replace /your_image_number/ with the actual image number. We could also have a field for just the image number, but it seems reasonable to allow for a URL from outside of Channels DVR too.
I'll get rid of "raw" as I wasn't planning on adding a field for that anyway.
Great!
I imagine some users will want to schedule things a day or more in advance, so you might consider changing your time input to accept a date/time.
@racameron did a nice job with the script he created here
I created a quick and dirty macro in Keyboard Maestro and it filled out more of the possible fields for a manual recording. Here is the user input panel.
After converting the duration from minutes to seconds I wrote it out to a temp file and passed the json as a parameter in the curl command.
You have captured the important parameters for the manual recording. I don't know how to do it in Olivetin but setting the date/time could be made easier.
OK, I think we're in business! I've built a Channels specific version of OliveTin including a config.yaml and supporting scripts.
Currently it will do the following:
- Turn off Comskip for selected channels
- Turn Comskip back on for selected channels
- List the Channels with Comskip turned off
- Create manual recordings based on channel number, date and time
- List Gracenote Station IDs for a given search string
Here's the docker-compose for Portainer-Stacks:
version: '3.9'
services:
olivetin:
image: bnhf/olivetin:latest
container_name: olivetin
ports:
- 1337:1337
environment:
- CHANNELS_DVR=${CHANNELS_DVR} # Add your Channels DVR server in the form hostname:port or ip:port
- UPDATE_YAMLS=${UPDATE_YAMLS} # Set this to true to update config.yaml
- UPDATE_SCRIPTS=${UPDATE_SCRIPTS} # Set this to true to update all included scripts
- TZ=${TZ} # Add your local timezone in standard linux format. E.G. US/Eastern, US/Central, US/Mountain, US/Pacific, etc
volumes:
- /data/olivetin:/config # replace host path or volume as needed
restart: unless-stopped
And the some example environment variables:
Once it's up-and-running you should be able to find the WebUI at http://<your_docker_host>:1337
. Let me know how it goes with what I've defined so far, and feel free to suggest additions of existing scripts or other command line stuff you use for Channels DVR.
Now that I've built OliveTin for Channels, when you have it running let's talk about testing the Bash version of the Ruby script from earlier in the thread. This is not something I'm doing, so it'd be great if you could take it for a test drive. We'll want to tweak one or two variables when you're ready.
I've improved the date and time setting from this morning, thanks to some input from @chDVRuser. It's a fuzzy logic type of thing, but I'm suggesting either 24hr hh:mm or mm/dd/yyyy hh:mm as sensible options. You can also do stuff like Next Friday at 16:00 apparently, but I didn't test for that.
I just deployed your docker-compose and setting a manual recording looks great. Thank for effort.
OK so I stumbled around and managed to get this installed on my Mac mini. I manually created this config.yaml file using the example snippet above. I composed the docker and now it's running. I am able to access to dashboard and execute commands, but the log file shows errors for each. What am I missing, or what am I doing wrong?
I re-deployed the stack trying localhost:8089 instead of 10.0.1.21:8089 for the CHANNELS_DVR env variable, since I have Portainer running on the same Mac mini as my Channels DVR server and that's the IP address. But unfortunately that didn't make any difference, all command attempts gave the same errors in the log.
Thanks for any help, this project feels very promising! I'm happy to experiment with adding any new scripts with your instruction once I've got it working properly.
You are using the wrong docker-compose. Use the one listed in post #29
As @cyoungers pointed out, you're not using the final docker-compose. In addition, there's an issue with the way you're doing your volume mapping:
Directory bindings like this are done in the following fashion:
<path_on_docker_host>:<path_in_container>
You can change the part to the left on the colon, but not the part to the right. And, of course, you need the colon.
EDIT: Also, Linux timezones are a specific thing, and US/Western isn't one of them.
You'll want to use US/Pacific, or whatever, from this list:
Thanks, that did the trick. I saw deployment created a bunch of new files alongside config.yaml
, so that's when I knew I got the path_on_docker_host
correct:
I then tested all of the Actions on my olivetin webUI and they worked! Note that I did have to rename manualrecord.sh
to manualrecordings.sh
for that Action to work, though.
Then I created the fixyoutubethumbnails.sh
file and pasted in the ChatGPT translation in the code above, edited with one YouTube playlist video_group
. But the next step, I think, is adding some parameters to identify it in config.yaml
. What should I enter in there?
OK, before I answer that, tell me more about the video_group change you made. Do you have multiple video_groups? Sounds like something we should prompt for in OliveTin, no? Are those groups from a list of fixed names (i.e. can we have a drop-down menu), or are these names made-up by the user where we would just have a text entry field?
If we setup OliveTin correctly, users shouldn't really need to edit scripts themselves, but rather enter needed variables in the webUI. Good catch on the mis-named script -- I've fixed that in the repo.
In order to have your manual recordings display correctly in DVR > Manage > Shows, you need to assign an Airing.SeriesID.
For manual recordings I recommended using the value manual/channel#
.
{
"Name": "Dabl manual recording",
"Time": 1695664560,
"Duration": 60,
"Channels": ["6781"],
"Airing": {
"Source": "manual",
"Channel": "6781",
"Time": 1695664560,
"Duration": 60,
"Title": "Dabl manual recording with SeriesID",
"Summary": "Dabl manual recording with SeriesID",
"SeriesID": "manual/6781"
}
}
{
"Name": "Dabl manual recording",
"Time": 1695664500,
"Duration": 60,
"Channels": ["6781"],
"Airing": {
"Source": "manual",
"Channel": "6781",
"Time": 1695664500,
"Duration": 60,
"Title": "Dabl manual recording without SeriesID",
"Summary": "Dabl manual recording without SeriesID"
}
}
Like this?
{
"Name": "$name",
"Time": $time,
"Duration": $duration,
"Channels": ["$channel"],
"Airing": {
"Source": "$source",
"Channel": "$channel",
"Time": $time,
"Duration": $duration,
"Title": "$name",
"Summary": "$summary",
"SeriesID": "$source/$channel",
"Image": "$image"
}
}
Exactly
Yes, I do have multiple video_groups, these are my groups of video downloads that CDVR has already imported and their filenames are specifically formatted, so this script knows how to parse the details into metadata and apply a proper thumbnail. The scripts I have set up reference one video_group per playlist/folder. The way I've been getting the video_groups I want the scripts to scan, is by visiting the new group in CDVR web admin first and getting it from the URL. It's a long collections of letters and numbers:
Also available in the documented API
@chDVRuser is giving us a method to extract the VIDEO_GROUP_IDS, which should allow us to automate the process fully (thanks!). But, in the meantime let's see if our translated script does the job. Update your fixyoutubethumbnails.sh script as follows:
#!/bin/bash
# Define server URL and video group
server_url="$CHANNELS_DVR"
video_group="$1"
# Retrieve source files using curl and parse JSON
source_files=$(curl -s "${server_url}/dvr/groups/${video_group}/files")
# Iterate through each file
for file in $(echo "$source_files" | jq -c '.[]'); do
# Extract file_id, title, and yt_match from JSON
file_id=$(echo "$file" | jq -r '.ID')
title=$(echo "$file" | jq -r '.Airing.EpisodeTitle')
yt_match=$(echo "$title" | grep -oE '_\((\d{4}-\d{2}-\d{2})\))?_?\[([^]]+)\]')
if [[ -n $yt_match ]]; then
yt_date=$(echo "$yt_match" | sed -E 's/_\((\d{4}-\d{2}-\d{2})\))?_?\[([^]]+)\]/\1/')
yt_id=$(echo "$yt_match" | sed -E 's/_\((\d{4}-\d{2}-\d{2})\))?_?\[([^]]+)\]/\2/')
yt_thumbnail_url="https://i3.ytimg.com/vi/${yt_id}/maxresdefault.jpg"
new_title=$(echo "$title" | sed -E "s/$yt_match//")
# Construct the JSON package
package='{"Thumbnail": "'$yt_thumbnail_url'", "Airing": {"EpisodeTitle": "'$new_title'"'
if [[ -n $yt_date ]]; then
package+=', "OriginalDate": "'$yt_date'"'
fi
package+='}}'
# Make a PUT request using curl to update the file
curl -X PUT -H "Content-Type: application/json" -d "$package" "${server_url}/dvr/files/${file_id}"
fi
done
And, add this snippet to your config.yaml:
- title: Fix YouTube Thumbnails
icon: '<img src = "https://community-assets.getchannels.com/original/2X/5/55232547f7e8f243069080b6aec0c71872f0f537.png" width = "48px"/>'
shell: /config/fixyoutubethumbnails.sh "{{ video_group }}"
arguments:
- name: video_group
type: ascii_identifier
description: Enter the Video Group ID where you'd like to have the thumbnails fixed
Sometimes OliveTin will take changes to the yaml on-the-fly without objection, but if the interface doesn't properly reflect changes you've made, restarting the container is the most reliable to put things in order.
Test it out if you would please, and if it looks good, we'll take it to the next level and retrieve the IDs from the API and do them all in one shot.