watch-cli
Watch any social video → get an architecture diagram, working component, runnable notebook, or step-by-step cheat sheet — automatically.
파일 탐색기
- marketplace.json
- ci.yml
- release.yml
- audio-q
- dl-video
- extract-frames
- models
- transcribe
- watch
- watch-archive
- archive.md
- cookies.md
- exit-codes.md
- homebrew.md
- offline-mode.md
- output-schema.md
- platforms.md
- releases.md
- batch-watch.sh
- archive.sh
- audio-routing.sh
- env.sh
- health.sh
- model-checksums.sh
- version.sh
- index.ts
- watch-tool.ts
- .gitignore
- package-lock.json
- package.json
- README.md
- server.json
- SPEC.md
- tsconfig.json
- clone-ux.md
- extract-architecture.md
- implement-from-video.md
- paper-to-code.md
- README.md
- tutorial-walkthrough.md
- SKILL.md
- SKILL-SPEC.md
- test-output-schema.sh
- .env.example
- .gitignore
- BRANDING.md
- install.sh
- LICENSE
- README.md
- SKILL.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
brew install
설명 보기 ▼
brew install
Install a Homebrew formula or cask.
brew install {{formula|cask}}
Install a formula/cask:
brew install {{[-s|--build-from-source]}} {{formula}}
Build and install a formula from source (dependencies will still be installed from bottles):
brew install {{[-n|--dry-run]}} {{formula|cask}}
Download the manifest, print what would be installed but don't actually install anything:
brew tap
설명 보기 ▼
brew tap
Tap a Homebrew formula repository. If no arguments are provided, list all installed Homebrew taps.
brew tap
List installed Homebrew taps:
brew tap {{github_username}}/{{github_repository_name}}
Tap a Git repository hosted on GitHub:
brew tap {{username}}/{{repository_name}} {{git_clone_url}}
Tap a Git repository hosted outside of GitHub:
ffmpeg
설명 보기 ▼
ffmpeg
비디오 변환 도구.
관련 항목: `gst-launch-1.0`.
더 많은 정보: <https://ffmpeg.org/ffmpeg.html#Options>.
ffmpeg -i {{path/to/video.mp4}} -vn {{path/to/sound.mp3}}
비디오에서 사운드를 추출하여 MP3로 저장:
ffmpeg -i {{path/to/input_audio.flac}} -ar 44100 -sample_fmt s16 {{path/to/output_audio.wav}}
FLAC 파일을 Red Book CD 형식 (44100kHz, 16bit)으로 트랜스코딩:
ffmpeg -i {{path/to/video.mp4}} {{[-vf|-filter:v]}} 'scale=-1:1000' -r 15 {{path/to/output.gif}}
비디오를 GIF로 저장하고, 높이를 1000px로 조정하고 프레임 속도를 15로 설정:
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
python3
설명 보기 ▼
python3
이 명령은 `python`의 별칭입니다.
tldr python
자세한 내용은 원본 명령을 참고하세요:
watch
설명 보기 ▼
watch
명령어를 반복 실행하고 출력 결과를 전체 화면 모드로 모니터링합니다.
더 많은 정보: <https://manned.org/watch>.
watch {{command}}
현재 디렉토리의 파일 모니터링:
watch {{[-n|--interval]}} 60 {{command}}
디스크 공간을 모니터링하고 변경 사항 강조 표시:
watch {{[-d|--differences]}} df
"node" 프로세스를 3초마다 새로고침하며 모니터링:
yt-dlp
설명 보기 ▼
yt-dlp
추가 기능과 수정이 포함된 youtube-dl 포크.
YouTube 및 기타 웹사이트에서 동영상을 다운로드합니다.
관련 항목: `ytfzf`.
더 많은 정보: <https://github.com/yt-dlp/yt-dlp#usage-and-options>.
yt-dlp "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"
동영상 또는 재생목록 다운로드 (아래 명령의 기본 옵션 사용):
yt-dlp {{[-F|--list-formats]}} "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"
동영상의 다운로드 가능한 형식 나열:
yt-dlp {{[-f|--format]}} "{{bv*[ext=mp4]+ba[ext=m4a]/b[ext=mp4]}}" "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"
사용 가능한 최고의 MP4 비디오로 동영상 또는 재생목록 다운로드 (기본은 "bv*+ba/b"):
apt install
설명 보기 ▼
apt install
Install packages for Debian-based distributions.
sudo apt install {{package}}
Install a package, or update it to the latest version:
sudo apt install {{[-V|--verbose-versions]}} {{package}}
Display verbose package version information during installation or update:
# 프로젝트 배지
-
CI
