Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (56)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (12158)

  • avcodec/evc : Reference to ISO_IEC_23094-1-2020 document section for EVC_MAX_APS_COUNT...

    18 avril 2024, par Dawid Kozinski
    avcodec/evc : Reference to ISO_IEC_23094-1-2020 document section for EVC_MAX_APS_COUNT enum has been fixed
    

    Signed-off-by : Dawid Kozinski <d.kozinski@samsung.com>

    • [DH] libavcodec/evc.h
  • The problem of code that generated typescript (node-fluent-ffmpeg module)

    10 décembre 2022, par Steve Rock

    This is my typescript code :

    &#xA;&#xA;

    import { NestFactory } from &#x27;@nestjs/core&#x27;;&#xA;import { AppModule } from &#x27;./app.module&#x27;;&#xA;import { FfmpegCommand } from &#x27;fluent-ffmpeg&#x27;&#xA;&#xA;async function bootstrap() {&#xA;  const app = await NestFactory.create(AppModule);&#xA;  let test&#xA;&#xA;  try {&#xA;    test = new FfmpegCommand(&#x27;./adventure.mkv&#x27;);&#xA;  } catch (error) {&#xA;    console.log(error);&#xA;&#xA;  }&#xA;&#xA;  await app.listen(3000);&#xA;}&#xA;&#xA;bootstrap();&#xA;

    &#xA;&#xA;

    Generated Javascript code :

    &#xA;&#xA;

    "use strict";&#xA;var __awaiter = (this &amp;&amp; this.__awaiter) || function (thisArg, _arguments, P, generator) {&#xA;    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }&#xA;    return new (P || (P = Promise))(function (resolve, reject) {&#xA;        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }&#xA;        function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }&#xA;        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }&#xA;        step((generator = generator.apply(thisArg, _arguments || [])).next());&#xA;    });&#xA;};&#xA;Object.defineProperty(exports, "__esModule", { value: true });&#xA;const core_1 = require("@nestjs/core");&#xA;const app_module_1 = require("./app.module");&#xA;const fluent_ffmpeg_1 = require("fluent-ffmpeg");&#xA;function bootstrap() {&#xA;    return __awaiter(this, void 0, void 0, function* () {&#xA;        const app = yield core_1.NestFactory.create(app_module_1.AppModule);&#xA;        let test;&#xA;        try {&#xA;            test = new fluent_ffmpeg_1.FfmpegCommand(&#x27;./adventure.mkv&#x27;);&#xA;        }&#xA;        catch (error) {&#xA;            console.log(error);&#xA;        }&#xA;        yield app.listen(3000);&#xA;    });&#xA;}&#xA;bootstrap();&#xA;//# sourceMappingURL=main.js.map&#xA;

    &#xA;&#xA;

    When I run this application I've next error :

    &#xA;&#xA;

    main.ts:12&#xA;message :"fluent_ffmpeg_1.FfmpegCommand is not a constructor"&#xA;stack :"TypeError : fluent_ffmpeg_1.FfmpegCommand is not a constructor\n at c :\nest\dist\src\main.js:20:20\n at Generator.next ()\n at fulfilled (c :\nest\dist\src\main.js:5:58)\n at process._tickCallback (internal/process/next_tick.js:68:7)\n at Function.Module.runMain (internal/modules/cjs/loader.js:834:11)\n at startup (internal/bootstrap/node.js:283:19)\n at bootstrapNodeJSCore (internal/bootstrap/node.js:622:3)"

    &#xA;&#xA;

    That's beacause this raw test = new fluent_ffmpeg_1.FfmpegCommand('./adventure.mkv'). When I change this on just test = new fluent_ffmpeg_1('./adventure.mkv') I haven't the error. Do you know how to fix it. If you know where are ffmpeg exapmles on typescript please share with me :)

    &#xA;

  • ffmpeg generated media segments dont work for http-live-streaming

    13 mars 2015, par Macmee

    I’m using this command :

    ffmpeg -i temp/B8B147C1-509A-4DB1-BDE3-0DD659A62D16.mp4 -acodec aac -strict experimental -vcodec libx264 -f mpegts pipe:1

    and my playlist looks something like :

    #EXT-X-VERSION:3
    #EXTM3U
    #EXT-X-TARGETDURATION:10
    #EXT-X-MEDIA-SEQUENCE:1

    #EXTINF:4.5,
    http://localhost:3008/stream/B8B147C1-509A-4DB1-BDE3-0DD659A62D16.ts
    #EXT-X-ENDLIST

    This works perfectly fine in VLC but not in itunes or iOS Safari. The video refuses to play. I need to be able to generate the .ts files from ffmpeg - cam I using the wrong encoding anywhere ?