Skip to content

Commit e8249ef

Browse files
committed
changes
1 parent de041f6 commit e8249ef

File tree

4 files changed

+8
-12
lines changed

4 files changed

+8
-12
lines changed

Video to PDF/README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@
22

33
Using this tool, you can convert any video of your choice into a PDF.
44

5-
## Modules used :
6-
- Tkinter
7-
- MoviePy
8-
- Speech Recognition
9-
- OS
10-
- FPDF
5+
To run the script, install the dependencies using
6+
``
7+
pip install -r requirements.txt
8+
``
119

1210
[Sample Video Link](https://www.youtube.com/watch?v=rGHrKkieqCY)
1311

Video to PDF/my_pdf.pdf

-1.13 KB
Binary file not shown.

Video to PDF/requirements.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
Tkinter
2-
FPDF
3-
Speech Recognition
4-
MoviePy
1+
fpdf==1.7.2
2+
speech_recognition==3.7.1
3+
moviepy==1.0.1

Video to PDF/script.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,7 @@ def text_to_pdf(file):
6262
pdf.multi_cell(effective_page_width, 0.15, x)
6363
pdf.ln(0.5)
6464

65-
66-
pdf.output("my_pdf.pdf")
65+
pdf.output("../Video to PDF/my_pdf.pdf")
6766

6867

6968

0 commit comments

Comments
 (0)