@remotion/serverless-client 4.0.439 → 4.0.441

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -679,6 +679,7 @@ var validCodecs = [
679
679
  "h265",
680
680
  "vp8",
681
681
  "vp9",
682
+ "av1",
682
683
  "mp3",
683
684
  "aac",
684
685
  "wav",
@@ -999,7 +1000,7 @@ var validateFramesPerFunction = ({
999
1000
  import * as tty from "tty";
1000
1001
 
1001
1002
  // ../core/dist/esm/version.mjs
1002
- var VERSION = "4.0.439";
1003
+ var VERSION = "4.0.441";
1003
1004
 
1004
1005
  // ../renderer/dist/esm/error-handling.mjs
1005
1006
  var isColorSupported = () => {
@@ -1814,6 +1815,10 @@ var support = {
1814
1815
  video: true,
1815
1816
  audio: true
1816
1817
  },
1818
+ av1: {
1819
+ video: true,
1820
+ audio: true
1821
+ },
1817
1822
  mp3: {
1818
1823
  audio: true,
1819
1824
  video: false
@@ -1853,6 +1858,7 @@ var validCodecs2 = [
1853
1858
  "h265",
1854
1859
  "vp8",
1855
1860
  "vp9",
1861
+ "av1",
1856
1862
  "mp3",
1857
1863
  "aac",
1858
1864
  "wav",
@@ -1908,6 +1914,14 @@ var defaultFileExtensionMap = {
1908
1914
  "pcm-16": { possible: ["mkv"], default: "mkv" }
1909
1915
  }
1910
1916
  },
1917
+ av1: {
1918
+ default: "mp4",
1919
+ forAudioCodec: {
1920
+ aac: { possible: ["mp4", "mkv"], default: "mp4" },
1921
+ opus: { possible: ["webm", "mkv"], default: "webm" },
1922
+ "pcm-16": { possible: ["mkv"], default: "mkv" }
1923
+ }
1924
+ },
1911
1925
  mp3: {
1912
1926
  default: "mp3",
1913
1927
  forAudioCodec: {
@@ -2103,6 +2117,7 @@ var supportedAudioCodecs = {
2103
2117
  avi: [],
2104
2118
  gif: [],
2105
2119
  h265: ["aac", "pcm-16"],
2120
+ av1: ["aac", "opus", "pcm-16"],
2106
2121
  mp3: ["mp3", "pcm-16"],
2107
2122
  prores: ["aac", "pcm-16"],
2108
2123
  vp8: ["opus", "pcm-16"],
@@ -2138,6 +2153,10 @@ var defaultAudioCodecs = {
2138
2153
  lossless: "pcm-16",
2139
2154
  compressed: "aac"
2140
2155
  },
2156
+ av1: {
2157
+ lossless: "pcm-16",
2158
+ compressed: "aac"
2159
+ },
2141
2160
  mp3: {
2142
2161
  lossless: "pcm-16",
2143
2162
  compressed: "mp3"
@@ -1,7 +1,7 @@
1
1
  import type { OutNameInputWithoutCredentials } from './constants';
2
2
  export declare const validateOutname: ({ outName, codec, audioCodecSetting, separateAudioTo, bucketNamePrefix, }: {
3
3
  outName: OutNameInputWithoutCredentials | null | undefined;
4
- codec: "aac" | "gif" | "h264" | "h264-mkv" | "h264-ts" | "h265" | "mp3" | "prores" | "vp8" | "vp9" | "wav" | null;
4
+ codec: "aac" | "av1" | "gif" | "h264" | "h264-mkv" | "h264-ts" | "h265" | "mp3" | "prores" | "vp8" | "vp9" | "wav" | null;
5
5
  audioCodecSetting: "aac" | "mp3" | "opus" | "pcm-16" | null;
6
6
  separateAudioTo: string | null;
7
7
  bucketNamePrefix: string;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/serverless-client"
4
4
  },
5
5
  "name": "@remotion/serverless-client",
6
- "version": "4.0.439",
6
+ "version": "4.0.441",
7
7
  "main": "dist",
8
8
  "sideEffects": false,
9
9
  "scripts": {
@@ -24,10 +24,10 @@
24
24
  },
25
25
  "dependencies": {},
26
26
  "devDependencies": {
27
- "remotion": "4.0.439",
28
- "@remotion/streaming": "4.0.439",
29
- "@remotion/renderer": "4.0.439",
30
- "@remotion/eslint-config-internal": "4.0.439",
27
+ "remotion": "4.0.441",
28
+ "@remotion/streaming": "4.0.441",
29
+ "@remotion/renderer": "4.0.441",
30
+ "@remotion/eslint-config-internal": "4.0.441",
31
31
  "eslint": "9.19.0",
32
32
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
33
33
  },