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.

117 lines
3.9 KiB

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