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.

148 lines
5.0 KiB

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