Skip to content

Commit

Permalink
refactor: Basically reimplement the features of the old version tinyP…
Browse files Browse the repository at this point in the history
…ornManager in the form of "addon".

For now, this scraper add-on contains these features:
1. scrape basic video info
2. i18n
3. scrape more thumbnails and preview images

BREAKING CHANGE: The project is no longer provided as an executable, but instead provides a "addon" (Jar plugin) adapted to tinyMediaManager (>= 4.0).
(See: https://www.tinymediamanager.org/blog/third-party-scraper-addons/
  • Loading branch information
scoooooott committed Nov 22, 2023
1 parent 8fff13e commit c874d33
Show file tree
Hide file tree
Showing 20 changed files with 649 additions and 459 deletions.
30 changes: 27 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.tinymediamanager</groupId>
<artifactId>scraper-addon-sample</artifactId>
<groupId>xyz.ifnotnull.tmm</groupId>
<artifactId>scraper-addon-pornhub</artifactId>
<version>1.0-SNAPSHOT</version>

<repositories>
Expand All @@ -24,9 +24,33 @@
<dependency>
<groupId>org.tinymediamanager</groupId>
<artifactId>tinyMediaManager</artifactId>
<version>4.3.9</version>
<version>4.3.14</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.microsoft.playwright</groupId>
<artifactId>playwright</artifactId>
<version>1.39.0</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit c874d33

Please sign in to comment.