ffmpeg sometimes not working for splitted videos-moov atom not found
up vote
0
down vote
favorite
I am using below command to reverse video-
{"-i", files[i].getAbsolutePath(), "-vf", "reverse", "-af", "areverse", dest.getAbsolutePath()};
I occasionally gets below error-
ffmpeg version n3.0.1 Copyright (c) 2000-2016 the FFmpeg developersn
built with gcc 4.8 (GCC)n configuration: --target-os=linux
--cross-prefix=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi-
--arch=arm --cpu=cortex-a8 --enable-runtime-cpudetect --sysroot=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/sysroot
--enable-pic --enable-libx264 --enable-libass --enable-libfreetype --enable-libfribidi --enable-libmp3lame --enable-fontconfig --enable-pthreads --disable-debug --disable-ffserver --enable-version3 --enable-hardcoded-tables --disable-ffplay --disable-ffprobe --enable-gpl --enable-yasm --disable-doc --disable-shared --enable-static --pkg-config=/home/vagrant/SourceCode/ffmpeg-android/ffmpeg-pkg-config --prefix=/home/vagrant/SourceCode/ffmpeg-android/build/armeabi-v7a --extra-cflags='-I/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/include
-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all' --extra-ldflags='-L/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/lib
-Wl,-z,relro -Wl,-z,now -pie' --extra-libs='-lpng -lexpat -lm' --extra-cxxflags=n libavutil 55. 17.103 / 55. 17.103n libavcodec 57. 24.102 / 57. 24.102n libavformat 57. 25.100 /
57. 25.100n libavdevice 57. 0.101 / 57. 0.101n libavfilter 6. 31.100 / 6. 31.100n libswscale 4. 0.100 / 4. 0.100n libswresample 2. 0.101 / 2. 0.101n libpostproc 54. 0.100 /
54. 0.100n[mov,mp4,m4a,3gp,3g2,mj2 @ 0xec427000] moov atom not foundn/storage/emulated/0/Movies/.VideoSplit/split_video010.mp4:
Invalid data found when processing input
By what i have researched-
moov atom is a container for the information that describes a movie’s
data...Generally speaking, only metadata is stored in a movie atom.
Sample data for the movie, such as audio or video samples, are
referenced in the movie atom, but are not contained in it.
The videos which I am reversing are splitted videos from a main video which I have splitted using below command-
{ "-i", inputFilePath, "-c:v", "libx264", "-crf", "22", "-map", "0", "-segment_time", "6", "-g", "9", "-sc_threshold", "0", "-force_key_frames", "expr:gte(t,n_forced*6)", "-f", "segment", outputFilePath};
How can i resolve this error?
add a comment |
up vote
0
down vote
favorite
I am using below command to reverse video-
{"-i", files[i].getAbsolutePath(), "-vf", "reverse", "-af", "areverse", dest.getAbsolutePath()};
I occasionally gets below error-
ffmpeg version n3.0.1 Copyright (c) 2000-2016 the FFmpeg developersn
built with gcc 4.8 (GCC)n configuration: --target-os=linux
--cross-prefix=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi-
--arch=arm --cpu=cortex-a8 --enable-runtime-cpudetect --sysroot=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/sysroot
--enable-pic --enable-libx264 --enable-libass --enable-libfreetype --enable-libfribidi --enable-libmp3lame --enable-fontconfig --enable-pthreads --disable-debug --disable-ffserver --enable-version3 --enable-hardcoded-tables --disable-ffplay --disable-ffprobe --enable-gpl --enable-yasm --disable-doc --disable-shared --enable-static --pkg-config=/home/vagrant/SourceCode/ffmpeg-android/ffmpeg-pkg-config --prefix=/home/vagrant/SourceCode/ffmpeg-android/build/armeabi-v7a --extra-cflags='-I/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/include
-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all' --extra-ldflags='-L/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/lib
-Wl,-z,relro -Wl,-z,now -pie' --extra-libs='-lpng -lexpat -lm' --extra-cxxflags=n libavutil 55. 17.103 / 55. 17.103n libavcodec 57. 24.102 / 57. 24.102n libavformat 57. 25.100 /
57. 25.100n libavdevice 57. 0.101 / 57. 0.101n libavfilter 6. 31.100 / 6. 31.100n libswscale 4. 0.100 / 4. 0.100n libswresample 2. 0.101 / 2. 0.101n libpostproc 54. 0.100 /
54. 0.100n[mov,mp4,m4a,3gp,3g2,mj2 @ 0xec427000] moov atom not foundn/storage/emulated/0/Movies/.VideoSplit/split_video010.mp4:
Invalid data found when processing input
By what i have researched-
moov atom is a container for the information that describes a movie’s
data...Generally speaking, only metadata is stored in a movie atom.
Sample data for the movie, such as audio or video samples, are
referenced in the movie atom, but are not contained in it.
The videos which I am reversing are splitted videos from a main video which I have splitted using below command-
{ "-i", inputFilePath, "-c:v", "libx264", "-crf", "22", "-map", "0", "-segment_time", "6", "-g", "9", "-sc_threshold", "0", "-force_key_frames", "expr:gte(t,n_forced*6)", "-f", "segment", outputFilePath};
How can i resolve this error?
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am using below command to reverse video-
{"-i", files[i].getAbsolutePath(), "-vf", "reverse", "-af", "areverse", dest.getAbsolutePath()};
I occasionally gets below error-
ffmpeg version n3.0.1 Copyright (c) 2000-2016 the FFmpeg developersn
built with gcc 4.8 (GCC)n configuration: --target-os=linux
--cross-prefix=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi-
--arch=arm --cpu=cortex-a8 --enable-runtime-cpudetect --sysroot=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/sysroot
--enable-pic --enable-libx264 --enable-libass --enable-libfreetype --enable-libfribidi --enable-libmp3lame --enable-fontconfig --enable-pthreads --disable-debug --disable-ffserver --enable-version3 --enable-hardcoded-tables --disable-ffplay --disable-ffprobe --enable-gpl --enable-yasm --disable-doc --disable-shared --enable-static --pkg-config=/home/vagrant/SourceCode/ffmpeg-android/ffmpeg-pkg-config --prefix=/home/vagrant/SourceCode/ffmpeg-android/build/armeabi-v7a --extra-cflags='-I/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/include
-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all' --extra-ldflags='-L/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/lib
-Wl,-z,relro -Wl,-z,now -pie' --extra-libs='-lpng -lexpat -lm' --extra-cxxflags=n libavutil 55. 17.103 / 55. 17.103n libavcodec 57. 24.102 / 57. 24.102n libavformat 57. 25.100 /
57. 25.100n libavdevice 57. 0.101 / 57. 0.101n libavfilter 6. 31.100 / 6. 31.100n libswscale 4. 0.100 / 4. 0.100n libswresample 2. 0.101 / 2. 0.101n libpostproc 54. 0.100 /
54. 0.100n[mov,mp4,m4a,3gp,3g2,mj2 @ 0xec427000] moov atom not foundn/storage/emulated/0/Movies/.VideoSplit/split_video010.mp4:
Invalid data found when processing input
By what i have researched-
moov atom is a container for the information that describes a movie’s
data...Generally speaking, only metadata is stored in a movie atom.
Sample data for the movie, such as audio or video samples, are
referenced in the movie atom, but are not contained in it.
The videos which I am reversing are splitted videos from a main video which I have splitted using below command-
{ "-i", inputFilePath, "-c:v", "libx264", "-crf", "22", "-map", "0", "-segment_time", "6", "-g", "9", "-sc_threshold", "0", "-force_key_frames", "expr:gte(t,n_forced*6)", "-f", "segment", outputFilePath};
How can i resolve this error?
I am using below command to reverse video-
{"-i", files[i].getAbsolutePath(), "-vf", "reverse", "-af", "areverse", dest.getAbsolutePath()};
I occasionally gets below error-
ffmpeg version n3.0.1 Copyright (c) 2000-2016 the FFmpeg developersn
built with gcc 4.8 (GCC)n configuration: --target-os=linux
--cross-prefix=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi-
--arch=arm --cpu=cortex-a8 --enable-runtime-cpudetect --sysroot=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/sysroot
--enable-pic --enable-libx264 --enable-libass --enable-libfreetype --enable-libfribidi --enable-libmp3lame --enable-fontconfig --enable-pthreads --disable-debug --disable-ffserver --enable-version3 --enable-hardcoded-tables --disable-ffplay --disable-ffprobe --enable-gpl --enable-yasm --disable-doc --disable-shared --enable-static --pkg-config=/home/vagrant/SourceCode/ffmpeg-android/ffmpeg-pkg-config --prefix=/home/vagrant/SourceCode/ffmpeg-android/build/armeabi-v7a --extra-cflags='-I/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/include
-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all' --extra-ldflags='-L/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/lib
-Wl,-z,relro -Wl,-z,now -pie' --extra-libs='-lpng -lexpat -lm' --extra-cxxflags=n libavutil 55. 17.103 / 55. 17.103n libavcodec 57. 24.102 / 57. 24.102n libavformat 57. 25.100 /
57. 25.100n libavdevice 57. 0.101 / 57. 0.101n libavfilter 6. 31.100 / 6. 31.100n libswscale 4. 0.100 / 4. 0.100n libswresample 2. 0.101 / 2. 0.101n libpostproc 54. 0.100 /
54. 0.100n[mov,mp4,m4a,3gp,3g2,mj2 @ 0xec427000] moov atom not foundn/storage/emulated/0/Movies/.VideoSplit/split_video010.mp4:
Invalid data found when processing input
By what i have researched-
moov atom is a container for the information that describes a movie’s
data...Generally speaking, only metadata is stored in a movie atom.
Sample data for the movie, such as audio or video samples, are
referenced in the movie atom, but are not contained in it.
The videos which I am reversing are splitted videos from a main video which I have splitted using below command-
{ "-i", inputFilePath, "-c:v", "libx264", "-crf", "22", "-map", "0", "-segment_time", "6", "-g", "9", "-sc_threshold", "0", "-force_key_frames", "expr:gte(t,n_forced*6)", "-f", "segment", outputFilePath};
How can i resolve this error?
edited Nov 19 at 12:38
asked Nov 19 at 12:31
varmashrivastava
1048
1048
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53374718%2fffmpeg-sometimes-not-working-for-splitted-videos-moov-atom-not-found%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown