Hello,

I'm writing an app for Android which uses the XamarinAndroidFFmpeg, when I try to execute the equivalent for:

ffmpeg -i http://10.5.5.9:8080/videos/DCIM/100GOPRO/GOPR2224.MP4 -ss 00:00:05 -t 00:00:10 -c copy cut_video.mp4
I get the error:

the reason for the above error is due to the fact that the ffmpeg in the XamarinAndroidFFmpeg was compiled with the following configuration, emphasis on --disable-network:

ffmpeg version 0.11.1 Copyright (c) 2000-2012 the FFmpeg developers
built on Dec 22 2014 12:52:34 with gcc 4.6 20120106 (prerelease)

configuration: --arch=arm --cpu=cortex-a8 --target-os=linux --enable-runtime-cpudetect --prefix=/data/data/info.guardianproject.ffmpeg/app_opt --enable-pic --disable-shared --enable-static --cross-prefix=/home/n8fr8/dev/android/ndk/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86_64/bin/arm-linux-androideabi- --sysroot=/home/n8fr8/dev/android/ndk/platforms/android-16/arch-arm --extra-cflags='-I../x264 -mfloat-abi=softfp -mfpu=neon -fPIE -pie' --extra-ldflags='-L../x264 -fPIE -pie' --enable-version3 --enable-gpl --disable-doc --enable-yasm --enable-decoders --enable-encoders --enable-muxers --enable-demuxers --enable-parsers --enable-protocols --enable-filters --enable-avresample --enable-libfreetype --disable-indevs --enable-indev=lavfi --disable-outdevs --enable-hwaccels --enable-ffmpeg --disable-ffplay --disable-ffprobe --disable-ffserver --disable-network --enable-libx264 --enable-zlib
Thing is that I need the configuration to include --enable-network --enable-protocol=tcp and for that the ffmpeg should be recompiled, I've looked for how to recompile and found this "a system for building custom ffmpeg binaries for Android", since I'm a windows user I hit a brick wall at this point.

Is there anyone who can help me with this?

Many thanks in advance!!!
Best,
Ram