Draft
Conversation
Collaborator
Author
|
IDE complained about what part of code i'm not familar with. if ret.Versions.Keyframes < KeyframeVersion && ret.Versions.Keyframes != 0 {
for _, video := range ret.Videos {
video.Keyframes = nil
}
for _, audio := range ret.Audios {
audio.Keyframes = nil
}attempted to resolve with AI help if ret.Versions.Keyframes < KeyframeVersion && ret.Versions.Keyframes != 0 {
for i := range ret.Videos {
ret.Videos[i].Keyframes = nil
}
for i := range ret.Audios {
ret.Audios[i].Keyframes = nil
}In both cases, an issue came up that appears to be related to my lab. transcoder shows logs that its processing. Ui shows the loading bar. Might be some slowness in my network/storage. Might be a known issue with the build. Will debug what is happening in the next couple days. |
zoriya
reviewed
Mar 13, 2026
| res, err := resource.New( | ||
| ctx, | ||
| resource.WithAttributes(semconv.ServiceNameKey.String("kyoo.transcoder")), | ||
| resource.WithAttributes(semconv.ServiceNameKey.String("kyoo.auth")), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
marking as draft: Application starts, however I need to check a few things. my lab might be having issues.