Replies: 5 comments 4 replies
-
Still need help with this- I saw in another thread the module |
Beta Was this translation helpful? Give feedback.
-
Make sure you have Fabric properly installed and configured. Note that |
Beta Was this translation helpful? Give feedback.
-
The YT function does not work for me despite installation ok and all APIs in place. Anyone fixed this? |
Beta Was this translation helpful? Give feedback.
-
Check for Updates: Make sure both Fabric and related modules are updated to the latest versions:
|
Beta Was this translation helpful? Give feedback.
-
from the README in my install Add aliases for all patternsIn order to add aliases for all your patterns and use them directly as commands ie. # Loop through all files in the ~/.config/fabric/patterns directory
for pattern_file in $HOME/.config/fabric/patterns/*; do
# Get the base name of the file (i.e., remove the directory path)
pattern_name=$(basename "$pattern_file")
# Create an alias in the form: alias pattern_name="fabric --pattern pattern_name"
alias_command="alias $pattern_name='fabric --pattern $pattern_name'"
# Evaluate the alias command to add it to the current shell
eval "$alias_command"
done
yt() {
local video_link="$1"
fabric -y "$video_link" --transcript
} |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hey everyone, I'm on a mac and I just started with fabric but I'm having some issues with the yt stuff.
For one thing, what's the module that does the
yt --transcript
i've seen in examples? I didpip3 install yt
and it did, but it said there was no--transcript
option. I ended up getting a similar result withyoutube_transcript_api
but it always seems to cut off everything other than the last 2 or 3 minutes of the video, and I'd much rather use the one in the examples.Beta Was this translation helpful? Give feedback.
All reactions