Hosted FLV Dumps: Duration Request

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • iTugIt
    Confirmed User
    • Oct 2003
    • 212

    #1

    Hosted FLV Dumps: Duration Request

    This is to all the sponsors who offer hosted FLVs:

    Can you please offer a duration like this - 3:03
    Instead of this - 183

    Thanks!
  • BestXXXPorn
    Confirmed User
    • Jun 2009
    • 2277

    #2
    It doesn't make sense to store duration in minutes seconds when just seconds would suffice and minutes:seconds can be displayed on the view...

    Same reason every good dev I know would store a height in cm or inches rather than ft/inches...
    ICQ: 258-202-811 | Email: eric{at}bestxxxporn.com

    Comment

    • CamJack
      Old School Webmaster
      • Sep 2003
      • 1334

      #3
      are these correct?
      http://galleries.nakednewsanchors.co...omm_011110.flv
      http://galleries.nakednewsanchors.co...omm_020910.flv
      http://galleries.nakednewsanchors.co...omm_021510.flv
      http://galleries.nakednewsanchors.co...omm_022210.flv
      Skype: promote.promote
      [email protected]

      Comment

      • iTugIt
        Confirmed User
        • Oct 2003
        • 212

        #4
        Originally posted by BestXXXPorn
        It doesn't make sense to store duration in minutes seconds when just seconds would suffice and minutes:seconds can be displayed on the view...

        Same reason every good dev I know would store a height in cm or inches rather than ft/inches...
        Stored as 180 seconds is fine. I get it. I'm asking that on batch exports (dumps), it could look like this:

        flv|title|desc|3:00|sponsor|url

        It may not make sense to you because you don't use a script that displays that column exactly as it is. I do.

        Comment

        • icymelon
          Confirmed User
          • Dec 2007
          • 3220

          #5
          I can second that one
          Network Of Adult Blogs With Hardlink Rentals Available

          Comment

          • StinkyPink
            It's all goooood.
            • Aug 2009
            • 1591

            #6
            Ii prefer seconds over minutes because of the script I use, so giving us the "choice" is the only way to go.

            Comment

            • dirtybaker1331
              Confirmed User
              • Nov 2008
              • 461

              #7
              Simple solution would be to drop the list in excel and do a find and replace on |180 with |3:00. Some scripts require the duration to be in total number of seconds. Most scripts call for completely different delimiters. It's hard to please all the affiliates all of the time but I know we do our best to get you what you need. Most sponsors do what they can to provide the tools that anybody can use. Sometimes it may take a little finagling with the provided tools section with each sponsor.
              Justin Baker
              [email protected]
              ICQ#: 635583207

              Become an affiliate today!

              Comment

              • BestXXXPorn
                Confirmed User
                • Jun 2009
                • 2277

                #8
                Originally posted by iTugIt
                Stored as 180 seconds is fine. I get it. I'm asking that on batch exports (dumps), it could look like this:

                flv|title|desc|3:00|sponsor|url

                It may not make sense to you because you don't use a script that displays that column exactly as it is. I do.
                So why not mod the php (I'm guessing) script to display minutes:seconds?

                <?=floor($duration / 60)?>:<?=($duration%60)?>

                That doesn't account for 0 padding on seconds but that's easy enough...
                ICQ: 258-202-811 | Email: eric{at}bestxxxporn.com

                Comment

                • StinkyPink
                  It's all goooood.
                  • Aug 2009
                  • 1591

                  #9
                  Originally posted by BestXXXPorn
                  So why not mod the php (I'm guessing) script to display minutes:seconds?

                  <?=floor($duration / 60)?>:<?=($duration%60)?>

                  That doesn't account for 0 padding on seconds but that's easy enough...
                  It isn't the display he is concerned about... it is the import dump file.

                  Comment

                  • BestXXXPorn
                    Confirmed User
                    • Jun 2009
                    • 2277

                    #10
                    Originally posted by StinkyPink
                    It isn't the display he is concerned about... it is the import dump file.
                    "It may not make sense to you because you don't use a script that displays that column exactly as it is. I do."

                    Then just use the same logic on import... if the duration field has a : in it you don't need to do anything, if it doesn't, you convert and store in your DB that way...

                    What I'm getting at is this isn't something sponsors should offer, it's logic that should reside on the receiving end and it's very simplistic. If you have a custom need and you're not a programmer... Pay a dev for an hour's worth of time.

                    No sponsor should be changing their output format from seconds to minutes:seconds...
                    ICQ: 258-202-811 | Email: eric{at}bestxxxporn.com

                    Comment

                    • CamJack
                      Old School Webmaster
                      • Sep 2003
                      • 1334

                      #11
                      We don't even do time:

                      {video_url} {title} {description} {site_link} {site} {keywords}
                      Skype: promote.promote
                      [email protected]

                      Comment

                      • Titan
                        Confirmed User
                        • Jun 2002
                        • 994

                        #12
                        We offer that. See sig:
                        TEEN CASH - EXCLUSIVE TEEN NICHE REALITY SITES

                        Check out our Newest Site: Teen Porno Pass - Free Hosted Galleries, Flash Galleries, Tube Content, & Great Support
                        Sample Galleries: Movie Gallery 1 Flash Gallery 1 Pic Gallery 1

                        Comment

                        • iTugIt
                          Confirmed User
                          • Oct 2003
                          • 212

                          #13
                          Originally posted by dirtybaker1331
                          Simple solution would be to drop the list in excel and do a find and replace on |180 with |3:00. Some scripts require the duration to be in total number of seconds. Most scripts call for completely different delimiters. It's hard to please all the affiliates all of the time but I know we do our best to get you what you need. Most sponsors do what they can to provide the tools that anybody can use. Sometimes it may take a little finagling with the provided tools section with each sponsor.
                          Problem is, this can take a lot of time when the durations vary. I just did a search and replace for 300 flvs. Each of them had times ranging from 160 seconds to 220 seconds. It took a while.

                          All I'm looking for is a choice on export. Let me dump the files as 180 seconds, 3 mins, 03:00, etc.

                          Comment

                          • StinkyPink
                            It's all goooood.
                            • Aug 2009
                            • 1591

                            #14
                            Originally posted by BestXXXPorn
                            "It may not make sense to you because you don't use a script that displays that column exactly as it is. I do."

                            Then just use the same logic on import... if the duration field has a : in it you don't need to do anything, if it doesn't, you convert and store in your DB that way...

                            What I'm getting at is this isn't something sponsors should offer, it's logic that should reside on the receiving end and it's very simplistic. If you have a custom need and you're not a programmer... Pay a dev for an hour's worth of time.

                            No sponsor should be changing their output format from seconds to minutes:seconds...
                            My bad you were right

                            I misunderstood that part.

                            Comment

                            • ArsewithClass
                              So Fucking Banned
                              • Mar 2007
                              • 7957

                              #15
                              Originally posted by iTugIt
                              This is to all the sponsors who offer hosted FLVs:

                              Can you please offer a duration like this - 3:03
                              Instead of this - 183

                              Thanks!
                              Sign up to GspotCash for a 1:1000 ratio with hosted flv galleries & flv links between 3 & 5 mins long

                              Comment

                              • daniel_webcams
                                Confirmed User
                                • Nov 2008
                                • 2491

                                #16
                                webcams.com Affiliate Program offer to his affiliates hosted flvs with 3 - 7 minutes cam recorded shows, predefined dump scripts for multiple tube scripts.






                                Email me or hit me up on ICQ, I will help you to make a dump and choose the right promo tool your site, the $100 PPO is still on TOP
                                Daniel,

                                Skype: [email protected]
                                ICQ: 354-220-339
                                Email: daniel@adultforce[dot]com


                                Comment

                                • topsiteking
                                  ICQ: 470687453
                                  • Dec 2007
                                  • 3571

                                  #17
                                  Originally posted by daniel_webcams
                                  webcams.com Affiliate Program offer to his affiliates hosted flvs with 3 - 7 minutes cam recorded shows, predefined dump scripts for multiple tube scripts.






                                  Email me or hit me up on ICQ, I will help you to make a dump and choose the right promo tool your site, the $100 PPO is still on TOP
                                  Very nice!
                                  ICQ: 470687453
                                  EMAIL: [email protected]

                                  Comment

                                  Working...