This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Building https://github.com/thkukuk/libnsl/archive/v1.2.0.tar.gz | |
./configure | |
--prefix=/Users/taner/Projects/mobile-ffmpeg/prebuilt/android-arm/libnsl | |
--with-pic | |
--with-sysroot=/Users/taner/Library/Android/sdk/ndk-bundle/toolchains/mobile-ffmpeg-arm/sysroot | |
--enable-static | |
--disable-shared | |
--disable-fast-install | |
--without-libintl-prefix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Building ntirpc https://github.com/nfs-ganesha/ntirpc/archive/v1.6.2.tar.gz | |
cmake | |
-Wno-dev | |
-DCMAKE_VERBOSE_MAKEFILE=0 | |
-DCMAKE_C_FLAGS=-march=armv7-a -mfpu=vfpv3-d16 -mfloat-abi=softfp -std=c99 -Wno-unused-function -fstrict-aliasing -fPIC -DANDROID -D__ANDROID_API__=21 | |
-DCMAKE_CXX_FLAGS=-std=c++11 -fno-exceptions -fno-rtti | |
-DCMAKE_EXE_LINKER_FLAGS=-march=armv7-a -mfpu=vfpv3-d16 -mfloat-abi=softfp -Wl,--fix-cortex-a8 -lc -lm -ldl -llog | |
-DCMAKE_SYSROOT=/Users/taner/Library/Android/sdk/ndk-bundle/toolchains/mobile-ffmpeg-arm/sysroot | |
-DCMAKE_FIND_ROOT_PATH=/Users/taner/Library/Android/sdk/ndk-bundle/toolchains/mobile-ffmpeg-arm/sysroot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Building https://sourceforge.net/projects/libtirpc/files/libtirpc/1.0.3/libtirpc-1.0.3.tar.bz2 | |
./configure | |
--prefix=/Users/taner/Projects/mobile-ffmpeg/prebuilt/android-arm/libtirpc | |
--with-pic | |
--with-sysroot=/Users/taner/Library/Android/sdk/ndk-bundle/toolchains/mobile-ffmpeg-arm/sysroot | |
--enable-static | |
--disable-shared | |
--disable-fast-install | |
--disable-gssapi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Building https://download.samba.org/pub/samba/samba-4.8.3.tar.gz | |
./configure | |
--prefix=/Users/taner/Projects/mobile-ffmpeg/prebuilt/android-arm/lame | |
--with-static-modules=ALL | |
--cross-compile | |
--cross-answers=/tmp/cross-answers-arm.txt | |
--hostcc=arm-linux-androideabi | |
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set_arch_specific_variables() { | |
case ${ARCH} in | |
arm-v7a) | |
TOOLCHAIN="arm" | |
TARGET_HOST="arm-linux-androideabi" | |
TARGET_ARCH="arm" | |
ABI="armeabi-v7a" | |
;; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# ffmpeg video slideshow script with vertical push transition v2 (01.12.2018) | |
# | |
# Copyright (c) 2017-2018, Taner Sener (https://github.com/tanersener) | |
# | |
# This work is licensed under the terms of the MIT license. For a copy, see <https://opensource.org/licenses/MIT>. | |
# | |
# SCRIPT OPTIONS - CAN BE MODIFIED |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Desktop Entry] | |
Version=1.0 | |
Name=Firefox Developer Edition Web Browser | |
Comment=Browse the World Wide Web | |
GenericName=Web Browser | |
Keywords=Internet;WWW;Browser;Web;Explorer | |
Exec=/usr/local/firefox-developer-edition/firefox %u | |
Terminal=false | |
X-MultipleArgs=false | |
Type=Application |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright 2019 The Chromium Authors. All rights reserved. | |
// Use of this source code is governed by a BSD-style license that can be | |
// found in the LICENSE file. | |
// ignore_for_file: public_member_api_docs | |
import 'dart:async'; | |
import 'dart:io'; | |
import 'package:camera/camera.dart'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cd "srt" || return 1 | |
# ALWAYS CLEAN THE PREVIOUS BUILD | |
make distclean 2>/dev/null 1>/dev/null | |
USE_ENCLIB=gnutls ./configure \ | |
--enable-apps=OFF \ | |
--use-enclib=gnutls \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
org.springframework.web.util.NestedServletException: Method not found. | |
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) | |
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) | |
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) | |
at org.springframework.mock.web.MockFilterChain.doFilter(MockFilterChain.java:134) | |
at org.springframework.test.web.servlet.MockMvc.perform(MockMvc.java:183) | |
at com.arthenica.smartexception.java.SpringTest.putUserTest(SpringTest.java:100) |
OlderNewer