Status Update
Comments
uc...@google.com <uc...@google.com> #2
Thanks for the report!
Unfortunately you can't specify a height or width for video files at the moment, and the 'dv' parameter returns a downsampled version of the video. There is currently no option to retrieve the video in its original resolution.
I have forwarded this to the team and will update here once I hear back.
Unfortunately you can't specify a height or width for video files at the moment, and the 'dv' parameter returns a downsampled version of the video. There is currently no option to retrieve the video in its original resolution.
I have forwarded this to the team and will update here once I hear back.
je...@google.com <je...@google.com> #3
Thanks
The documentation should be updated then?
https://developers.google.com/photos/library/guides/access-media-items#video-base-urls
If specifying a video width or height is not possible the sentense "with your required dimensions:" makes no sense then.
The documentation should be updated then?
If specifying a video width or height is not possible the sentense "with your required dimensions:" makes no sense then.
al...@google.com <al...@google.com>
an...@gmail.com <an...@gmail.com> #4
Thanks - Good catch, I'll get the documentation updated. (The previous sentence is quite explicit, but we must have missed this one.)
so...@google.com <so...@google.com> #5
Is there a separate ticket for adding the ability to download full resolution video? Or does this documentation ticket also cover that? I want to make sure I'm tracking the correct ticket so I'll know when that feature is added.
Description
Version of Gradle Plugin: 3.2 alpha 5
Version of Gradle: 4.5
Version of Java: 1.8
OS: Windows 10
Make any java class with a main and try to run it. It might work once, but then fail with: cannot find or load main class of xxxx
Process finished with exit code 1
If I modify the build.gradle, and sync then it runs. It will happen again after re-opening AS or other circumstances...
Version 1 of build.gradle:
apply plugin: 'java'
version = '1.0'
Version 2 of build.gradle:
apply plugin: 'java'
buildscript {
repositories {
jcenter()
mavenCentral()
google()
}
}
version = '1.0'
One of the failing class, whether it has a package or not doesn't matter, it fails anyway:
import ...
public class test_class
{
...
public static void main(String[] args)
{
...
}
}