Scripting way to upload videos to peertube and youtube
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

158 lines
5.2 KiB

  1. # Changelog
  2. ## v0.11.0
  3. ## Features
  4. - Add the configuration of Original date of Record for Youtube and Peertube (see #50)
  5. ## v0.10.3
  6. ### Fix
  7. - Fix the pagination for Peertube playlist, as index begins at 0, not 1
  8. ## v0.10.2
  9. ### Fixes
  10. - Fix a typo in log (missing space when displaying thumbnail) (see #49)
  11. - Add pagination when searching playlist in Peertube as default pagination show only 14 playlists (see #41)
  12. - Add a check to avoid uploading video on Peertube with more than 5 tags (see #48)
  13. - Revert the workaround for Youtube playlist bug now the bug is fixed by Youtube (see #47)
  14. ## v0.10.1
  15. ### Fix
  16. - Fix a bug introduced with v0.10.0 that broke thumbnail on youtube upload.
  17. ## v0.10.0
  18. ### Features
  19. - Add the possibility to specify strict checks option to never forgot parameters when uploading (see #36)
  20. - Improve logging system, add options for batch upload and print url-only in the stdout (see #29)
  21. - --debug option is now deprecated in favor of --log=debug
  22. ### Fixes
  23. - Workaround against the Youtube API breakdown while adding video in playlist. See #47 for details. Should be removed once Google fix their bugs.
  24. ## v0.9.1
  25. ### Features
  26. - Possibility to bypass the MIME check for .mp4 when the user is sure of its video (#46 , thanks to @zykino)
  27. - Now **available with pip** for installation! (See the README for doc)
  28. ## v0.9.0
  29. ### Upgrade from v0.8.0
  30. Now using [poetry](https://python-poetry.org/) for packaging and installing! It's easier to maintain and publish package, but means changes when using prismedia from command line.
  31. **Using poetry** (recommanded)
  32. - [install poetry](https://python-poetry.org/docs/#installation)
  33. - git pull the repo
  34. - install prismedia:
  35. ```bash
  36. poetry install
  37. ```
  38. - use prismedia from the command line directly from your path:
  39. ```bash
  40. prismedia -h
  41. ```
  42. **From source**
  43. Prismedia is now seen as a python module, so you need to use `python -m prismedia` instead of `./prismedia_upload.py`.
  44. Once you have pulled the new v0.9.0, you may update by using:
  45. ```
  46. pip install -r requirements.txt
  47. # Then use prismedia through python command line:
  48. python -m prismedia -h
  49. ```
  50. ### Features
  51. - Prismedia now uses [poetry](https://python-poetry.org) to allow easier installation usage and build, see the README (fix #34)
  52. - Add two new options to schedule video by platform. You may now use youtubeAt and peertubeAt to prepare previews (fix #43)
  53. - Enhance the NFO system to allow a hierarchical loading of multiple NFO, with priorities. See README and [prismedia/samples](prismedia/samples) for details (fix #11)
  54. ## v0.8.0
  55. ### Breaking changes
  56. Now work with python 3! Support of python 2 is no longer available.
  57. You should now use python 3 in order to use prismedia
  58. ### Features
  59. - Add a requirements.txt file to make installing requirement easier.
  60. - Add a debug option to show some infos before uploading (thanks to @zykino)
  61. - Now uploading to Peertube before Youtube (thanks to @zykino)
  62. ## v0.7.1
  63. ### Fixes
  64. Fix bug #42 , crash on Peertube when video has only one tag
  65. ## v0.7.0
  66. ### Features
  67. Support Peertube channel additionally with playlist for Peertube!
  68. Peertube only as channel are Peertube's feature. See #40 for details.
  69. ### Fixes
  70. - Best uses of special chars in videoname, channel name and playlist name
  71. - Some fixes in logging message for better lisibility
  72. - Readme features list improved for better lisibility
  73. ## v0.6.4
  74. ### Fixes
  75. - Fix #33, no more trying to add a video into a playlist when the playlist does not exist on Youtube
  76. - fix #39, patch the playlist name check when playlist contains special chars
  77. ## v0.6.3
  78. ### Fixes
  79. Fix Critical bug #38 that prevent upload when creating playlists on Peertube, as public playlist need a non-null channel_id.
  80. ## v0.6.2
  81. **Warning**: your Peertube instance should be at least in v1.3.0 to use this new functionality.
  82. ### Features
  83. New feature, the Peertube playlists are now supported!
  84. We do not use channel in place of playlist anymore.
  85. ## v0.6.1-1 Hotfix
  86. This fix prepares the python3 compatibility.
  87. **Warning** you need a new prerequisites: python-unidecode
  88. - Remove mastodon tags (mt) options as it's deprecated. Compatibility between Peertube and Mastodon is complete.
  89. - Simplify python2 specific functions
  90. ## v0.6.1
  91. ### Fixes
  92. - fix an error when playlists on Peertube have same names but not same display names (issue #20)
  93. - fix an error where videos does not upload on Peertube when some characters are used in playlist(issue #19)
  94. ## v0.6
  95. ### Compatibility ###
  96. **Beware**, the first launch of prismedia for youtube will reask for credentials, this is needed for playlists.
  97. This release is fully compatible with Peertube v1.0.0!
  98. ### Features
  99. - Add the possibility to upload thumbnail.
  100. - Add the possibility to configure playlist. (thanks @zykino for Peertube part)
  101. - Use the API instead of external binaries for publishAt for both Peertube and Youtube. (thanks @zykino)
  102. - Use the console option to authenticate against youtube for easier use with ssh'ed servers
  103. - Add -f as an alias for --file for easier upload.
  104. ## v0.5
  105. ### Features
  106. - plan your Peertube videos! Stable release
  107. - Support for Peertube beta4
  108. - More examples in NFO
  109. - Better support for multilines descriptions
  110. ### Fixes
  111. - Display datetime for output
  112. - plan video only if upload is successful