This commit is contained in:
2025-12-03 22:49:24 -08:00
parent 7b7fae9b91
commit a1ec1a54ba
2 changed files with 29 additions and 15 deletions

View File

@@ -26,7 +26,6 @@ monitorv2 {
scale = 1 scale = 1
vrr = 2 vrr = 2
cm = srgb cm = srgb
# Optional HDR settings # Optional HDR settings
# cm = hdr # cm = hdr
# bitdepth = 10 # bitdepth = 10

View File

@@ -31,6 +31,9 @@ generate_thumbnail() {
local temp_thumb="/tmp/rmpv-thumbnail-$$.jpg" local temp_thumb="/tmp/rmpv-thumbnail-$$.jpg"
local thumbnail_file="${video_file%.*}.jpg" local thumbnail_file="${video_file%.*}.jpg"
# Clean up previous thumbnail
rm -f "$THUMBNAIL_PATH"
# Validate input # Validate input
if [[ -z "$video_file" ]]; then if [[ -z "$video_file" ]]; then
echo "Error: No video file specified" >&2 echo "Error: No video file specified" >&2
@@ -51,28 +54,39 @@ generate_thumbnail() {
# Generate thumbnail if it doesn't exist # Generate thumbnail if it doesn't exist
if [[ ! -f "$thumbnail_file" ]]; then if [[ ! -f "$thumbnail_file" ]]; then
echo "Generating thumbnail for $(basename "$video_file")..." echo "Generating thumbnail for $(basename "$video_file")..."
if ! ffmpeg -i "$video_file" \ # Try generating thumbnail side-by-side
-vf "select='gt(scene,0.4)',scale=320:240:force_original_aspect_ratio=decrease,pad=320:240:(ow-iw)/2:(oh-ih)/2" \ if ! ffmpeg -ss 00:00:01 -i "$video_file" \
-vf "scale=320:240:force_original_aspect_ratio=decrease,pad=320:240:(ow-iw)/2:(oh-ih)/2" \
-frames:v 1 \ -frames:v 1 \
-q:v 4 \ -q:v 4 \
"$thumbnail_file" \ "$thumbnail_file" \
-loglevel error -y 2>/dev/null; then -loglevel error -y 2>/dev/null; then
echo "Error: Failed to generate thumbnail" >&2
return 1 # Fallback to temp file if side-by-side fails (e.g. read-only fs)
echo "Warning: Failed to write to $thumbnail_file, trying temp location" >&2
thumbnail_file="$temp_thumb"
if ! ffmpeg -ss 00:00:01 -i "$video_file" \
-vf "scale=320:240:force_original_aspect_ratio=decrease,pad=320:240:(ow-iw)/2:(oh-ih)/2" \
-frames:v 1 \
-q:v 4 \
"$thumbnail_file" \
-loglevel error -y 2>/dev/null; then
echo "Error: Failed to generate thumbnail" >&2
return 1
fi
fi fi
fi fi
# Copy to temporary location with error handling # Copy to consistent location for notify-send
if ! cp "$thumbnail_file" "$temp_thumb" 2>/dev/null; then # We use a fixed path so notify-send always finds it
echo "Error: Failed to copy thumbnail to temporary location" >&2 if cp "$thumbnail_file" "$THUMBNAIL_PATH" 2>/dev/null; then
return 1 echo "Thumbnail ready at: $THUMBNAIL_PATH"
ls -l "$THUMBNAIL_PATH"
file "$THUMBNAIL_PATH"
else
echo "Error: Failed to copy thumbnail to $THUMBNAIL_PATH" >&2
fi fi
# Create symlink for consistent access
ln -sf "$temp_thumb" /tmp/rmpv-thumbnail.jpg 2>/dev/null
sleep 0.1
echo "Thumbnail ready: $temp_thumb"
} }
choice="$(find . -iname "*[.mkv|.mp4]" | sort -h | rofi -dmenu -i -theme "$THEME" -theme-str 'listview {columns: 1; lines: 15;} window {width: 88%;}' -p "Choose Video")" choice="$(find . -iname "*[.mkv|.mp4]" | sort -h | rofi -dmenu -i -theme "$THEME" -theme-str 'listview {columns: 1; lines: 15;} window {width: 88%;}' -p "Choose Video")"
@@ -89,3 +103,4 @@ notify-send -i "$THUMBNAIL_PATH" "Playing Video" "$(basename "$choice")"
$COMMAND "$choice" & $COMMAND "$choice" &
# vim: ft=sh # vim: ft=sh