Files
novafarma/scripts/audio_download_helper.sh
David Kotnik 536b21673b 🎵 Jan 8 Audio Download Setup - Ready to Download
 AUDIO DOWNLOAD INFRASTRUCTURE READY:

**Created:**
1. Download folder: /assets/audio/downloads/ 
2. Quick helper script: scripts/audio_download_helper.sh 
3. Full guide: AUDIO_DOWNLOAD_GUIDE.md 

**Priority Download List:**

**PRIORITY 1 (6 files - most used):**
1. farm_ambient.wav - Farming loop
2. footstep_grass.wav - Walking sound
3. plant_seed.wav - Planting
4. water_crop.wav - Watering
5. harvest.wav - Harvesting
6. dig.wav - Hoeing soil

**PRIORITY 2 (2 files - menu/UI):**
7. main_theme.wav - Menu music
8. coin_collect.wav - UI feedback

**Workflow:**
1. Run: ./scripts/audio_download_helper.sh (shows links)
2. Click links → Download from Freesound.org
3. Save to: /assets/audio/downloads/
4. Run: python3 scripts/convert_audio_to_ogg.py
5. Test in game

**Time Estimates:**
- Priority 1: 10-15 min
- Priority 2: 5 min
- All 30 files: 45-60 min

**Status:** Ready for user to start downloading! 🎵
2026-01-08 18:05:10 +01:00

72 lines
2.4 KiB
Bash
Executable File

#!/bin/bash
# Audio Download Helper - Quick Reference
# Usage: Copy-paste links into browser, download files
echo "🎵 AUDIO DOWNLOAD HELPER"
echo "========================"
echo ""
echo "📁 Download folder ready: assets/audio/downloads/"
echo ""
echo "🔗 QUICK DOWNLOAD LINKS:"
echo ""
echo "PRIORITY 1 - MOST USED (Download these first!):"
echo "-----------------------------------------------"
echo ""
echo "1. FARM AMBIENT (Farming loop):"
echo " https://freesound.org/search/?q=peaceful+nature+ambient+loop&f=duration:%5B60+TO+240%5D"
echo " Save as: farm_ambient.wav"
echo ""
echo "2. FOOTSTEP GRASS (Walking):"
echo " https://freesound.org/search/?q=footstep+grass"
echo " Save as: footstep_grass.wav (may already exist!)"
echo ""
echo "3. PLANT SEED:"
echo " https://freesound.org/search/?q=plant+seed+soil"
echo " Save as: plant_seed.wav"
echo ""
echo "4. WATERING CAN:"
echo " https://freesound.org/search/?q=watering+can+pour"
echo " Save as: water_crop.wav"
echo ""
echo "5. HARVEST:"
echo " https://freesound.org/search/?q=pick+vegetable"
echo " Save as: harvest.wav"
echo ""
echo "6. DIG (Hoe sound):"
echo " https://freesound.org/search/?q=shovel+dig+dirt"
echo " Save as: dig.wav"
echo ""
echo "=========================================="
echo ""
echo "PRIORITY 2 - MENU & ATMOSPHERE:"
echo "-------------------------------"
echo ""
echo "7. MAIN THEME (Menu music):"
echo " https://freesound.org/search/?q=menu+music+loop&f=duration:%5B0+TO+180%5D"
echo " Save as: main_theme.wav"
echo ""
echo "8. COIN COLLECT (UI feedback):"
echo " https://freesound.org/search/?q=coin+pickup"
echo " Save as: coin_collect.wav"
echo ""
echo "=========================================="
echo ""
echo "FULL LIST: See AUDIO_DOWNLOAD_GUIDE.md for all 30 files"
echo ""
echo "📥 DOWNLOAD WORKFLOW:"
echo "1. Click link → Opens Freesound.org"
echo "2. Listen to preview (play button)"
echo "3. Click 'Download' (blue button)"
echo "4. Save to: /Users/davidkotnik/repos/novafarma/assets/audio/downloads/"
echo "5. Rename to exact filename shown above"
echo ""
echo "After downloading, run:"
echo " python3 scripts/convert_audio_to_ogg.py"
echo ""
echo "⏱️ Estimated time:"
echo " - Priority 1 (6 files): ~10-15 min"
echo " - Priority 2 (2 files): ~5 min"
echo " - All 30 files: ~45-60 min"
echo ""
echo "✅ TIP: Download Priority 1 first, test, then continue!"