Encountered a stunt driving MC on the way home

GTA Driver

Well-Known Member
Joined
Apr 5, 2015
Messages
1,264
Reaction score
602
Location
Greater Toronto Area
Country
Canada
Dash Cam
Iroad 3300CH, G1W-c, Mobius C, A119 v1 & v3, A118-c2
The motorcycle behind me was moving along quite decently. No lane splitting. Keeping his distance. Driving a little to left so I moved to the right to give him a better view. Then two lanes became three and we could all accelerate and this happens.

 
I have been playing around with ffmpeg. I find I get a result with that much faster than using an editor. I do my basic editing with it, such as extracting the time frame and joining different files together before putting titles in.

For the above clip there were two raw files from my A119 which produces 1 minute files. I only need the final 18 seconds from the first file and 31 from the second file. That was determined by viewing the file with VLC. I know, I could have used VLC to extract the time frame I want from a file, but I find it clunky.

Here is the code (A119 files )

Code:
ffmpeg -i 2017_0918_154740_336.MP4 -ss 00:00:41.50 -to 00:00:59.99 -c copy -copyts mc\2017_0918_154740_336_mcOnKip.MP4
ffmpeg -i 2017_0918_154841_337.MP4 -ss 00:00:00.0  -to 00:00:31.00 -c copy -copyts mc\2017_0918_154841_337_mcOnKip.MP4

The above is for Windows\Dos. I could have done the same in linux with the only difference being the slash. It becomes "mc/2017_0918_154841_337_mcOnKip.MP4".

The target files were produced in less than a second using the above commands (which I had batch file in the event I needed to adjust). The two files now need to be joined. On a dos\command shell, where the file are located

Code:
(for %i in (*.MP4) do @echo file ‘%i’) > input.txt

Produces the file input.txt, which looks like this.

Code:
file '2017_0918_154740_336_mcOnKip.MP4'
file '2017_0918_154841_337_mcOnKip.MP4'

To make video file with the above clips concatenated/joined/merged do the following

Code:
ffmpeg -f concat -i input.txt -c copy output.mp4

The file output.mp4 is produced in about 7 seconds.
 
Last edited:
At least he was only risking his own skin. Literally.
 
His crash helmet doesn't really go with the t-shirt, wonder why he is wearing it o_O

Edit: I see the reason, without it the all-black camouflage wouldn't be complete, presumably a license plate would also spoil the blackness, hence not having one... How are you going to report him with no plate?
 
Last edited:
Stunt is nice, but not on public streets, and besides most 12 year old can do a wheelie on a bicycle, you will need to throw it down harder than that to impress me.

I could do with a little of this once in a while, even if i am +50 and not as nimble anymore, i do miss those shots of adrenaline and endorphins :D best ****tail ever and only slightly addicting.

 
There is a motorcycle mob that has been disrupting traffic for over a year. I wrote about it
https://dashcamtalk.com/forum/threa...g-stunts-by-police-cruiser.21901/#post-287995

This summer the stopped the traffic on the highways
WED_MOTORCYCLE_THUMB_090817.jpg WED_GTOR_MOTORCYCLES_090817_848x480_1021330499826.jpg

So today, a day after I filmed this clip, they caught 10 of them and laid 48 charges. The police are seeking more. I saw a new story on this and they have confiscated some pretty nice looking bikes.

Back in August, the police were asking for dashcam videos concerning the events above
https://globalnews.ca/news/3757729/opp-stunt-driving-charges-motorcycles-toronto/

From
https://www.thestar.com/news/crime/...charges-against-motorcycle-stunt-drivers.html
Some of the motorcycles on display had stickers over license plates, while others had no licence plates at all.
 
Back
Top