Posts Tagged ‘configuration’

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 – [...]

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 [...]

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 [...]

add this parameters to your tomcat launch configuration: -XX:PermSize=512m -XX:MaxPermSize=1024m

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 [...]