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.

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