File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 88* .swp
99* ~.nib
1010* .json
11+ * .log
1112.DS_Store
1213local.properties
1314.settings /
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ AutoCF stands for "Automated Content Farm" and is an application that creates vi
33
44With AutoCF, you can automate the creation of these low quality videos.
55
6+ You can view an example of a generated video [ here] ( https://www.youtube.com/watch?v=bQcwFujpVX8 ) .
67
78## Installation
89You can run AutoCF by doing the following:
Original file line number Diff line number Diff line change @@ -30,12 +30,13 @@ private void startSpeaking(String message) {
3030 @ Msg (selector = "speechSynthesizer:didFinishSpeaking:" , signature = "v@:B" )
3131 public void didFinishSpeaking (boolean naturally ) {
3232 if (speakingQueue .isEmpty ()) {
33- speaking = false ;
33+ speaking = ( boolean ) this . synth . sendBoolean ( "isSpeaking" ) ;
3434 }
3535 else {
3636 startSpeaking (speakingQueue .poll ());
3737 }
3838 }
39+
3940 public boolean isSpeaking () {
4041 if (speakingQueue .isEmpty ()) {
4142 return speaking ;
You can’t perform that action at this time.
0 commit comments