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.

140 lines
4.6 KiB

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