Put Text On Video Files With PHP Code

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Put Text On Video Files With PHP Code

    hello dear all coding-talk members.



    i need a little bit code to write the text to video files at bottom of the video file, please share your coding skills here if you know about this how to write text on video file i want to write my own web site name on video files at bottom.


    Must share your skills


    Thanks In Advance..........

    #2
    You'll have to use FFmpeg to embed the text within the video files, or if you just want the text to be shown over the video you can do that with CSS.
    Mobile chat, iphone chat, android chat, chat, rooms http://www.aiochat.com

    Comment


      #3
      thanks but can you please put here your all the php code for FFmpeg to how to write text on video file....

      Comment


        #4
        PHP Code:
        <?php exec('ffmpeg -i movie.mp4 -i logo.png -filter_complex "overlay" output.mp4'); ?>
        Mobile chat, iphone chat, android chat, chat, rooms http://www.aiochat.com

        Comment


          #5
          Originally posted by kevk3v View Post
          PHP Code:
          <?php exec('ffmpeg -i movie.mp4 -i logo.png -filter_complex "overlay" output.mp4'); ?>
          Thanks for sharing your code here Kevk3v

          Comment

          Working...
          X