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.

124 lines
4.1 KiB

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