[Pixiv] ffmpeg / exiftool Invalid data #2448
Answered
by
mikf
github-account1111
asked this question in
Q&A
-
Getting the following ffmpeg error:
Relevant config portion: {
"postprocessor": {
"ugoira-copy": {
"name": "ugoira",
"extension": "mkv",
"ffmpeg-args": [
"-c",
"copy"
],
"libx264-prevent-odd": false,
"repeat-last-frame": false
}
},
"extractor": {
"pixiv": {
"refresh-token": "<redacted>",
"tags": "translated",
"filename": "{date:%Y%m%d}-{id}{num:?//>02}.{extension}",
"directory": [
"{user[account]}-pixiv"
],
"ugoira": true,
"postprocessors": [
{
"name": "exec",
"command": [
"exiftool",
"-overwrite_original",
"-title=https://www.pixiv.net/en/artworks/{id}",
"{_path[4:]}"
]
},
"ugoira-copy"
]
}
}
} I looked under |
Beta Was this translation helpful? Give feedback.
Answered by
mikf
Mar 28, 2022
Replies: 1 comment 1 reply
-
Add I've never had this error personally, but maybe your FFmpeg is rather old and needs safe-mode disabled. In other news, setting timecodes with mkvmerge is now supported: e718dd7. You don't need to configure anything extra for that, just an |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
github-account1111
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add
"-safe", "0"
to yourffmpeg-args
.I've never had this error personally, but maybe your FFmpeg is rather old and needs safe-mode disabled.
In other news, setting timecodes with mkvmerge is now supported: e718dd7. You don't need to configure anything extra for that, just an
mkvmerge
binary in PATH.