Sadece slaytlardan oluşan bir youtube videosunu pdf haline getirmek mümkün mü?
örnek:
https://www.youtube.com/watch?v=htjIAlxDuGQ
Youtube videosunu pdf yapmak mümkün mü?
3
●94
- 25-03-2023, 22:25:49Herhangi bir videonu pdf dosyasının üzerine koyabilirsinParamedik adlı üyeden alıntı: mesajı görüntüle
- 25-03-2023, 22:27:13import PyPDF2
pdf_file = PyPDF2.PdfFileWriter()
pdf_file.addBlankPage(width=1920, height=1080)
video_file = open('video.mp4', 'rb')
pdf_file.addVideo(video_file)
with open('video.pdf', 'wb') as f:
pdf_file.write(f)
=============
Bu şekilde yaptı yapay zeka.