Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken texted android mp4s #3

Open
Poikilos opened this issue Dec 28, 2020 · 0 comments
Open

Fix broken texted android mp4s #3

Poikilos opened this issue Dec 28, 2020 · 0 comments
Labels
enhancement New feature or request

Comments

@Poikilos
Copy link
Collaborator

Tried

ffmpeg -i 486137258807972881 -acodec copy -vcodec copy DancingVideo.mp4

Renaming

ffmpeg -i 486137258807972881.mp4 -acodec copy -vcodec copy DancingVideo.mp4
ffmpeg -i 486137258807972881.avi -acodec copy -vcodec copy DancingVideo.mp4
ffmpeg -i 486137258807972881.mov -acodec copy -vcodec copy DancingVideo.mp4
ffmpeg -i 486137258807972881.mp4 -c copy DancingVideo.mp4
ffmpeg -i 486137258807972881.mp4 -codec copy DancingVideo.mp4
ffmpeg -i 486137258807972881.mp4 -map 0:0 -map 0:1 -codec copy DancingVideo.mp4
ffmpeg -i 486137258807972881.mp4 -map 0:? -map 0:? -codec copy DancingVideo.mp4

Result

[mp4 @ 0x5622915fda00] Could not find tag for codec h263 in stream #0, codec not currently supported in container
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument

Fix

(See https://stackoverflow.com/questions/57541354/could-not-find-tag-for-codec-h264-in-stream-0-mp4)

ffmpeg -i 486137258807972881 -c:a:0 copy -map 0:0 -map 0:1 DancingVideo.mp4
@Poikilos Poikilos added the enhancement New feature or request label Dec 28, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant