Xvideos watermark and ffmpeg

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Ruen
    Confirmed User
    • Dec 2011
    • 48

    #1

    Xvideos watermark and ffmpeg

    Is it possible to get this effect using FFMPEG?
  • arena18
    Confirmed User
    • Jan 2013
    • 246

    #2
    http://stackoverflow.com/questions/1...t-command-work
    Wordpress Tube Theme - wpXtube Theme - TubeAce Theme

    Comment

    • Ruen
      Confirmed User
      • Dec 2011
      • 48

      #3
      Thank you arena

      Comment

      • Ruen
        Confirmed User
        • Dec 2011
        • 48

        #4
        We tried as per the instructions there but it makes ffmpeg error out.

        Comment

        • JetBlack
          Confirmed User
          • Nov 2013
          • 50

          #5
          Have you considered an encoding SAAS?

          Comment

          • arena18
            Confirmed User
            • Jan 2013
            • 246

            #6
            Originally posted by Ruen
            We tried as per the instructions there but it makes ffmpeg error out.
            Can you post error log and ffmpeg command you tried?
            Wordpress Tube Theme - wpXtube Theme - TubeAce Theme

            Comment

            • Ruen
              Confirmed User
              • Dec 2011
              • 48

              #7
              We got it to work but were unable to change the font, and were unable to change what time the watermark shows up in the video.


              Current code:

              Code:
              /usr/local/bin/ffmpeg -i "test.wmv" -acodec libfaac -keyint_min 20 -r 20 -vcodec libx264 -crf 25 -b 1000k -bt 1000k -y -bf 16 -threads 0 -vf drawtext="fontfile=includes/captchaFont.ttf:text='website':fontsize=15:fontcolor=white:x=w-30*t:y=10" "test.mp4"

              Comment

              • eodiv
                Registered User
                • Feb 2013
                • 52

                #8
                That scrolling watermark makes my blood boil every time I see it. Don't do it, man!

                Comment

                • TFCash
                  Confirmed User
                  • Apr 2001
                  • 1738

                  #9
                  Originally posted by eodiv
                  That scrolling watermark makes my blood boil every time I see it. Don't do it, man!
                  They do it to keep people from ripping the videos and blurring out the watermark. I mean really if your going to be viewing free porn videos, you should have too put up with the scolling watermark
                  TeenFlood.com Online since 1998.

                  TFCash KissMeGirl
                  VirginRiches MondoBucks

                  tim at tfcash.com or submit a ticket at our HelpDesk

                  Comment

                  • karolinaboy
                    Pimping ain't easy.
                    • Jan 2014
                    • 255

                    #10
                    Originally posted by hardcorehosting
                    They do it to keep people from ripping the videos and blurring out the watermark. I mean really if your going to be viewing free porn videos, you should have too put up with the scolling watermark
                    I can vouch for that. Do it anyway.

                    Comment

                    • arena18
                      Confirmed User
                      • Jan 2013
                      • 246

                      #11
                      Originally posted by Ruen
                      We got it to work but were unable to change the font, and were unable to change what time the watermark shows up in the video.


                      Current code:

                      Code:
                      /usr/local/bin/ffmpeg -i "test.wmv" -acodec libfaac -keyint_min 20 -r 20 -vcodec libx264 -crf 25 -b 1000k -bt 1000k -y -bf 16 -threads 0 -vf drawtext="fontfile=includes/captchaFont.ttf:text='website':fontsize=15:fontcolor=white:x=w-30*t:y=10" "test.mp4"
                      The drawtext video filter has timeline editing support. This can evaluate an expression and allows you to provide the time(s) of when the filter should be enabled.

                      This example will enable the filter from 20 seconds to 2 minutes
                      Code:
                      ffmpeg -i input_file.mp4 -vf "drawtext=enable='between(t,20,2*60)':fontfile=/usr/share/fonts/truetype/impact.ttf: text='Mywebsite.com Test'" -acodec copy output.mp4
                      The audio was stream copied in this example

                      Note: for font try absolute path
                      Wordpress Tube Theme - wpXtube Theme - TubeAce Theme

                      Comment

                      Working...