
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (79)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (10171)
-
Need help to remove repetitions or duplicated frams in my podcast videos
19 décembre 2020, par Måns BredeliusI record videos in a strange way. When I record my podcast videos I often record in the same conversation twice within the same video.


If you would look at it you would see and hear something like this.


"I open the door I open the door and let him in".


I open the door was recorded twice in this example. Currently, I am manually removing these things myself in DaVinci resolve afterward. But I have heard that FFMPEG and mpdecimate are things that could do some wonders here.


I found a video on youtube and found this code
ffmpeg -i original_file.mp4 -vf mpdecimate -vsync vfr -acodec copy mpdecimated.mp4


but nothing happened. Something did happen, it did do something, but nothing happened to my video.


Would love some help.


-
Merge Videos using fluent-ffmpeg
25 octobre 2023, par Andronik NazaryanI'm trying to merge two videos, the following code works perfectly on windows 10, but it gives me an error when trying to run it on linux/ubuntu, same on wsl


async joinVideo(): Promise<boolean> {
 return new Promise((resolve, reject) => {
 signale.info('Joining video')
 const profile = path.join(__dirname, '../videos/input/profile.mp4')
 const sb = path.join(__dirname, '../videos/input/sb.mp4')

 const joined = path.join(__dirname, '../videos/profile-sb.mp4')
 const tempFolder = path.join(__dirname, '../videos/temp')

 ffmpeg({ source: profile })
 .input(sb)
 .on('end', () => {
 signale.success('Video joined')
 resolve(true)
 })
 .on('error', err => {
 signale.error(err)
 reject(false)
 })
 .mergeToFile(joined, tempFolder)
 })
 }
</boolean>


The error i get


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> (/mnt/c/Users/Anri/Desktop/lead-gif-generator/node_modules/.pnpm/fluent-ffmpeg@2.1.2/node_modules/fluent-ffmpeg/lib/processor.js:182:22)
 at ChildProcess.emit (node:events:517:28)
 at ChildProcess.emit (node:domain:489:12)
 at Process.ChildProcess._handle.onexit (node:internal/child_process:292:12)
</anonymous>


the installation of fluent-ffmpeg should be correct as other operations are working, only mergeToFile function is erroring out


also strange thing is that if i put same file in both inputs it works fine, my guess it happens because of differance between videos, but why it works on windows


-
Playing Several Videos in a Row From a Browser
2 août 2014, par user18490It’s simple to play 1 video (using HTML5), but my question is, can you play 2 or more videos in a row.
Basically I’d like to let the user select as many clips as he/she wants, and let him/her play them in the browser (or potentially an external player such as FFplay, but the browser is my goal for now). It’s similar to the concept of playlist in Youtube, ... there should be no cut between two consecutive clips (which is the case right now with playlist in Youtube).
Is that possible with existing API/tools/techniques ?