Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +42 -4
requirements.txt
CHANGED
@@ -1,5 +1,43 @@
|
|
|
|
1 |
streamlit # π The shiny star of our web app galaxy!
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Streamlit Base
|
2 |
streamlit # π The shiny star of our web app galaxy!
|
3 |
+
|
4 |
+
# PDF Libraries
|
5 |
+
pypdf # π Splits, merges, and extracts text from PDFs
|
6 |
+
pikepdf # π Edits PDFs with low-level control using QPDF
|
7 |
+
pdfminer.six # π Extracts text and layout from PDFs
|
8 |
+
fpdf2 # π Generates PDFs from scratch
|
9 |
+
pdfkit # π Converts HTML to PDF (requires wkhtmltopdf)
|
10 |
+
pdfrw # π Reads/writes PDFs, supports merging
|
11 |
+
pdfplumber # π Extracts text and tables from PDFs
|
12 |
+
pymupdf # π High-performance PDF reading/writing
|
13 |
+
borb # π Modern PDF creation and editing
|
14 |
+
pdf2image # π Converts PDFs to images (requires Poppler)
|
15 |
+
|
16 |
+
# Image Capture Libraries
|
17 |
+
opencv-python # πΈ Captures and processes images from cameras
|
18 |
+
pillow # πΌοΈ Processes and saves images
|
19 |
+
imutils # πΈ Simplifies image capture with threading
|
20 |
+
pyscreeze # πΈ Captures screenshots
|
21 |
+
pyautogui # πΈ Captures screenshots and automates
|
22 |
+
mss # πΈ Fast screenshot capture
|
23 |
+
imageio # πΈ Reads/writes images, supports cameras
|
24 |
+
picamera2 # πΈ Captures from Raspberry Pi cameras (Pi only)
|
25 |
+
pygrabber # πΈ Captures images on Windows via DirectShow
|
26 |
+
scikit-image # πΈ Advanced image processing
|
27 |
+
|
28 |
+
# Video Capture Libraries
|
29 |
+
vidgear # π₯ High-performance video capture with FFmpeg
|
30 |
+
moviepy # π₯ Edits and processes video files
|
31 |
+
pyav # π₯ FFmpeg-based video capture
|
32 |
+
pafy # π₯ Streams YouTube videos (requires youtube-dl)
|
33 |
+
cvpubsubs # π₯ Multi-camera video capture with pub/sub
|
34 |
+
|
35 |
+
# Audio Capture Libraries
|
36 |
+
pydub # π΅ Manipulates audio, supports recording with FFmpeg
|
37 |
+
pyaudio # π΅ Real-time audio capture/playback
|
38 |
+
sounddevice # π΅ Low-latency audio capture
|
39 |
+
soundfile # π΅ Reads/writes audio files
|
40 |
+
pyaudioanalysis # π΅ Audio analysis with capture
|
41 |
+
pyo # π΅ Audio processing and synthesis
|
42 |
+
speechrecognition # π΅ Captures audio for speech recognition
|
43 |
+
pyalsaaudio # π΅ Audio capture/playback on Linux with ALSA
|