|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1696 ] | Dr. Philippe Gournay |
---|---|
Name | Gournay, Dr. Philippe |
Job Title | Adjunct Professor |
Organisation | University of Sherbrooke |
Address | 2500, boul. de l'université |
Postal Code | J1K 2R1 |
City | SHERBROOKE |
Country | Canada |
Phone | + 1 819 821 8000 ext. 1994 |
Fax | + 1 819 821 7937 |
Mobile | + |
Philippe.Gournay_(on)_USherbrooke.ca [@ replaced for spam protection] | |
Organisation URL | http://www.usherbrooke.ca/ |
Personal URL | http://www.gel.usherbrooke.ca/gournay/ |
Membership | IEEE Member |
Languages | English French |
Specialism | speech compression
very low bit rate speech coding parametric speech coding speech processing speech enhancement noise reduction echo cancellation variable playback source separation voice over IP robustness concealment |
Photograph | Description or CV |
![]() |
http://www.gel.usherbrooke.ca/gournay/ |
![]() |
Last update: 2008-08-29 15:10:21 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |