mirror of
https://github.com/klmp200/kaamelott-soundboard-telegram-bot
synced 2024-11-13 03:43:20 +00:00
Indexer c'est à moitier gagner
This commit is contained in:
commit
b20f1b708a
41
.gitignore
vendored
Normal file
41
.gitignore
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
###Go###
|
||||
|
||||
# Binaries for programs and plugins
|
||||
*.exe
|
||||
*.exe~
|
||||
*.dll
|
||||
*.so
|
||||
*.dylib
|
||||
|
||||
# Test binary, build with `go test -c`
|
||||
*.test
|
||||
|
||||
# Output of the go coverage tool, specifically when used with LiteIDE
|
||||
*.out
|
||||
|
||||
|
||||
###OSX###
|
||||
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
|
||||
# Icon must end with two \r
|
||||
Icon
|
||||
|
||||
|
||||
# Thumbnails
|
||||
._*
|
||||
|
||||
# Files that might appear on external disk
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
|
||||
# Directories potentially created on remote AFP share
|
||||
.AppleDB
|
||||
.AppleDesktop
|
||||
Network Trash Folder
|
||||
Temporary Items
|
||||
.apdisk
|
||||
|
||||
kaamelott-soundboard-telegram-bot
|
66
bot.go
Normal file
66
bot.go
Normal file
@ -0,0 +1,66 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"log"
|
||||
"os"
|
||||
|
||||
"github.com/blevesearch/bleve"
|
||||
)
|
||||
|
||||
// Sound description d'un son
|
||||
type Sound struct {
|
||||
Character string `json:"character"`
|
||||
Episode string `json:"episode"`
|
||||
File string `json:"file"`
|
||||
Title string `json:"title"`
|
||||
}
|
||||
|
||||
func main() {
|
||||
|
||||
var sounds []Sound
|
||||
|
||||
jsonFile, err := os.Open("sounds.json")
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
return
|
||||
}
|
||||
|
||||
byteData, err := ioutil.ReadAll(jsonFile)
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
return
|
||||
}
|
||||
|
||||
if json.Unmarshal(byteData, &sounds) != nil {
|
||||
log.Fatal(err)
|
||||
return
|
||||
}
|
||||
|
||||
mapping := bleve.NewIndexMapping()
|
||||
index, err := bleve.NewMemOnly(mapping)
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
return
|
||||
}
|
||||
|
||||
for _, sound := range sounds {
|
||||
if index.Index(sound.File, sound) != nil {
|
||||
log.Printf("Error d'indexion de %v", sound)
|
||||
}
|
||||
}
|
||||
|
||||
query := bleve.NewMatchQuery("cul")
|
||||
search := bleve.NewSearchRequest(query)
|
||||
searchResults, err := index.Search(search)
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
return
|
||||
}
|
||||
for _, file := range searchResults.Hits {
|
||||
fmt.Println(file.ID)
|
||||
}
|
||||
|
||||
}
|
5
go.mod
Normal file
5
go.mod
Normal file
@ -0,0 +1,5 @@
|
||||
module github.com/klmp200/kaamelott-soundboard-telegram-bot
|
||||
|
||||
go 1.14
|
||||
|
||||
require github.com/blevesearch/bleve v1.0.7
|
95
go.sum
Normal file
95
go.sum
Normal file
@ -0,0 +1,95 @@
|
||||
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
|
||||
github.com/RoaringBitmap/roaring v0.4.21 h1:WJ/zIlNX4wQZ9x8Ey33O1UaD9TCTakYsdLFSBcTwH+8=
|
||||
github.com/RoaringBitmap/roaring v0.4.21/go.mod h1:D0gp8kJQgE1A4LQ5wFLggQEyvDi06Mq5mKs52e1TwOo=
|
||||
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8=
|
||||
github.com/blevesearch/bleve v1.0.7 h1:4PspZE7XABMSKcVpzAKp0E05Yer1PIYmTWk+1ngNr/c=
|
||||
github.com/blevesearch/bleve v1.0.7/go.mod h1:3xvmBtaw12Y4C9iA1RTzwWCof5j5HjydjCTiDE2TeE0=
|
||||
github.com/blevesearch/blevex v0.0.0-20190916190636-152f0fe5c040/go.mod h1:WH+MU2F4T0VmSdaPX+Wu5GYoZBrYWdOZWSjzvYcDmqQ=
|
||||
github.com/blevesearch/go-porterstemmer v1.0.3 h1:GtmsqID0aZdCSNiY8SkuPJ12pD4jI+DdXTAn4YRcHCo=
|
||||
github.com/blevesearch/go-porterstemmer v1.0.3/go.mod h1:angGc5Ht+k2xhJdZi511LtmxuEf0OVpvUUNrwmM1P7M=
|
||||
github.com/blevesearch/mmap-go v1.0.2 h1:JtMHb+FgQCTTYIhtMvimw15dJwu1Y5lrZDMOFXVWPk0=
|
||||
github.com/blevesearch/mmap-go v1.0.2/go.mod h1:ol2qBqYaOUsGdm7aRMRrYGgPvnwLe6Y+7LMvAB5IbSA=
|
||||
github.com/blevesearch/segment v0.9.0 h1:5lG7yBCx98or7gK2cHMKPukPZ/31Kag7nONpoBt22Ac=
|
||||
github.com/blevesearch/segment v0.9.0/go.mod h1:9PfHYUdQCgHktBgvtUOF4x+pc4/l8rdH0u5spnW85UQ=
|
||||
github.com/blevesearch/snowballstem v0.9.0 h1:lMQ189YspGP6sXvZQ4WZ+MLawfV8wOmPoD/iWeNXm8s=
|
||||
github.com/blevesearch/snowballstem v0.9.0/go.mod h1:PivSj3JMc8WuaFkTSRDW2SlrulNWPl4ABg1tC/hlgLs=
|
||||
github.com/blevesearch/zap/v11 v11.0.7 h1:nnmAOP6eXBkqEa1Srq1eqA5Wmn4w+BZjLdjynNxvd+M=
|
||||
github.com/blevesearch/zap/v11 v11.0.7/go.mod h1:bJoY56fdU2m/IP4LLz/1h4jY2thBoREvoqbuJ8zhm9k=
|
||||
github.com/blevesearch/zap/v12 v12.0.7 h1:y8FWSAYkdc4p1dn4YLxNNr1dxXlSUsakJh2Fc/r6cj4=
|
||||
github.com/blevesearch/zap/v12 v12.0.7/go.mod h1:70DNK4ZN4tb42LubeDbfpp6xnm8g3ROYVvvZ6pEoXD8=
|
||||
github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE=
|
||||
github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk=
|
||||
github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk=
|
||||
github.com/couchbase/ghistogram v0.1.0/go.mod h1:s1Jhy76zqfEecpNWJfWUiKZookAFaiGOEoyzgHt9i7k=
|
||||
github.com/couchbase/moss v0.1.0/go.mod h1:9MaHIaRuy9pvLPUJxB8sh8OrLfyDczECVL37grCIubs=
|
||||
github.com/couchbase/vellum v1.0.1 h1:qrj9ohvZedvc51S5KzPfJ6P6z0Vqzv7Lx7k3mVc2WOk=
|
||||
github.com/couchbase/vellum v1.0.1/go.mod h1:FcwrEivFpNi24R3jLOs3n+fs5RnuQnQqCLBJ1uAg1W4=
|
||||
github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE=
|
||||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
|
||||
github.com/glycerine/go-unsnap-stream v0.0.0-20181221182339-f9677308dec2 h1:Ujru1hufTHVb++eG6OuNDKMxZnGIvF6o/u8q/8h2+I4=
|
||||
github.com/glycerine/go-unsnap-stream v0.0.0-20181221182339-f9677308dec2/go.mod h1:/20jfyN9Y5QPEAprSgKAUr+glWDY39ZiUEAYOEv5dsE=
|
||||
github.com/glycerine/goconvey v0.0.0-20190410193231-58a59202ab31/go.mod h1:Ogl1Tioa0aV7gstGFO7KhffUsb9M4ydbEbbxpcEDc24=
|
||||
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
|
||||
github.com/golang/protobuf v1.3.2 h1:6nsPYzhq5kReh6QImI3k5qWzO4PEbvbIW2cwSfR/6xs=
|
||||
github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
|
||||
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
|
||||
github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4=
|
||||
github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
|
||||
github.com/gopherjs/gopherjs v0.0.0-20190910122728-9d188e94fb99/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=
|
||||
github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
|
||||
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
|
||||
github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=
|
||||
github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU=
|
||||
github.com/kljensen/snowball v0.6.0/go.mod h1:27N7E8fVU5H68RlUmnWwZCfxgt4POBJfENGMvNRhldw=
|
||||
github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ=
|
||||
github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=
|
||||
github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
|
||||
github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae/go.mod h1:qAyveg+e4CE+eKJXWVjKXM4ck2QobLqTDytGJbLLhJg=
|
||||
github.com/mschoch/smat v0.2.0 h1:8imxQsjDm8yFEAVBe7azKmKSgzSkZXDuKkSq9374khM=
|
||||
github.com/mschoch/smat v0.2.0/go.mod h1:kc9mz7DoBKqDyiRL7VZN8KvXQMWeTaVnttLRXOlotKw=
|
||||
github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
|
||||
github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
|
||||
github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=
|
||||
github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic=
|
||||
github.com/philhofer/fwd v1.0.0 h1:UbZqGr5Y38ApvM/V/jEljVxwocdweyH+vmYvRPBnbqQ=
|
||||
github.com/philhofer/fwd v1.0.0/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU=
|
||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||
github.com/rcrowley/go-metrics v0.0.0-20190826022208-cac0b30c2563/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4=
|
||||
github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g=
|
||||
github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ=
|
||||
github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=
|
||||
github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU=
|
||||
github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo=
|
||||
github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=
|
||||
github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s=
|
||||
github.com/steveyen/gtreap v0.1.0 h1:CjhzTa274PyJLJuMZwIzCO1PfC00oRa8d1Kc78bFXJM=
|
||||
github.com/steveyen/gtreap v0.1.0/go.mod h1:kl/5J7XbrOmlIbYIXdRHDDE5QxHqpk0cmkT7Z4dM9/Y=
|
||||
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
|
||||
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
|
||||
github.com/syndtr/goleveldb v1.0.0/go.mod h1:ZVVdQEZoIme9iO1Ch2Jdy24qqXrMMOU6lpPAyBWyWuQ=
|
||||
github.com/tinylib/msgp v1.1.0 h1:9fQd+ICuRIu/ue4vxJZu6/LzxN0HwMds2nq/0cFvxHU=
|
||||
github.com/tinylib/msgp v1.1.0/go.mod h1:+d+yLhGm8mzTaHzB+wgMYrodPfmZrzkirds8fDWklFE=
|
||||
github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0=
|
||||
github.com/willf/bitset v1.1.10 h1:NotGKqX0KwQ72NUzqrjZq5ipPNDQex9lo3WpaS8L2sc=
|
||||
github.com/willf/bitset v1.1.10/go.mod h1:RjeCKbqT1RxIR/KWY6phxZiaY1IyutSBfGjNPySAYV4=
|
||||
github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q=
|
||||
go.etcd.io/bbolt v1.3.4 h1:hi1bXHMVrlQh6WwxAy+qZCV/SYIlqo+Ushwdpa4tAKg=
|
||||
go.etcd.io/bbolt v1.3.4/go.mod h1:G5EMThwa9y8QZGBClrRx5EY+Yw9kAhnjy3bSjsnlVTQ=
|
||||
golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
|
||||
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
||||
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||
golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||
golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||
golang.org/x/sys v0.0.0-20181221143128-b4a75ba826a6/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||
golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5 h1:LfCXLvNmTYH9kEmVgqbnsWfruoXZIrh4YBgqVHtDvw0=
|
||||
golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||
gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys=
|
||||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw=
|
||||
gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
|
||||
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
|
3704
sounds.json
Normal file
3704
sounds.json
Normal file
File diff suppressed because it is too large
Load Diff
BIN
sounds/2_3_poils_de_Q.mp3
Normal file
BIN
sounds/2_3_poils_de_Q.mp3
Normal file
Binary file not shown.
BIN
sounds/A-titre-purement-informatif.mp3
Normal file
BIN
sounds/A-titre-purement-informatif.mp3
Normal file
Binary file not shown.
BIN
sounds/Comment_ca_on_bute_Karadoc.mp3
Normal file
BIN
sounds/Comment_ca_on_bute_Karadoc.mp3
Normal file
Binary file not shown.
BIN
sounds/Homme-sans-metier.mp3
Normal file
BIN
sounds/Homme-sans-metier.mp3
Normal file
Binary file not shown.
BIN
sounds/Les-petits-pedestres-dont-un-au-lion.mp3
Normal file
BIN
sounds/Les-petits-pedestres-dont-un-au-lion.mp3
Normal file
Binary file not shown.
BIN
sounds/Les-petits-pedestres.mp3
Normal file
BIN
sounds/Les-petits-pedestres.mp3
Normal file
Binary file not shown.
BIN
sounds/Ren_dez_vous_a_la_ta_verne_incognito.mp3
Normal file
BIN
sounds/Ren_dez_vous_a_la_ta_verne_incognito.mp3
Normal file
Binary file not shown.
BIN
sounds/Soyez-souple-un-peu.mp3
Normal file
BIN
sounds/Soyez-souple-un-peu.mp3
Normal file
Binary file not shown.
BIN
sounds/Tout-travail-merite-salaire.mp3
Normal file
BIN
sounds/Tout-travail-merite-salaire.mp3
Normal file
Binary file not shown.
BIN
sounds/a_kadoc.mp3
Normal file
BIN
sounds/a_kadoc.mp3
Normal file
Binary file not shown.
BIN
sounds/a_la_volette1.mp3
Normal file
BIN
sounds/a_la_volette1.mp3
Normal file
Binary file not shown.
BIN
sounds/a_moi.mp3
Normal file
BIN
sounds/a_moi.mp3
Normal file
Binary file not shown.
BIN
sounds/a_moi_a_lassassin.mp3
Normal file
BIN
sounds/a_moi_a_lassassin.mp3
Normal file
Binary file not shown.
BIN
sounds/a_mon_epoque_ca_se_faisait_pas.mp3
Normal file
BIN
sounds/a_mon_epoque_ca_se_faisait_pas.mp3
Normal file
Binary file not shown.
BIN
sounds/a_plus_tard.mp3
Normal file
BIN
sounds/a_plus_tard.mp3
Normal file
Binary file not shown.
BIN
sounds/a_roulettes.mp3
Normal file
BIN
sounds/a_roulettes.mp3
Normal file
Binary file not shown.
BIN
sounds/a_voui_vous_avez_raison.mp3
Normal file
BIN
sounds/a_voui_vous_avez_raison.mp3
Normal file
Binary file not shown.
BIN
sounds/ah-bah-cest-sur-on-se-marre.mp3
Normal file
BIN
sounds/ah-bah-cest-sur-on-se-marre.mp3
Normal file
Binary file not shown.
BIN
sounds/ah-bah-voila-cherchez-pas-cest-hyper-flippant.mp3
Normal file
BIN
sounds/ah-bah-voila-cherchez-pas-cest-hyper-flippant.mp3
Normal file
Binary file not shown.
Binary file not shown.
BIN
sounds/ah-cest-regle-hein-je-confirme.mp3
Normal file
BIN
sounds/ah-cest-regle-hein-je-confirme.mp3
Normal file
Binary file not shown.
BIN
sounds/ah-non-vous-allez-pas-bouder.mp3
Normal file
BIN
sounds/ah-non-vous-allez-pas-bouder.mp3
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
sounds/ah-une-vache-pres-cest-pas-une-science-exacte.mp3
Normal file
BIN
sounds/ah-une-vache-pres-cest-pas-une-science-exacte.mp3
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
sounds/ah_bah_alors_la_je_les_attends_les_mecs.mp3
Normal file
BIN
sounds/ah_bah_alors_la_je_les_attends_les_mecs.mp3
Normal file
Binary file not shown.
BIN
sounds/ah_bah_ouais_mais_apres_il_faut_un_peu_de_technique.mp3
Normal file
BIN
sounds/ah_bah_ouais_mais_apres_il_faut_un_peu_de_technique.mp3
Normal file
Binary file not shown.
BIN
sounds/ah_bravo_bah_vous_parlez_d_un_hero.mp3
Normal file
BIN
sounds/ah_bravo_bah_vous_parlez_d_un_hero.mp3
Normal file
Binary file not shown.
BIN
sounds/ah_cest_ca.mp3
Normal file
BIN
sounds/ah_cest_ca.mp3
Normal file
Binary file not shown.
BIN
sounds/ah_le_printemps_on_crame_des_mecs.mp3
Normal file
BIN
sounds/ah_le_printemps_on_crame_des_mecs.mp3
Normal file
Binary file not shown.
BIN
sounds/ah_mais_arretez_de_gueuler_comme_un_con.mp3
Normal file
BIN
sounds/ah_mais_arretez_de_gueuler_comme_un_con.mp3
Normal file
Binary file not shown.
Binary file not shown.
BIN
sounds/ah_non_ca_c_est_que_nous.mp3
Normal file
BIN
sounds/ah_non_ca_c_est_que_nous.mp3
Normal file
Binary file not shown.
BIN
sounds/ah_non_la_aujourd_hui_ca_passera_pas.mp3
Normal file
BIN
sounds/ah_non_la_aujourd_hui_ca_passera_pas.mp3
Normal file
Binary file not shown.
BIN
sounds/ah_ouais_je_l_ai_fait_trop_fulgurant_la_ca_va.mp3
Normal file
BIN
sounds/ah_ouais_je_l_ai_fait_trop_fulgurant_la_ca_va.mp3
Normal file
Binary file not shown.
BIN
sounds/ah_ouais_vous_seriez_une_sorte_de_bi_taupe_en_fait.mp3
Normal file
BIN
sounds/ah_ouais_vous_seriez_une_sorte_de_bi_taupe_en_fait.mp3
Normal file
Binary file not shown.
BIN
sounds/ah_oui_bravo_une_belle_lecon_de_sport.mp3
Normal file
BIN
sounds/ah_oui_bravo_une_belle_lecon_de_sport.mp3
Normal file
Binary file not shown.
Binary file not shown.
BIN
sounds/ah_qu_est_ce_que_vous_voulez_mon_petit_bohort.mp3
Normal file
BIN
sounds/ah_qu_est_ce_que_vous_voulez_mon_petit_bohort.mp3
Normal file
Binary file not shown.
Binary file not shown.
BIN
sounds/allez-bon-dieu-mais-magnez-vous-ca-pue-la-dedans.mp3
Normal file
BIN
sounds/allez-bon-dieu-mais-magnez-vous-ca-pue-la-dedans.mp3
Normal file
Binary file not shown.
BIN
sounds/allez-en-garde-espece-de-petite-couille-molle.mp3
Normal file
BIN
sounds/allez-en-garde-espece-de-petite-couille-molle.mp3
Normal file
Binary file not shown.
BIN
sounds/allez-quoi-on-a-besoin-dune-potion.mp3
Normal file
BIN
sounds/allez-quoi-on-a-besoin-dune-potion.mp3
Normal file
Binary file not shown.
BIN
sounds/allez-y-vous.mp3
Normal file
BIN
sounds/allez-y-vous.mp3
Normal file
Binary file not shown.
BIN
sounds/allez_boire_un_coup.mp3
Normal file
BIN
sounds/allez_boire_un_coup.mp3
Normal file
Binary file not shown.
Binary file not shown.
BIN
sounds/allez_vous_reposer_vous_l_avez_bien_merite.mp3
Normal file
BIN
sounds/allez_vous_reposer_vous_l_avez_bien_merite.mp3
Normal file
Binary file not shown.
BIN
sounds/alors-oisif-obese-autant-dire-des-gros-cons.mp3
Normal file
BIN
sounds/alors-oisif-obese-autant-dire-des-gros-cons.mp3
Normal file
Binary file not shown.
BIN
sounds/alors__a_qui_cest_quelle_est_morte_la_va_vache.mp3
Normal file
BIN
sounds/alors__a_qui_cest_quelle_est_morte_la_va_vache.mp3
Normal file
Binary file not shown.
BIN
sounds/alors_ca_vient_ptite_bite.mp3
Normal file
BIN
sounds/alors_ca_vient_ptite_bite.mp3
Normal file
Binary file not shown.
Binary file not shown.
BIN
sounds/alors_le_ratichon_on_a_un_ptit_creux.mp3
Normal file
BIN
sounds/alors_le_ratichon_on_a_un_ptit_creux.mp3
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
sounds/animaux_de_la_foret.mp3
Normal file
BIN
sounds/animaux_de_la_foret.mp3
Normal file
Binary file not shown.
BIN
sounds/apres_pour_le_detail_je_sais_pas.mp3
Normal file
BIN
sounds/apres_pour_le_detail_je_sais_pas.mp3
Normal file
Binary file not shown.
BIN
sounds/arretez-cest-pour-deconner.mp3
Normal file
BIN
sounds/arretez-cest-pour-deconner.mp3
Normal file
Binary file not shown.
BIN
sounds/arretez_de_parler_aux_gens.mp3
Normal file
BIN
sounds/arretez_de_parler_aux_gens.mp3
Normal file
Binary file not shown.
BIN
sounds/arretez_immediatement_de_me_prendre_pour_une_truite.mp3
Normal file
BIN
sounds/arretez_immediatement_de_me_prendre_pour_une_truite.mp3
Normal file
Binary file not shown.
BIN
sounds/arthour.mp3
Normal file
BIN
sounds/arthour.mp3
Normal file
Binary file not shown.
BIN
sounds/assiette_fromage.mp3
Normal file
BIN
sounds/assiette_fromage.mp3
Normal file
Binary file not shown.
BIN
sounds/attendez-que-je-me-suis-jamais-quoi.mp3
Normal file
BIN
sounds/attendez-que-je-me-suis-jamais-quoi.mp3
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
sounds/au_bout_dun_moment_on_a_prefere_plus_rien_dire.mp3
Normal file
BIN
sounds/au_bout_dun_moment_on_a_prefere_plus_rien_dire.mp3
Normal file
Binary file not shown.
BIN
sounds/au_bucher_demon_expie_tes_fautes.mp3
Normal file
BIN
sounds/au_bucher_demon_expie_tes_fautes.mp3
Normal file
Binary file not shown.
Binary file not shown.
BIN
sounds/ave_cesar.mp3
Normal file
BIN
sounds/ave_cesar.mp3
Normal file
Binary file not shown.
BIN
sounds/avec_sa_couille.mp3
Normal file
BIN
sounds/avec_sa_couille.mp3
Normal file
Binary file not shown.
BIN
sounds/avez_de_la_chance.mp3
Normal file
BIN
sounds/avez_de_la_chance.mp3
Normal file
Binary file not shown.
BIN
sounds/bah-alors-884-charrettes-de-bouses.mp3
Normal file
BIN
sounds/bah-alors-884-charrettes-de-bouses.mp3
Normal file
Binary file not shown.
BIN
sounds/bah-ca-depend-a-partir-de-quand.mp3
Normal file
BIN
sounds/bah-ca-depend-a-partir-de-quand.mp3
Normal file
Binary file not shown.
BIN
sounds/bah-on-a-pas-de-technique-mais-cest-comme-tout.mp3
Normal file
BIN
sounds/bah-on-a-pas-de-technique-mais-cest-comme-tout.mp3
Normal file
Binary file not shown.
BIN
sounds/bah_je_sais_pas_me_lacher_la_grappe_par_exemple.mp3
Normal file
BIN
sounds/bah_je_sais_pas_me_lacher_la_grappe_par_exemple.mp3
Normal file
Binary file not shown.
Binary file not shown.
BIN
sounds/bataille_de_fions.mp3
Normal file
BIN
sounds/bataille_de_fions.mp3
Normal file
Binary file not shown.
BIN
sounds/bateau-nage.mp3
Normal file
BIN
sounds/bateau-nage.mp3
Normal file
Binary file not shown.
BIN
sounds/ben_nous_on_a_cru_que_cetait_la_pour_faire_joli.mp3
Normal file
BIN
sounds/ben_nous_on_a_cru_que_cetait_la_pour_faire_joli.mp3
Normal file
Binary file not shown.
Binary file not shown.
BIN
sounds/bibelots-mongol-parthenon.mp3
Normal file
BIN
sounds/bibelots-mongol-parthenon.mp3
Normal file
Binary file not shown.
BIN
sounds/bien_manger_cest_important.mp3
Normal file
BIN
sounds/bien_manger_cest_important.mp3
Normal file
Binary file not shown.
BIN
sounds/biensur-ils-ont-que-ca-a-foutre-les-paysans.mp3
Normal file
BIN
sounds/biensur-ils-ont-que-ca-a-foutre-les-paysans.mp3
Normal file
Binary file not shown.
BIN
sounds/blaireau-peignecul-tarlouze.mp3
Normal file
BIN
sounds/blaireau-peignecul-tarlouze.mp3
Normal file
Binary file not shown.
BIN
sounds/bled-natal-fion.mp3
Normal file
BIN
sounds/bled-natal-fion.mp3
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
sounds/bon-de-toute-facon.mp3
Normal file
BIN
sounds/bon-de-toute-facon.mp3
Normal file
Binary file not shown.
BIN
sounds/bon_bah_aller_on_demarre_et_ouvrez_les_echauguettes.mp3
Normal file
BIN
sounds/bon_bah_aller_on_demarre_et_ouvrez_les_echauguettes.mp3
Normal file
Binary file not shown.
BIN
sounds/bon_bah_ca_va_on_plaisante.mp3
Normal file
BIN
sounds/bon_bah_ca_va_on_plaisante.mp3
Normal file
Binary file not shown.
BIN
sounds/bon_bah_je_vais_voir_ce_que_je_peux_faire.mp3
Normal file
BIN
sounds/bon_bah_je_vais_voir_ce_que_je_peux_faire.mp3
Normal file
Binary file not shown.
BIN
sounds/bon_ben_revolte.mp3
Normal file
BIN
sounds/bon_ben_revolte.mp3
Normal file
Binary file not shown.
BIN
sounds/bon_cassez_vous.mp3
Normal file
BIN
sounds/bon_cassez_vous.mp3
Normal file
Binary file not shown.
BIN
sounds/bon_je_la_suis_parce_que_je_suis_tres_amoureux.mp3
Normal file
BIN
sounds/bon_je_la_suis_parce_que_je_suis_tres_amoureux.mp3
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user