• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
1

Car DVR files have 2 videostreams, premere uses first one. How i change it to use second one?

New Here ,
Aug 27, 2023 Aug 27, 2023

Copy link to clipboard

Copied

2trak.png

TOPICS
Editing , Formats , How to , Import , User interface or workspaces

Views

147

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

New Here , Aug 27, 2023 Aug 27, 2023

Got it!

Finald batch command looks like this:

 

for %i in (*.MP4) do ffmpeg.exe -i "%i" -c copy -map 0:0 "new%~ni.MP4"

 

That converted all 304 files to correct format. Thank you very much!

 

2tracknew.png

Votes

Translate

Translate
Explorer ,
Aug 27, 2023 Aug 27, 2023

Copy link to clipboard

Copied

I don't think this is possible in Premiere Pro unfortunately.  I played around with this and could not find a way to the select the desired video track.  You'll probably need to use ffmpeg on the command line like this:

ffmpeg -i input.mp4 -c copy -map 0:1 output.mp4

ffmpeg is pretty deep, but I'll at least explain the above... -i specifies an input file, -c specifies what codec to use (copy means don't re-encode), -map selects which stream to use (0:0 is the first and 0:1 is the second), and finally -o specifies the output file.

 

Hope this helps!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Aug 27, 2023 Aug 27, 2023

Copy link to clipboard

Copied

LATEST

Got it!

Finald batch command looks like this:

 

for %i in (*.MP4) do ffmpeg.exe -i "%i" -c copy -map 0:0 "new%~ni.MP4"

 

That converted all 304 files to correct format. Thank you very much!

 

2tracknew.png

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines