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.

147 lines
4.9 KiB

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