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.

153 lines
5.1 KiB

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