• 25-03-2023, 22:18:58
    #1
    Sadece slaytlardan oluşan bir youtube videosunu pdf haline getirmek mümkün mü?

    örnek:


    https://www.youtube.com/watch?v=htjIAlxDuGQ
  • 25-03-2023, 22:19:53
    #2
    Hocam internette video to pdf siteleri var pek emin olmamakla birlikte bir göz atabilirsiniz iyi forumlar.
  • 25-03-2023, 22:25:49
    #3
    Paramedik adlı üyeden alıntı: mesajı görüntüle
    Sadece slaytlardan oluşan bir youtube videosunu pdf haline getirmek mümkün mü?

    örnek:


    https://www.youtube.com/watch?v=htjIAlxDuGQ
    Herhangi bir videonu pdf dosyasının üzerine koyabilirsin
  • 25-03-2023, 22:27:13
    #4
    import 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.