The goals of SCM are generally: Configuration identification – Identifying configurations, configuration items and baselines. Configuration control – Implementing a controlled change process. This is usually achieved by setting up a change control board whose primary function is to approve or reject all change requests that are sent against any baseline. Configuration status accounting – [...]
Posts Tagged ‘configuration’
Software Configuration Management:
Posted: October 13, 2011 in computer, computer and its science, its science, me, Me and People, Uncategorized, work, Work and playTags: configuration, Management, SCM, Software, work
SVN Hook server and client side hook.
Posted: July 21, 2010 in computer, computer and its science, work, Work and playTags: Client-side, configuration, Hooks, Server-side, Subversion, Subversion; Tortoise SVN; Hooks; Client-side; Server-side, SVN, Tortoise SVN, work time entertainment
There are 5 kind of hooks that you can trigger in Subversion, server-side: Hook Explanation Start-commit 1) Triggered before commit transaction is created 2) Used to check commit privileges 3) Args: a) Path to repo b) Username Pre-commit 1) Trigged after transaction is complete BUT before commit 2) Used to protect against empty log message [...]
mkv to most video file conversion
Posted: July 20, 2010 in audio and video, computer, computer and its science, play, video, Work and playTags: configuration, ffmpeg, media player, visual
try to use this ffmpeg command, the essential commands are those in red: C:\Program Files\ffmpeg>ffmpeg -i D:\V\airplanes.mkv -b 2500k -i D:\V\airplanes.track_2.mp3 -vcodec mpeg4 -ab 192k -qmin 4 -async 1 -y D:\v\airplanes.mp4 this could avoid the “warning, clipping 1 dct coefficients to” problem when the audio and video is out of sync. finally my video conversion [...]
handling perm gen problem
Posted: December 22, 2009 in computer, computer and its science, its science, work, Work and playTags: apache, configuration, perm gen
add this parameters to your tomcat launch configuration: -XX:PermSize=512m -XX:MaxPermSize=1024m
How to convert mp3 to ac3 using ffmpeg
Posted: October 16, 2009 in audio, audio and video, computer and its science, its science, play, Work and playTags: configuration, ffmpeg
I use this configuration on ffmpeg D:\personal file\mp3_ac3>”C:\Program Files\ffmpeg”\ffmpeg -i “the_offspring-kristy_are_you_doing_okay-convert-x264-2009-fray.track_2.mp3″ -ab 224000 -ar 44100 -ac 2 -acodec ac3 -y the_offspring-kristy_are_you_doing_okay-convert-x264-2009-fray.track_2.ac3 This is the short configuration for making an ac3 file. You might want to customize the let me share what those options for C:\Program Files\ffmpeg”\ffmpeg //this is where my ffmpeg program is located -i [...]