Now I can just print that video
11–20 of 123 posts
Re: Now I can just print that video
#12If the main challenge was 'not having the smartphone in the kitchen', then one possible solution could have been getting another screen dedicated to the kitchen. A tablet, a laptop, a small TV+Google Cast or such combination. It seems to be a proper media for 'printing' a video. Of course, choosing challenges and finding solutions is what drives fun.
The recipe could be loaded up via a linked smartphone or something, but then you have a device that you can touch with food covered hands and then wash it right alongside your hands later. Big screen so you don't have to squint or scroll frequently like you would on a smartwatch. E-ink so it works well despite bright kitchen lights and has low power consumption.
Re: Now I can just print that video
#13If the main challenge was 'not having the smartphone in the kitchen', then one possible solution could have been getting another screen dedicated to the kitchen. A tablet, a laptop, a small TV+Google Cast or such combination. It seems to be a proper media for 'printing' a video. Of course, choosing challenges and finding solutions is what drives fun.
Re: Now I can just print that video
#14You can also use software to detect “cuts” in the video, which can be used to improve the frame-extraction over just getting six evenly spaced frames from the video.
Re: Now I can just print that video
#15No need to spend hours trying to get the text extraction just right - pass the raw extraction into GPT and ask for it to give you the recipe.
I was thinking the same thing. Extraction and basic formatting of information from human language is something that LLMs excel at. Especially if the result is being shown to a human so small mistakes can be tolerated.
> Garlic balsamic chicken, you'll be making over and over. By sear your chicken. I resin wine. Grab yourself a nice large bowl, extra virgin and olive oil. Balsamic glaze. Tomato paste. Honey, fresh lemon juice, garlic, Oregano fresh thyme, coat my chicken with this beautiful balsamic, no balsamic, left behind. Don't you dare waste the good thing. Right? Going in the oven at four twenty five degrees, about thirty ish minutes. Look yes. Fresh thyme, fresh parsley. This is so good. I can't wait. Win our winner. Oh
If we run this through ChatGPT with some basic prompt engineering this becomes:
> Start by searing your chicken in a pan. In a large bowl, combine extra virgin olive oil and balsamic glaze. Add tomato paste, honey, fresh lemon juice, garlic, oregano, and fresh thyme. Coat the chicken thoroughly with this balsamic mixture, ensuring no glaze is left behind. Preheat your oven to 425 degrees Fahrenheit. Place the coated chicken in the oven and bake for about 30 minutes. Once cooked, garnish with fresh thyme and fresh parsley. Serve and enjoy your delicious garlic balsamic chicken. (Note: The phrase "I resin wine" in the audio transcription seems unclear and is possibly a mishearing. I have omitted it as it does not appear to fit the context of the recipe.)
Re: Now I can just print that video
#16Re: Now I can just print that video
#17If the main challenge was 'not having the smartphone in the kitchen', then one possible solution could have been getting another screen dedicated to the kitchen. A tablet, a laptop, a small TV+Google Cast or such combination. It seems to be a proper media for 'printing' a video. Of course, choosing challenges and finding solutions is what drives fun.
To me the main problem this solves is having to rewatch the video over and over for each step. Most of the time it's like "Step 2: do thing" then quickly cuts to step 3 well before I could've finished step 2. So having it laid out like this is actually a decent format to receive recipes in.
Re: Now I can just print that video
#18You can also use software to detect “cuts” in the video, which can be used to improve the frame-extraction over just getting six evenly spaced frames from the video.
Not the post author but I tried this with ffmpeg and failed. Do you (does anyone) want to share some pointers?
ffprobe -show_frames -of compact=p=0 -f lavfi "movie=THE_VIDEO_FILE,select=gt(scene\,0.3)" -pretty`