Skip to content
This repository was archived by the owner on Sep 29, 2023. It is now read-only.

Commit 904e695

Browse files
author
ahmad
committed
update package
1 parent e1dc78a commit 904e695

File tree

2 files changed

+42
-42
lines changed

2 files changed

+42
-42
lines changed

ffmpeg/ffmpeg.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
"strconv"
1515
"strings"
1616

17-
"github.com/floostack/transcoder"
18-
"github.com/floostack/transcoder/utils"
17+
"github.com/ahmadissa/transcoder"
18+
"github.com/ahmadissa/transcoder/utils"
1919
)
2020

2121
// Transcoder ...

ffmpeg/metadata.go

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package ffmpeg
22

3-
import "github.com/floostack/transcoder"
3+
import "github.com/ahmadissa/transcoder"
44

55
// Metadata ...
66
type Metadata struct {
@@ -142,197 +142,197 @@ func (t Tags) GetEncoder() string {
142142
return t.Encoder
143143
}
144144

145-
//GetIndex ...
145+
// GetIndex ...
146146
func (s Streams) GetIndex() int {
147147
return s.Index
148148
}
149149

150-
//GetID ...
150+
// GetID ...
151151
func (s Streams) GetID() string {
152152
return s.ID
153153
}
154154

155-
//GetCodecName ...
155+
// GetCodecName ...
156156
func (s Streams) GetCodecName() string {
157157
return s.CodecName
158158
}
159159

160-
//GetCodecLongName ...
160+
// GetCodecLongName ...
161161
func (s Streams) GetCodecLongName() string {
162162
return s.CodecLongName
163163
}
164164

165-
//GetProfile ...
165+
// GetProfile ...
166166
func (s Streams) GetProfile() string {
167167
return s.Profile
168168
}
169169

170-
//GetCodecType ...
170+
// GetCodecType ...
171171
func (s Streams) GetCodecType() string {
172172
return s.CodecType
173173
}
174174

175-
//GetCodecTimeBase ...
175+
// GetCodecTimeBase ...
176176
func (s Streams) GetCodecTimeBase() string {
177177
return s.CodecTimeBase
178178
}
179179

180-
//GetCodecTagString ...
180+
// GetCodecTagString ...
181181
func (s Streams) GetCodecTagString() string {
182182
return s.CodecTagString
183183
}
184184

185-
//GetCodecTag ...
185+
// GetCodecTag ...
186186
func (s Streams) GetCodecTag() string {
187187
return s.CodecTag
188188
}
189189

190-
//GetWidth ...
190+
// GetWidth ...
191191
func (s Streams) GetWidth() int {
192192
return s.Width
193193
}
194194

195-
//GetHeight ...
195+
// GetHeight ...
196196
func (s Streams) GetHeight() int {
197197
return s.Height
198198
}
199199

200-
//GetCodedWidth ...
200+
// GetCodedWidth ...
201201
func (s Streams) GetCodedWidth() int {
202202
return s.CodedWidth
203203
}
204204

205-
//GetCodedHeight ...
205+
// GetCodedHeight ...
206206
func (s Streams) GetCodedHeight() int {
207207
return s.CodedHeight
208208
}
209209

210-
//GetHasBFrames ...
210+
// GetHasBFrames ...
211211
func (s Streams) GetHasBFrames() int {
212212
return s.HasBFrames
213213
}
214214

215-
//GetSampleAspectRatio ...
215+
// GetSampleAspectRatio ...
216216
func (s Streams) GetSampleAspectRatio() string {
217217
return s.SampleAspectRatio
218218
}
219219

220-
//GetDisplayAspectRatio ...
220+
// GetDisplayAspectRatio ...
221221
func (s Streams) GetDisplayAspectRatio() string {
222222
return s.DisplayAspectRatio
223223
}
224224

225-
//GetPixFmt ...
225+
// GetPixFmt ...
226226
func (s Streams) GetPixFmt() string {
227227
return s.PixFmt
228228
}
229229

230-
//GetLevel ...
230+
// GetLevel ...
231231
func (s Streams) GetLevel() int {
232232
return s.Level
233233
}
234234

235-
//GetChromaLocation ...
235+
// GetChromaLocation ...
236236
func (s Streams) GetChromaLocation() string {
237237
return s.ChromaLocation
238238
}
239239

240-
//GetRefs ...
240+
// GetRefs ...
241241
func (s Streams) GetRefs() int {
242242
return s.Refs
243243
}
244244

245-
//GetQuarterSample ...
245+
// GetQuarterSample ...
246246
func (s Streams) GetQuarterSample() string {
247247
return s.QuarterSample
248248
}
249249

250-
//GetDivxPacked ...
250+
// GetDivxPacked ...
251251
func (s Streams) GetDivxPacked() string {
252252
return s.DivxPacked
253253
}
254254

255-
//GetRFrameRrate ...
255+
// GetRFrameRrate ...
256256
func (s Streams) GetRFrameRrate() string {
257257
return s.RFrameRrate
258258
}
259259

260-
//GetAvgFrameRate ...
260+
// GetAvgFrameRate ...
261261
func (s Streams) GetAvgFrameRate() string {
262262
return s.AvgFrameRate
263263
}
264264

265-
//GetTimeBase ...
265+
// GetTimeBase ...
266266
func (s Streams) GetTimeBase() string {
267267
return s.TimeBase
268268
}
269269

270-
//GetDurationTs ...
270+
// GetDurationTs ...
271271
func (s Streams) GetDurationTs() int {
272272
return s.DurationTs
273273
}
274274

275-
//GetDuration ...
275+
// GetDuration ...
276276
func (s Streams) GetDuration() string {
277277
return s.Duration
278278
}
279279

280-
//GetDisposition ...
280+
// GetDisposition ...
281281
func (s Streams) GetDisposition() transcoder.Disposition {
282282
return s.Disposition
283283
}
284284

285-
//GetBitRate ...
285+
// GetBitRate ...
286286
func (s Streams) GetBitRate() string {
287287
return s.BitRate
288288
}
289289

290-
//GetDefault ...
290+
// GetDefault ...
291291
func (d Disposition) GetDefault() int {
292292
return d.Default
293293
}
294294

295-
//GetDub ...
295+
// GetDub ...
296296
func (d Disposition) GetDub() int {
297297
return d.Dub
298298
}
299299

300-
//GetOriginal ...
300+
// GetOriginal ...
301301
func (d Disposition) GetOriginal() int {
302302
return d.Original
303303
}
304304

305-
//GetComment ...
305+
// GetComment ...
306306
func (d Disposition) GetComment() int {
307307
return d.Comment
308308
}
309309

310-
//GetLyrics ...
310+
// GetLyrics ...
311311
func (d Disposition) GetLyrics() int {
312312
return d.Lyrics
313313
}
314314

315-
//GetKaraoke ...
315+
// GetKaraoke ...
316316
func (d Disposition) GetKaraoke() int {
317317
return d.Karaoke
318318
}
319319

320-
//GetForced ...
320+
// GetForced ...
321321
func (d Disposition) GetForced() int {
322322
return d.Forced
323323
}
324324

325-
//GetHearingImpaired ...
325+
// GetHearingImpaired ...
326326
func (d Disposition) GetHearingImpaired() int {
327327
return d.HearingImpaired
328328
}
329329

330-
//GetVisualImpaired ...
330+
// GetVisualImpaired ...
331331
func (d Disposition) GetVisualImpaired() int {
332332
return d.VisualImpaired
333333
}
334334

335-
//GetCleanEffects ...
335+
// GetCleanEffects ...
336336
func (d Disposition) GetCleanEffects() int {
337337
return d.CleanEffects
338338
}

0 commit comments

Comments
 (0)