Main > Free Download Search >

Free stunnix javascript obfuscator encoder 4.2 software for linux

stunnix javascript obfuscator encoder 4.2

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 830
BladeEnc 0.9.4.2

BladeEnc 0.9.4.2


BladeEnc is a cross-platform MP3 encoder. more>>
BladeEnc is a freeware MP3 encoder. It is based on the same ISO compression routines as mpegEnc, so you can expect roughly the same, or better, quality . The main difference is the appearance and speed.
BladeEnc doesnt have a nice, user-friendly interface like mpegEnc, but it is more than three times faster, and it works with several popular front-end graphical user interfaces.
BladeEncs output quality is one of those rare subjects that completely divides the world in two parts. Either you love it or you hate it, there never seems to be an opinion inbetween. Different audiophiles and mp3 experts tends to come to completely different conclusions depending on their methods and testsamples.
The reason for this is of course that BladeEnc is a very different mp3 encoder (compared to Fraunhofer, LAME etc) with a very unique approach to mp3 encoding.
In order to compress sound to an mp3 file, you need to make certain sacrifices in quality. Taking into account how we percieve sound, the mp3 encoder tries to remove the details that it believes us to be least likely to notice. How much that needs to be removed depends on the bitrate and the encoder often has the choice of doing different kinds of sacrifices.
It can remove low volume tones that are "shadowed" by high volume tones of similar frequencies, remove the high frequency part of the sound spectrum, cut down the stereo effect (so called joint stereo) and simply decrease the samplerate. What approach is the best depends on a lot of things, like the style of music and the selected bitrate.
Main features:
- Sourcecode available under the LGPL-license!
- Stereo or Mono output. Can downmix to Mono on the fly.
- Supports the following bitrates: 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256 and 320 kBit/s. However, for bitrates lower than 128 kBit we seriously recommend you to use another encoder.
- Flags like Private, Original and Copyright can be set.
- Input samples can be in either 32, 44.1 or 48 kHz.
- Both 8 and 16-bit samples are supported.
- Working CRC checksum generation (since 0.80). The ISO reference code had broken CRC calculations, which has been inherited into every ISO based encoder that havent added a fix for it.
- Can be plugged directly into many popular 3rd party products, giving them integrated mp3 encoding abilities.
- Encodes chunks of data from memory to memory, no need to use files or pipes.
- Can be compiled for nearly any operating system still in use.
- Commandline based, makes it easy to include BladeEnc into BAT files and shell scripts.
- Only mp3 encoder that supports gapless encoding.
- Reads standard uncompressed WAV- and AIFF-files as well as well as RAW PCM-data.
- Batch encoding. Can encode any number of samples in a row.
- Wildcards supported. You can for example encode all WAV-files in a directory by typing *.WAV".
- Input samples can be automatically deleted after encoding.
- Large selection of graphical frontends available.
- Task priority can be set from the commandline and is by default set to LOWEST so that you still can use your computer effectively while encoding (Windows & OS/2 only).
- Full support for pipes and redirection (stdin and stdout).
- Textbased configuration file where you can change default settings.
<<less
Download (0.05MB)
Added: 2005-05-10 License: LGPL (GNU Lesser General Public License) Price:
2371 downloads
ProGuard 3.9 / 4.0 Beta

ProGuard 3.9 / 4.0 Beta


ProGuard is a Java class file shrinker and obfuscator. more>>
ProGuard is a free Java class file shrinker, optimizer, and obfuscator. ProGuard project can detect and remove unused classes, fields, methods, and attributes. It can then optimize bytecode and remove unused instructions.
Finally, it can rename the remaining classes, fields, and methods using short meaningless names. The resulting jars are smaller and harder to reverse-engineer.
More compact jar files also means smaller storage requirements, faster transfer of applications across networks, faster loading, and smaller memory footprints.
ProGuards main advantage compared to other Java obfuscators is probably its compact template-based configuration. A few intuitive command line options or a simple configuration file are usually sufficient. For instance, the following configuration option preserves all applets in a jar:
-keep public class * extends java.applet.Applet
The user manual explains all available options and shows more examples of this powerful configuration style.
ProGuard is fast. It only takes seconds to process programs and libraries of several megabytes. The results section presents actual figures for a number of applications.
ProGuard is a command-line tool with an optional graphical user interface. It also comes with plugins for Ant and for the J2ME Wireless Toolkit.
ProGuard is a Java class file shrinker, optimizer, and obfuscator. The shrinking step detects and removes unused classes, fields, methods, and attributes. The optimization step analyzes and optimizes the bytecode of the methods. The obfuscation step renames the remaining classes, fields, and methods using short meaningless names. The resulting jars are smaller and harder to reverse-engineer.
ProGuard can also be used to list unused fields and methods in an application, and to print out the internal structure of class files.
ProGuard typically reads the input jars (or wars, ears, zips, or directories). It then shrinks, optimizes, and obfuscates them. It then writes the results to one or more output jars (or wars, ears, zips, or directories). The input jars can optionally contain resource files. ProGuard copies all non-class resource files from the input jars to the output jars. Their names and contents remain unchanged.
ProGuard requires the library jars (or wars, ears, zips, or directories) of the input jars to be specified. It can then reconstruct class hierarchies and other class dependencies, which are necessary for proper shrinking, optimization, and obfuscation. The library jars themselves always remain unchanged. You should still put them in the class path of your final application.
In order to determine which code has to be preserved and which code can be discarded or obfuscated, you have to specify one or more entry points to your code. These entry points are typically classes with main methods, applets, midlets, etc.
- In the shrinking step, ProGuard starts from these seeds and recursively determines which classes and class members are used. All other classes and class members are discarded.
- In the optimization step, ProGuard further optimizes the code. Among other optimizations, classes and methods that are not entry points can be made final, and some methods may be inlined.
- In the obfuscation step, ProGuard renames classes and class members that are not entry points. In this entire process, keeping the entry points ensures that they can still be accessed by their original names.
Any classes or class members of your code that are created or invoked dynamically (that is, by name) have to be specified as entry points too. It is generally impossible to determine these cases automatically, but ProGuard will offer some suggestions if keeping some classes or class members appears necessary. For proper results, you should at least be somewhat familiar with the code that you are processing.
ProGuard does handle Class.forName("SomeClass") and SomeClass.class constructs automatically. The referenced classes are preserved in the shrinking phase, and the string arguments are properly replaced in the obfuscation phase. With variable string arguments, it is generally impossible to determine their possible values (they might be read from a configuration file, for instance).
However, as mentioned, ProGuard will note constructs like "(SomeClass)Class.forName(variable).newInstance()". These might be an indication that the class or interface SomeClass and/or its implementations may need to be preserved. You can then adapt your configuration accordingly.
Whats New in 3.9 Stable Release:
- This release fixes a number of bugs.
- Notably, ".class" constructs compiled in Java 6 are now handled correctly.
- The optimization step now avoids a possible division by 0 and correctly processes local variables with indices larger than 255.
- The documentation and examples have been updated.
Whats New in 4.0 Beta Development Release:
- Added preverifier for Java 6 and Java Micro Edition, with new option -dontpreverify.
- Added new option -target to modify java version of processed class files.
- Made -keep options more orthogonal and flexible, with option modifiers allowshrinking, allowoptimization, and allowobfuscation.
- Added support for configuration by means of annotations.
- Improved shrinking of unused annotations.
- Added check on modification times of input and output, to avoid unnecessary processing, with new option -forceprocessing.
- Added new options -flattenpackagehierarchy and -repackageclasses (replacing -defaultpackage) to control obfuscation of packages names.
- Added new options -adaptresourcefilenames and -adaptresourcefilecontents, with file filters, to update resource files corresponding to obfuscated class names.
- Now respecting naming rule for nested class names (EnclosingClass$InnerClass) in obfuscation step, if InnerClasses attributes or EnclosingMethod attributes are being kept.
- Added new inter-procedural optimizations: method inlining and propagation of constant fields, constant arguments, and constant return values.
- Added optimized local variable allocation.
- Added over 250 new peephole optimizations.
- Improved making classes and class members public or protected.
- Now printing notes on suspiciously unkept classes in parameters of specified methods.
- Now printing notes for class names that dont seem to be fully qualified.
- Added support for uppercase filename extensions.
- Rewritten class file I/O code.
- Updated documentation and examples.
<<less
Download (MB)
Added: 2007-06-27 License: GPL (GNU General Public License) Price:
905 downloads
PHP/Javascript Jigsaw puzzle 0.1

PHP/Javascript Jigsaw puzzle 0.1


PHP/Javascript Jigsaw puzzle automatically creates jigsaw puzzles from a folder of images. more>>
PHP/Javascript Jigsaw puzzle automatically creates jigsaw puzzles from a folder of images.
Enhancements:
- javascript libary
<<less
Download (0.011MB)
Added: 2006-03-13 License: GPL (GNU General Public License) Price:
778 downloads
Javascript Search Aggregator 1.0.2

Javascript Search Aggregator 1.0.2


Javascript Search Aggregator allows you to perform all of your Web searches from one place. more>>
Javascript Search Aggregator allows you to perform all of your Web searches from one place.
You can create many categories of searches such as work and fun and customize search engines for your specific needs.
Javascript Search Aggregator remembers the last query and state of the tabs and works on any browser with JavaScript support.
Enhancements:
- Do not load last selected engine on first load
<<less
Download (0.004MB)
Added: 2006-07-09 License: BSD License Price:
1203 downloads
iPod Video Encoder 1.0.2

iPod Video Encoder 1.0.2


iPod Video Encoder is a command line tool for convenient encoding of video files for use on iPod video. more>>
iPod Video Encoder is a command line tool for convenient encoding of video files for use on iPod video. iPod Video Encoder project uses the ffmpeg tool for the actual encoding.
It features recursive encoding of all files in a directory, and generating a podcast.xml file for convenient use in iTunes.
It can be used in a cron job that periodically checks directories for new files and encodes them without user intervention.
Main features:
- Encoding of single files
- Optional specification of a/v bitrates
- Recursively encode all files in a directory
- Generating a podcast.xml for convenient use in iTunes
Options:
--version show programs version number and exit
-h, --help show this help message and exit
-R, --recursive Process directories recusively
-f, --force Force re-encode existing iPod videos
-t, --test Only encode first 10 seconds, to produce test videos
-e EXTENSIONS, --extensions=EXTENSIONS
Comma separated list of input extensions. Default: avi
-i IPODEXT, --ipodext=IPODEXT
iPod extension. Default: .ipod.mp4
-b VIDEO_RATE, --video-rate=VIDEO_RATE
Video bit rate, in kbps (default: 1024)
-a AUDIO_RATE, --audio-rate=AUDIO_RATE
Audio bit rate, in kbps (128)
-W WIDTH, --width=WIDTH
Video width, in pixels (default: 320)
-H HEIGHT, --height=HEIGHT
Video height, in pixels (default: 240)
-P, --pretend Do not really encode, just print out the ffmpeg
commands which would be executed
-v, --verbose Enable verbose output
Podcast options:
-p, --podcast Generate a podcast.xml file for each directory.
--podcast-documentroot=PODCAST_DOCUMENTROOT
Podcast document root; eg. /var/data/Movies/
--podcast-baseurl=PODCAST_BASEURL
Podcast base URL; eg. http://localhost/
Enhancements:
- Only uses the -e option for processing directories.
- The default ipod extension is now _ipod.mp4 for Windows compatibility.
- The README file has been extended with information on the .ipod-encoder settings file.
- The program no longer crashes when HOME is not set on Windows.
- --width and --height parameters have been added.
<<less
Download (0.010MB)
Added: 2006-01-20 License: GPL (GNU General Public License) Price:
1379 downloads
jsPro R3

jsPro R3


jsPro is a set of Javascript libraries. more>>
jsPro is a set of libraries that extend the core Javascript classes and provide a number of new classes.

The aim is to provide a rich set of object-based functionality to the Javascript language.
<<less
Download (0.050MB)
Added: 2005-04-13 License: LGPL (GNU Lesser General Public License) Price:
1656 downloads
PHP/JavaScript interpreter 0.01011

PHP/JavaScript interpreter 0.01011


PHP/JavaScript interpreter is a PHP JavaScript script interpreter for server-side use. more>>
This scripting language interpreter is implemented in PHP and allows to execute user-supplied JavaScript-lookalike code server-side, without compromising security because everything runs safely in a sandbox.

This is of course much slower than a real interpreter, but is useful for integration into CMS/Wiki engines to have users extend a sites dynamic functions.

It can be connected to the hosting interpreter (PHP) by allowing access to certain (interface) functions and even PHP variables.
<<less
Download (0.030MB)
Added: 2005-04-15 License: Freeware Price:
1657 downloads
Javascript Flickr Slideshow 0.2

Javascript Flickr Slideshow 0.2


Javascript Flickr Slideshow is a slideshow that shows images from Flickr.com. more>>
Javascript Flickr Slideshow is a slideshow that shows images from Flickr.com. You can specify tags and/or users to limit the slideshow.
Javascript Flickr Slideshow uses the "canvas" object, works in Firefox and Internet Explorer using the excanvas.js library, and integrates into any Web page.
Enhancements:
- A bug that caused Internet Explorer to crash when refreshing a page was fixed.
- The API was expanded to handle image and canvas tags.
<<less
Download (0.17MB)
Added: 2007-02-26 License: GPL (GNU General Public License) Price:
988 downloads
LAME MP3 Encoder 3.98.2

LAME MP3 Encoder 3.98.2


Today, LAME is considered the best MP3 encoder at mid-high bitrates and at VBR. more>> LAME development started around mid-1998. Mike Cheng started it as a patch against the 8hz-MP3 encoder sources. After some quality concerns raised by others, he decided to start from scratch based on the dist10 sources. His goal was only to speed up the dist10 sources, and leave its quality untouched. That branch (a patch against the reference sources) became Lame 2.0, and only on Lame 3.81 did we replaced of all dist10 code, making LAME no more only a patch.
The project quickly became a team project. Mike Cheng eventually left leadership and started working on tooLame, an MP2 encoder. Mark Taylor became leader and started pursuing increased quality in addition to better speed. He can be considered the initiator of the LAME project in its current form. He released version 3.0 featuring gpsycho, a new psychoacoustic model he developed.
In early 2003 Mark left project leadership, and since then the project has been lead through the cooperation of the active developers (currently 4 individuals).
Today, LAME is considered the best MP3 encoder at mid-high bitrates and at VBR, mostly thanks to the dedicated work of its developers and the open source licensing model that allowed the project to tap into engineering resources from all around the world. Both quality and speed improvements are still happening, probably making LAME the only MP3 encoder still being actively developed.
<<less
Download (1.27MB)
Added: 2009-04-08 License: Freeware Price:
198 downloads
 
Other version of LAME MP3 Encoder
LAME MP3 Encoder 3.98Today, LAME is considered the best MP3 encoder at mid-high bitrates and at ... and started working on tooLame, an MP2 encoder. Mark Taylor became leader and started pursuing
License:Freeware
Download (1.35MB)
306 downloads
Added: 2009-04-10
Kits JavaScript Brainf*ck Interpreter 0.01

Kits JavaScript Brainf*ck Interpreter 0.01


Kits JavaScript Brainf*ck Interpreter is a rather fast interpreter for the Brainf*ck esoteric programming language. more>>
Kits JavaScript Brainf*ck Interpreter is a rather fast interpreter for the Brainf*ck esoteric programming language.
<<less
Download (0.005MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
807 downloads
phpGuardian 2.0 Beta

phpGuardian 2.0 Beta


phpGuardian is a script that allows to monitorize the access to your scripts. more>>
phpGuardian is a script that allows to monitorize the access to your scripts, and eventually to execute, in the script, of the additional code (es. for locking the execution to who you want).
Moreover the script acts as also from encoder of the code, preventing the visualization and the modification of the code php.
Main features:
- Monitoring execution script
- Execution additional code inside of the monitorized script
- List of the users who use the monitorized script
- Information on every users
- It codifies sources php with two modality and vary levels of security
Enhancements:
- The obfuscator, the database astraction, the re-encode script, the re-obfuscate script, the documentation were added.
- More functionality was added to server.php.
- Several improvements were carried out.
- Several bugs were resolved.
<<less
Download (0.093MB)
Added: 2006-09-20 License: Other/Proprietary License with Source Price:
1131 downloads
Versatile Encoder 0.8p2

Versatile Encoder 0.8p2


Versatile Encoder allows you to encode your own videos into good quality mpeg4 or h264. more>>
Versatile Encoder allows you to encode your own videos into good quality mpeg4 or h264. The input can be a sequence of files (as generated by blender), a file (if you want to recompress something) or a DVD/VCD (if you need to backup some movie).

This piece of software tries to guess good defaults and to help the user in his choices. It works at least under Windows and Linux, the coding platform is Linux.

It should work without a hassle under all BSD variants and probably under MacOSX too, report me if you get it working somewhere else.
<<less
Download (0.092MB)
Added: 2006-07-10 License: BSD License Price:
1207 downloads
JavaScript::App 0.13

JavaScript::App 0.13


JavaScript::App is a Perl framework for building dynamic widgets or full applications in Javascript. more>>
JavaScript::App is a Perl framework for building dynamic widgets or full applications in Javascript.

SYNOPSIS

see the documentation for "js-app" ("man js-app" or "perldoc js-app")

"js-app" is a Javascript Application framework with which you can build rich web applications and widgets embeddable in web pages.

<<less
Download (0.041MB)
Added: 2006-09-05 License: Perl Artistic License Price:
1154 downloads
Generic JavaScript validator 1.0

Generic JavaScript validator 1.0


Generic JavaScript validator is a simple but powerful cross-browser JavaScript that combines DOM and regulars expressions. more>>
Generic JavaScript validator is a simple but powerful cross-browser JavaScript that combines DOM and regulars expressions for the client-side validation of forms.

It can validate any number of form on HTML documents. Generic JavaScript validator also supports user defined JavaScript functions.

Include .js file

Inside < head > section of the html with the form inside you insert these lines


< script language="JavaScript" type="text/javascript" src="validate.js" >< /script >
<<less
Download (0.012MB)
Added: 2006-09-14 License: GPL (GNU General Public License) Price:
663 downloads
smp-encode 0.99

smp-encode 0.99


smp-encode is a compact utility that encodes groups of audio files. more>>
smp-encode is a compact utility that encodes groups of audio files in parallel to make use of multiple CPUs with single threaded encoders.
smp-encode project supports supports OggEnc and LAME.
Usage:
smp-encode is invoked with 3 mandatory arguments.
-e < encoder > where encoder is one of the available builtin modules, "lame" or "oggenc" as of now. encoder arguments are hardcoded in encoder.cpp, but in the future these will be defined on smp-encodes commandline.
-p < N > where N refers to any number over over 0. This will cause smp-encode to generate N processes to be used to encode the given files. Given files are evenly distributed.
The last mandatory argument is a choice between a list of files, either given explicitly or via wildcard (eg. ./*.wav) or the -d < directory > argument.
As of now, successful invocations dont display anything during runtime, in the future some progress info will be reported.
Compile:
You should be fine with just running make and then make install. This will generate a program named smp-encode that is stripped. And throw it in /usr/local/bin
If you need to add encoders or edit the argvs of them, encoder.cpp is where all that stuff is done.
Enhancements:
- A complete rewrite using the GTK+2.0 UI.
- Thread control (pause and cancel).
- Many options from LAME and oggenc are implemented in the GUI.
- Progress bars indicate individual thread progress.
- Many other tweaks and bugfixes related to the rewrite.
<<less
Download (0.016MB)
Added: 2006-03-06 License: GPL (GNU General Public License) Price:
1328 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5