- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Roku media player not playing MP4 files from external harddrive connected via USB
Thanks again.
Yes, I have used info from StackOverFlow many times and have found good info there.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Roku media player not playing MP4 files from external harddrive connected via USB
@AllyPally12 , it looks like you missed the -c:v copy (or -vcodec copy) in your command line. It will be much quicker if you don't re-encode the video.
Help others find this answer and click "Accept as Solution."
If you appreciate my answer, maybe give me a Kudo.
I am not a Roku employee.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Roku media player not playing MP4 files from external harddrive connected via USB
Thank you so much!
When I tried to make AvsGunnar's command below (that worked on a single file)
---ffmpeg -i roku.mkv -vcodec copy -acodec aac -strict -2 newroku.mkv
into a 'batch' command to process all files in a directory, (and I can't remember the "incorrect" command I used, I got syntax errors I didn't understand, so took out the -c:v copy (or -vcodec copy)).
adding the -c:v copy syntax took the conversion speed up to 28x
for %f in (*.mp4) do ffmpeg -i "%f" -c:v copy -c:a aac "%~nf.mkv"
Again, thank you all from this 'newbie'
ALSO
it took me a while to find how to identify the CODEC info for the Audio- I finally found it using VLC Media Player. If other newbies aren't aware of how to find this, an easy location is using -- VLC Media Player-Tools->Codec Information
- « Previous
- Next »