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.

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