Annual Winter Trip - open to T4R members located in VA/WV/MD/DC/PA

gotcha [MENTION=168551]LastFrontierRunner[/MENTION] & [MENTION=178029]redshift83[/MENTION] we'll miss you guys, but let's plan on getting together this coming spring!
[MENTION=9260]Icepuck72[/MENTION] yeah man, hopefully it sticks around!
 
Ok everyone,

Few last minute housekeeping things. @calos.elmotor was/is soo much more organized than me...

It'll be cold, so if everyone can bring a little bit of wood, just one bag if you're buying it, that would be awesome. I don't expect we'll find much in the way of dry stuff given the recent snow.

Comms...
Last month when I was out that way, someone was monitoring the channel listed, so just in case there are people without a license, let's use the following channels:

Amateur radio:
Primary: Simplex 146.58 MHz
Secondary: Simplex 147.48 MHz

I'm notoriously bad at remembering (or caring to) stop and take pics. You all are gonna have to help me out with that, otherwise there won't be any decent pics/video of this years trip!

Looking forward to seeing everyone out there, pumped to get some time away, I'm way overdue!!
 
Is anyone bringing a dog? My son can’t make the trip this year and I may bring my 4 legged buddy for company.

What could go wrong with all the snow and mud?
 
Made it home safe. Today's trail riding (Sunday) was like a long and extended highlight reel of "Ice Road Truckers" lol!

Btw anyone curious about the 80 Series Land Cruiser that went down Union Springs with the 4Runner and Tacoma group. I saw it and Driver w/passenger at the rest-stop we came out at the same time. He recognized me and we waived when I passed him. Truck appeared completely unscathed.

I will be sharing a link with the pictures on my Google Drive soon.

This is the picture that ended up putting me high-centered in the culvert. Worth it?
Meh, but it was fun getting the recovery gear out and watching Matt's Taco pulling a 5K lbs pig on wheels lol!

Had a great time seeing everyone this weekend! Always a highlight for me to these trips!
 

Attachments

  • 2020_12_19_0022 for T4R.jpg
    2020_12_19_0022 for T4R.jpg
    49.2 KB · Views: 297
Last edited:
Good seeing everyone again and meeting new peeps. Had a blast and learned a lot! Seems like I need to go out and get myself a set of MaxTrax now thanks to someone...
 
Good seeing everyone!

Gotta go through pics/video still, and the GoPro was being goofy on Sunday, so not sure what all got captured.

Here's some segments of the sunrise on the way up to Wardensville Saturday morning for now....

<iframe width="560" height="315" src="https://www.youtube.com/embed/P-bK7hQwZcA" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
 
Thanks everyone, it was great to meet some new people and see everyone from previous trips too! I definitely needed to get away for a bit and the snow was an added bonus. I managed to force myself to snap two pics (that basically look the same) and saw some cameras out so don't be shy :-)

Thanks again, was a great time!

<a data-flickr-embed="true" href="https://www.flickr.com/photos/186714437@N07/50748026007/in/dateposted-public/" title="IMG_4822"><img src="https://live.staticflickr.com/65535/50748026007_4263959328_b.jpg" width="1000" height="750" alt="IMG_4822"></a><script async src="//embedr.flickr.com/assets/client-code.js" charset="utf-8"></script>
 
Great seeing the photos! My GoPro editing skills are weak. Lots of boring, long 37 minute videos but I will see if I can cut out some highlights.

In the meantime here is the shared link to my Google Drive with the photos I took. Sorry if I didn't get everyone in. Getting these photos reminded me of being on the Yearbook staff for my daughter's elementary school..."make sure the same people aren't in more than 3 photos and try to get everyone"

Enjoy if you can:
12-19-2020 T4R Annual Winter Trip - Google Drive
 
Hello everyone!

I wasn't even aware this was planned on this forum, since I was just invited by someone I already knew. I had a good time and it was nice meeting everyone. Definitely hope we can do it again in the spring!

(I was in the grey 4th Gen 4runner with the ARB bumper, by the way.)
 
Last edited:
Sped up video heading up dunkle to flagpole knob. pita getting youtube to process this without a f---ton of compression artifacts...had to upsample the original to 4k and upload that.

<iframe width="1040" height="585" src="https://www.youtube.com/embed/wNbUq9QnKjU" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
 
Last edited:
[MENTION=279296]jcaino[/MENTION] thanks for posting the video. I have a ton of GoPro that I haven't posted because they are real-time speed. Mind sharing what program you used to speed up the video?

From the warmth and safety (and comfort of knowing there's a real bathroom nearby) of my home that video looks like it shouldn't have been so bad to try going down the "technical" side of Flagpole rather than the packed-snow-ice side we ended up voting for and doing :fear::fear:
 
Last edited:
[MENTION=279296]jcaino[/MENTION] thanks for posting the video. I have a ton of GoPro that I haven't posted because they are real-time speed. Mind sharing what program you used to speed up the video?

From the warmth and safety (and comfort of knowing there's a real bathroom nearby) of my home that video looks like it shouldn't have been so bad to try going down the "technical" side of Flagpole rather than the packed-snow-ice side we ended up voting for and doing :fear::fear:

I actually used ffmpeg from the command line to both join the auto-split gopro files and to speed it up - this avoids a full-on re-encode (and reduction in quality) that you would get by using editing software.

To join the files together, I put the file names (in order that I want them joined) into a text file, we'll call it 'list.txt' and then run ffmpeg.

Example:

contents of list.txt:
file 'GOPR3046.MP4'
file 'GP013046.MP4'
file 'GP023046.MP4'
file 'GP033046.MP4'
file 'GP043046.MP4'
file 'GP053046.MP4'

command to join the files using this list:
fmpeg -f concat -safe 0 -i list.txt -c copy dunkle_whole.mp4

where dunkle_whole.mp4 is the output file. this is the way to go if all the files are in the same format. if you are dealing with input files that are from different format, then you'll need to use some other options.


As for speeding up or slowing down video, that command looks like this:

ffmpeg -i GOPR3046.MP4 -r 120 -filter:v "setpts=0.0625*PTS" -an pre_edit/GOPR3046.MP4-fast.MP4

This basically tells ffmpeg to:
-r 120 = create a 120fps video - it drops frames to do the speed-up - the original is 60fps, so this helps retain more frames than keeping it at 60fps
-filter:v = just concerned with the video, do not process audio, output file will not have an audio track
"setpts=0.0625*PTS" = this is how much we're speeding things up
-an = again telling it to skip audio



First answer here gives a good (more succinct than ffmpeg's official docs) info on joining the audo files: h.264 - How to concatenate two MP4 files using FFmpeg? - Stack Overflow

officlal docs: Concatenate – FFmpeg

official docs on changing playback speed: How to speed up / slow down a video – FFmpeg


Once I had video files joined and sped up, then I threw that into OpenShot (OpenShot Video Editor | Free, Open, and Award-Winning Video Editor for Linux, Mac, and Windows!) and adding the beginning title, the end fade, and the audio track. I originally export it to 720p, 60fps video....which looks great, but YouTube absolutely murdered the quality with compression artifacts. Seems that YouTube re-encodes 4k differently than 1080p and under, so I ended up re-running the video export to upsample to 4k and then uploaded to YouTube - after ~24 hours of them processing the HD feed, the quality is....meh, acceptable.

I very nearly said heck with it and just posted/hosted the video out of my house.....I'm on a 1gb connect with a dedicated media server, so probably would have been fine lol.

Actually, I'll just go ahead and post it anyway.....if you are curious to see the difference between the original 720p version I created vs. the up-sampled one that YouTube (still mangled a bit) processed:

https://home.jcaino.com/dunkle_edit.html


-Jon
 
[MENTION=279296]jcaino[/MENTION]
Thank you for the detailed description! I feel like I just got some insider secrets.:rockon:

I will give that a try and post up once I get through it!
 
We'll probably start making our way South on Friday so we can make it a short drive Saturday morning.

Yeah, I might do the same. Keep me posted please.

I know this is a winter post but I am new to Pittsburgh....spent the last 20 years in SoCal desert wheeling. Would love to find some local Pittsburgh t4r members to wheel with. Anyone interested in a summer trip?
 
Last edited:
That Trip looks like a lot of fun.. I'll bet those trails and campsites are nice in the summer..
How far was the trip from lets say NY? to where you guys camped.
Thanks.
 

Members online

Forum statistics

Threads
278,315
Messages
3,554,125
Members
248,016
Latest member
Advally Service

Trending content

Back
Top