
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (84)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP 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, parFormulaire 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 -
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 user279040I 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 khanUsing video show npm I am creating a video from multiple images. initially there was an issue but then I download and installed ffmpeg.


Now another error occurs. Thanks to everyone in advance.


This is my code :


//create a video from multiple images 

var secondsToShowEachImage = 3
var finalVideoPath = '/outputImages/newvideo2.mp4'

// setup videoshow options
var videoOptions = {
 fps: 24,
 transition: false,
 videoBitrate: 1024 ,
 videoCodec: 'libx264', 
 size: '640x640',
 outputOptions: ['-pix_fmt yuv420p'],
 format: 'mp4' 
}
let path1= '/InputImages/abc.jpg';
let path2 = '/InputImages/xy.jpg'
let path3 = '/InputImages/ab.jpg'

// array of images to make the 'videoshow' from
var images = [
 {path: path1, loop: secondsToShowEachImage}, 
 {path: path2, loop: secondsToShowEachImage}
]
console.log('working --->')
 videoshow(images, videoOptions)
.save(finalVideoPath)
// console.log('hello world')
.on('start', function (command) { 

 console.log('encoding ' + finalVideoPath + ' with command ' + command) 
})
.on('error', function (err) {
 console.log('err' , err)
// return Promise.reject(new Error(err)) 
})
.on('end', function (output) {
 // do stuff here when done
})



The error is


err Error: ffmpeg exited with code 1: Error reinitializing filters!
Failed to inject frame into filter network: Invalid argument
Error while processing the decoded data for stream #1:0
Conversion failed!

 at ChildProcess.<anonymous> (E:\Video-Editor-Practice\Nodees6video-editor\NewVideoEditor\node_modules\fluent-ffmpeg\lib\processor.js:182:22)
</anonymous>