Tagged Questions
-3
votes
0answers
44 views
Is possible to change voice frequency by text hash? [closed]
I have web application, where I need to change human voices by specific key. I would like to have something like that for input:
$word = "Oh my god";
$hash = "adce9200bedaa726a75407c4f225c6bb";
...
4
votes
1answer
129 views
MySQL: Transport planner with repeating tasks
I'm working on a transport planner. My MySQL(i)/PHP knowledge is (very) basic.
I want to display a HTML table with all tasks of a certain day.
But the problem is that some tasks need to be repeated ...
-1
votes
1answer
64 views
enumerate array and report contiguous occurrences with index range
what sort of php array enumeration must I use to get from this array:
[0] => 0 [1] => 0 [2] => 0 [3] => 0 [4] => 42 [5] => 42 [6] => 42 [7] => 42 [8] => 36 [9] => 36 ...
0
votes
1answer
148 views
Find intersection/frequency of a word in multiple file
<?php
$wordFrequencyArray = array();
function countWordsfrequency($filename) {
global $wordFrequencyArray;
$contentoffile = (file_get_contents($filename));
$wordArray = ...
1
vote
1answer
427 views
Sound Frequency detecting?
What is the solution to detect specific words from audio file?
I have a lot of audio file (same codec) and each file is only about 15 seconds long. (Note: all audio files are the same person / same ...
3
votes
1answer
63 views
Coding an interface where user selects date reoccurnace
I need to create an interface where a user needs to select how many times his magizine/newspaper gets distributed. Some magazines/newspapers get distributed
Several times a week.
Several times a a ...
0
votes
3answers
97 views
How to made PHP function to show frequency based on precentage? [duplicate]
here the sample case..
i want to display banner randomly by percentage based on visitor hits.
for example i want to display ads 70% of visitor hits..
the problem is we don't know how many visitor is.
...
1
vote
1answer
511 views
PHP - count frequency of array values
Is there a way in php to count how often a value exists in a large array?
So if I have an array like this:
$array = "1,2,3,4,joe,1,2,3,joe,joe,4,5,1,6,7,8,9,joe";
is there a way to output a new ...
0
votes
3answers
76 views
Search Pattern Frequency
Preferably PHP solutions -- but any ideas would be great.
Give a text blob
'This is a super string of some content whree I want to find red sweaters and purple elephants. The purple elephants will ...
0
votes
1answer
393 views
unicode letter or character frequency in php or vb.net
AM doing a letter frequency analyzer program just like this website http://www.characterfrequencyanalyzer.com/, but i don't know the right algorithm. Of course simple looping should work if it where ...
0
votes
1answer
704 views
Indexing text files in PHP
I have been set a challenge to create an indexer that takes all words 4 characters or more, and stores them in a database along with how many times the word was used.
I have to run this indexer on ...
