Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (84)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (10579)

  • avconv : Use the mpeg12 private option scan_offset

    14 décembre 2014, par Julien Ramseier
    avconv : Use the mpeg12 private option scan_offset
    

    Introduced in aed790070486b1b01b48106310d9d0ca1730e459

    Bug-Id : debian/773055
    CC : libav-stable@libav.org
    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>
    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] avconv_opt.c
  • How can I create a stream of my screen on a Windows computer for another device on my network ? [on hold]

    30 novembre 2018, par user279040

    I want to view what is seen on my Windows laptop screen on my tv, which is connected to a device running enigma 2, "screen mirroring". There are no software or plugins that will work on the device for this.

    However the device can play live stream urls of the form :

    http://portal.geniptv.com:8080/live#/abc1/abc2/19517.ts

    I am thinking maybe I could get something to create an expanding .ts file that’s capturing the screen, and then serve this up through http?

    It may also be able to use other protocols like udp :// or other file extensions, I would certainly give them a shot if they reduced lag.

    I spent hours installing different streaming software, none of which worked. I am just looking for a simple solution where I might give ffmpeg a command and it would do all I require. I have python installed as well if I need that to for example set up a http server.

  • ffmpeg exited with code 1 : Error reinitializing filters ! Failed to inject frame into filter network : Invalid argument

    15 juin 2022, par ijaz khan

    Using video show npm I am creating a video from multiple images. initially there was an issue but then I download and installed ffmpeg.

    &#xA;

    Now another error occurs. Thanks to everyone in advance.

    &#xA;

    This is my code :

    &#xA;

    //create a video from multiple images &#xA;&#xA;var secondsToShowEachImage = 3&#xA;var finalVideoPath = &#x27;/outputImages/newvideo2.mp4&#x27;&#xA;&#xA;// setup videoshow options&#xA;var videoOptions = {&#xA;  fps: 24,&#xA;  transition: false,&#xA;  videoBitrate: 1024 ,&#xA;  videoCodec: &#x27;libx264&#x27;, &#xA;  size: &#x27;640x640&#x27;,&#xA;  outputOptions: [&#x27;-pix_fmt yuv420p&#x27;],&#xA;  format: &#x27;mp4&#x27; &#xA;}&#xA;let path1= &#x27;/InputImages/abc.jpg&#x27;;&#xA;let path2 = &#x27;/InputImages/xy.jpg&#x27;&#xA;let path3 = &#x27;/InputImages/ab.jpg&#x27;&#xA;&#xA;// array of images to make the &#x27;videoshow&#x27; from&#xA;var images = [&#xA;  {path: path1, loop: secondsToShowEachImage}, &#xA;  {path: path2, loop: secondsToShowEachImage}&#xA;]&#xA;console.log(&#x27;working --->&#x27;)&#xA; videoshow(images, videoOptions)&#xA;.save(finalVideoPath)&#xA;// console.log(&#x27;hello world&#x27;)&#xA;.on(&#x27;start&#x27;, function (command) { &#xA;&#xA;  console.log(&#x27;encoding &#x27; &#x2B; finalVideoPath &#x2B; &#x27; with command &#x27; &#x2B; command) &#xA;})&#xA;.on(&#x27;error&#x27;, function (err) {&#xA;   console.log(&#x27;err&#x27; , err)&#xA;//   return Promise.reject(new Error(err)) &#xA;})&#xA;.on(&#x27;end&#x27;, function (output) {&#xA;  // do stuff here when done&#xA;})&#xA;

    &#xA;

    The error is

    &#xA;

    err Error: ffmpeg exited with code 1: Error reinitializing filters!&#xA;Failed to inject frame into filter network: Invalid argument&#xA;Error while processing the decoded data for stream #1:0&#xA;Conversion failed!&#xA;&#xA;    at ChildProcess.<anonymous> (E:\Video-Editor-Practice\Nodees6video-editor\NewVideoEditor\node_modules\fluent-ffmpeg\lib\processor.js:182:22)&#xA;</anonymous>

    &#xA;