This file contains hidden or 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 | |
for i in T*.mkv #Scan all mkv files | |
do | |
echo $i > filename.txt | |
i="${i%.mkv}" #Remove the extension | |
pipe.py filename.txt | freearc-10bit -i - -vn -acodec libopus -af "channelmap=channel_layout=5.1" -b:a 96k -f ogg - > "../openc/Encoded_$i.ogg" | |
done | |
#exit && screen -X quit |
This file contains hidden or 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 | |
for i in *.mkv #Scan all mkv files | |
do | |
echo $i > filename.txt | |
i="${i%.mkv}" #Remove the extension | |
ffmpeg-10bit -i "$i.mkv" -map 0 -map_metadata 0 -map_chapters 0 -c copy -c:v libx265 -preset medium -x265-params "crf=25" -pix_fmt yuv420p10le -vf scale=1280:-2 -acodec libopus -af aformat=channel_layouts="7.1|5.1|stereo" -b:a 128k -copy_unknown "Encoded_$i.mkv" | |
# mkvmerge -o "remux_$i.mkv" "$i.mkv" "$i.srt" | |
# rm $i.mkv | |
done | |
#exit && screen -X quit |
This file contains hidden or 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 | |
# Copyright 2017 Keefer Rourke <[email protected]> | |
# | |
# Permission to use, copy, modify, and/or distribute this software for any | |
# purpose with or without fee is hereby granted, provided that the above | |
# copyright notice and this permission notice appear in all copies. | |
# | |
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCNUMBERLAIMS ALL WARRANTIES WITH | |
# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
This file contains hidden or 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
FOR /F "delims=*" %%A IN ('dir /b *.m*') DO "./ffmpeg.exe" -i "%%A" -map_metadata 0 -map_chapters 0 -s 1280x720 -c:v libx265 -preset medium -x265-params crf=25 -c:a libvorbis -b:a 96k -c:s copy -map 0 -copy_unknown "Encoded_%%A" |
This file contains hidden or 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
diff --git a/init/init.rc b/init/init.rc | |
index 47e7fcc..61af122 100755 | |
--- a/init/init.rc | |
+++ b/init/init.rc | |
@@ -35,7 +35,7 @@ loglevel 3 | |
export ANDROID_DATA /data | |
export ASEC_MOUNTPOINT /mnt/asec | |
export LOOP_MOUNTPOINT /mnt/obb | |
- export BOOTCLASSPATH /system/framework/core.jar:/system/framework/core-junit.jar:/system/framework/bouncycastle.jar:/system/framework/ext.jar:/system/framework/framework.jar:/system/framework/framework2.jar:/system/framework/android.policy.jar:/system/framework/services.jar:/system/framework/apache-xml.jar | |
+ export BOOTCLASSPATH /system/framework/core.jar:/system/framework/core-junit.jar:/system/framework/bouncycastle.jar:/system/framework/ext.jar:/system/framework/framework.jar:/system/framework/framework2.jar:/system/framework/android.policy.jar:/system/framework/services.jar:/system/framework/apache-xml.jar:/system/framework/sec_edm.jar:/system/framework/seccamera.jar |
This file contains hidden or 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 | |
mkdir ~/Scripts | |
echo ' | |
export PATH=~/Scripts:$PATH' >> ~/.bashrc | |
echo 'curl -T $1 ftp://uploads.androidfilehost.com --user USERNAME:PASSWORD' > ~/Scripts/AFH | |
chmod +x ~/Scripts/AFH |
This file contains hidden or 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
commit b4c599b96b067784f2e02ff31e16de09a824718e | |
Author: maniac103 | |
Date: Nov 13, 2014 | |
Proper supplementary service notification handling (1/5). | |
Change-Id: I4fa94d4ba68a1570d3f822be569ae124882c0e66 | |
commit bc0847ce94a210b1aa64433ebd4448293cfbbaac | |
Author: Rakesh Pallerla <[email protected]> |
NewerOlder