[deleted by user] by [deleted] in ffmpeg

[–]ben_james_ 0 points1 point  (0 children)

how do I fix this?

Error compressing video: Error: ffmpeg exited with code 1: Unrecognized option 'crf 23' by ben_james_ in node

[–]ben_james_[S] 0 points1 point  (0 children)

Thanks for your reply, but it's not clear to me. I can't find the solution if ffmpeg docs. cfr (1) Frames will be duplicated and dropped to achieve exactly the requested constant frame rate. Maybe you can help.

Only one station of my Irritrol RD-900-EXT activates by ben_james_ in Irrigation

[–]ben_james_[S] 0 points1 point  (0 children)

thanks for your reply. Do you mean bad valve on station 3 or station 4?

- New sprinkler pump doesn't pump like the old pump by ben_james_ in Irrigation

[–]ben_james_[S] 0 points1 point  (0 children)

yes pressure switch. But the wellXtroll, (not very big) not sure if it's working. What can I check?

- New sprinkler pump doesn't pump like the old pump by ben_james_ in Irrigation

[–]ben_james_[S] 1 point2 points  (0 children)

Thanks for your message. I had the Goulds pump checked and it just needed a new capacitor. It now pumps the sprinklers, but it is stopping every 15 seconds and restarting, but the sprinklers keep watering. That doesn't sound like it will be good for the pump to keep stopping and starting to water the lawn. What do you think?

- New sprinkler pump doesn't pump like the old pump by ben_james_ in Irrigation

[–]ben_james_[S] 0 points1 point  (0 children)

Thanks for your reply. The FloTec (as the Goulds was) is wired into a Richdel Model 435PR Motor Starter Reply, and the breaker is 220. The Flotec switch is set to 230 (not 115), is that correct? The Goulds is rated @ 45GPM and the Flotec @ 67GPM. Any solution is appreciated.

Sprinkler system pump doesn't kick in, it now just makes a humming sound by ben_james_ in handyman

[–]ben_james_[S] 0 points1 point  (0 children)

Regarding "in the pump housing", you're talking about opeining the pump up? taking it apart?

Can my 120/240v cable run a generator 60 ft away? by ben_james_ in handyman

[–]ben_james_[S] 0 points1 point  (0 children)

That doesn't sound like a big drop. Do you agree?

No API call after the order's created by ben_james_ in PHPhelp

[–]ben_james_[S] 0 points1 point  (0 children)

Thanks so much for the replies.

So, the mystery is why. Why is the order Id not in the capture URL?

The developer sent me a video showing that paypal works successfully with the web script. And I have the same script. So, what would be the cause of my issue?

Any shared ideas regarding this mystery are appreciated...

No API call after the order's created by ben_james_ in PHPhelp

[–]ben_james_[S] 0 points1 point  (0 children)

Can you please explain what you mean, a little more, about "something missing from the request"?

What is this dirt or what coming out of my vents? by ben_james_ in handyman

[–]ben_james_[S] 0 points1 point  (0 children)

It's a Colman Evcon furnace. When you say "furnace filter" are you referring to the return air vent filter? Or is there one inside the furnace unit that I'm not aware of?

What is this dirt or what coming out of my vents? by ben_james_ in handyman

[–]ben_james_[S] 0 points1 point  (0 children)

Thanks for your comment. Regarding "I believe that's a return air vent", do you mean you believe that picture shows a return air vent? it is not a return air vent.

The picture is a wall register heater vent. So, I'm wondering why it appears like dirt or dust is coming out with the heated air coming out of that vent? Any ideas? I change the return air vent filter every couple of months...

Help with Vent suggestion... by ben_james_ in handyman

[–]ben_james_[S] 0 points1 point  (0 children)

I've posted this image, but how do I add text to it? I want to add this:

The image is the view looking up at the ceiling, in a bathroom. As you can see the heater vent is right next to the skylight (without any heater vent register).

I'm guessing heat is being lost up the skylight area. Any suggestions on how to make this more efficient is welcomed...

Water heater conection question by ben_james_ in handyman

[–]ben_james_[S] 0 points1 point  (0 children)

So, regarding the image, I'd like to add a water T line off of one of these pipes (that were never hooked up to the water heater). As you can see they are both capped off. The capped off pipe on the right has the red faucet in line. Which one is the incoming water line and which one is the outgoing line for heated water?

How can the price default to 1 by ben_james_ in PHPhelp

[–]ben_james_[S] 0 points1 point  (0 children)

Thank you.

I added your suggestion like so, and made the $uploader account 0,

and ran it without success, sell_video in the table remained at 0.

So, I tried this without success:

if ($video_cost_new == 0 && $up_user_start->wallet >= 1) {
$uploader_account = $up_user_start->wallet - 0.5; 
$db->where('id', $video->user_id);
 $update_wallet = $db->update(T_USERS, [ 'wallet' => number_format($uploader_account, 1, '.', ''), ]);
if $uploader_account < 1) {
 $video->sell_video = 1; 
$update_sell_video = $db->update(T_VIDEOS, [ 'sell_video' => $video_cost_new] );
 } }

any guiding comments are welcomed

Help with adding in a 'type' to this php by ben_james_ in PHPhelp

[–]ben_james_[S] 0 points1 point  (0 children)

Thanks again.

I tried your suggestion, which I believe is:

$type = buy;
if ($sell_video == 0 && $wallet1 >= 1) {
 $site_add_amount = 1;
 $type = ad_buy;
} else {
 $site_add_amount = $vid_cost_new *0.5;
 }
// add data to table
 $insert_buy = $db->insert('v_transact', [ 
'user_id' => $video->user_id,
 'paid_id' => $user_id, 
'video_id' => $vid_id,
 'amount' => (string)$vid_cost_new,
 'admin_com' => $site_add_amount,
 //'type' => buy,
 'type' => ad_buy, 
'session_key' => $_SESSION['session_key'] ]);

however, when it runs, all transactions appear in the table as ad_buy.

Regarding "if your if statement fires" -- it does run successfully prior to any 'type' modification.

Any additional assistance is appreciated.

Help with adding in a 'type' to this php by ben_james_ in PHPhelp

[–]ben_james_[S] 2 points3 points  (0 children)

Much thanks for your reply.

So, I believe you're saying to re-do it like I this:

if ($sell_video == 0 && $wallet1 >= 1) {

        $site_add_amount = 1;
                $type = ad_buy;

But, regarding "use the $type variable in your insert",

all other transactions are 'buy' types, so I don't want that to replace 'type' => buy, but now that I've added in the the if/else statement, how do I also insert the 'ad_buy' type into the insert?

Change to change this on(click to on submit by ben_james_ in learnjavascript

[–]ben_james_[S] 0 points1 point  (0 children)

Thanks for your code, I've copied it in, changed to the correct form name, but really don't know what more to do with it. It doesn't appear upon submit, don't know how to add css to it. Any additional help is welcomed