Skip to content

Commit

Permalink
Merge pull request #19 from pipelined/new-import-path
Browse files Browse the repository at this point in the history
new import path
  • Loading branch information
dudk authored Aug 28, 2020
2 parents 25a4956 + b286e75 commit 9c97352
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 17 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
![](phono.png)

[![GoDoc](https://godoc.org/github.com/pipelined/phono?status.svg)](https://godoc.org/github.com/pipelined/phono)
[![GoDoc](https://godoc.org/pipelined.dev/phono?status.svg)](https://godoc.org/pipelined.dev/phono)
[![Build Status](https://travis-ci.org/pipelined/phono.svg?branch=master)](https://travis-ci.org/pipelined/phono)
[![Go Report Card](https://goreportcard.com/badge/github.com/pipelined/phono)](https://goreportcard.com/report/github.com/pipelined/phono)
[![Go Report Card](https://goreportcard.com/badge/pipelined.dev/phono)](https://goreportcard.com/report/pipelined.dev/phono)
[![codecov](https://codecov.io/gh/pipelined/phono/branch/master/graph/badge.svg)](https://codecov.io/gh/pipelined/phono)
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fpipelined%2Fphono.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fpipelined%2Fphono?ref=badge_shield)

Expand All @@ -16,15 +16,15 @@ Prerequisites:

To link lame from custom location, set `CGO_CFLAGS=-I<path-to-lame.h>` environment variable.

`go get github.com/pipelined/phono`
`go get pipelined.dev/phono`

## Usage

`phono encode` allows to decode/encode various audio files in cli or interactive web UI mode.

## Contributing

For a complete guide to contributing to `phono`, see the [Contribution guide](https://github.com/pipelined/phono/blob/master/CONTRIBUTING.md).
For a complete guide to contributing to `phono`, see the [Contribution guide](https://pipelined.dev/phono/blob/master/CONTRIBUTING.md).

## License

Expand Down
3 changes: 2 additions & 1 deletion cmd/encode.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ import (

"github.com/spf13/cobra"

"github.com/pipelined/phono/encode"
"pipelined.dev/audio/fileformat"
"pipelined.dev/pipe"

"pipelined.dev/phono/encode"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions cmd/encode_http.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (

"github.com/spf13/cobra"

"github.com/pipelined/phono/encode"
"github.com/pipelined/phono/userinput"
"pipelined.dev/phono/encode"
"pipelined.dev/phono/userinput"
)

var (
Expand Down
3 changes: 2 additions & 1 deletion cmd/encode_mp3.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ import (
"log"
"os"

"github.com/pipelined/phono/userinput"
"github.com/spf13/cobra"
"pipelined.dev/audio/fileformat"

"pipelined.dev/phono/userinput"
)

var (
Expand Down
3 changes: 2 additions & 1 deletion cmd/encode_wav.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ import (
"log"
"os"

"github.com/pipelined/phono/userinput"
"github.com/spf13/cobra"
"pipelined.dev/audio/fileformat"

"pipelined.dev/phono/userinput"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions encode/handler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (

"github.com/stretchr/testify/assert"

"github.com/pipelined/phono/encode"
"github.com/pipelined/phono/userinput"
"pipelined.dev/phono/encode"
"pipelined.dev/phono/userinput"
)

func parseURL(raw string) (result *url.URL) {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/pipelined/phono
module pipelined.dev/phono

go 1.12

Expand Down
2 changes: 1 addition & 1 deletion phono.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/pipelined/phono/cmd"
"pipelined.dev/phono/cmd"
)

func main() {
Expand Down
3 changes: 2 additions & 1 deletion userinput/encode_form.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ import (
"strings"
"text/template"

"github.com/pipelined/phono/encode"
"pipelined.dev/audio/fileformat"

"pipelined.dev/phono/encode"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions userinput/encode_form_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import (
"reflect"
"testing"

"github.com/pipelined/phono/userinput"
"golang.org/x/net/html"

"pipelined.dev/audio/fileformat"

"pipelined.dev/phono/userinput"
)

func TestFormParsing(t *testing.T) {
Expand Down
3 changes: 2 additions & 1 deletion userinput/input_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ package userinput_test
import (
"testing"

"github.com/pipelined/phono/userinput"
"github.com/stretchr/testify/assert"

"pipelined.dev/phono/userinput"
)

func TestBuildWav(t *testing.T) {
Expand Down

0 comments on commit 9c97352

Please sign in to comment.