
Recherche avancée
Autres articles (72)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (12348)
-
ffmpeg video download shows errors in log
15 juin 2022, par PeterMi'm trying to download media (video) files from sharepoint (i have view access), but during the process i get several "Connection to tcp ://xxx.xxxxx.ms:443 failed : Error number -138 occurred" or "HTTP error 503 Service Unavailable" errors (see following screenshots : tcp error HTTP error 503 )


i get more errors with the following parameters :


ffmpeg -i "https://theURLtoTheManifestYouCopiedHere" -codec copy downloadedVideo.mp4



less errors with :


ffmpeg -re -vsync 1 -i "https://theURLtoTheManifestYouCopiedHere" -codec copy downloadedVideo.mp4



the options suggested in this article didn't help : https://medium.com/intrasonics/robust-continuous-audio-recording-c1948895bb49


the output video is ok, but sound seems to be missing occasionally (a few seconds worth)


ffmpeg version used is 2022-06-12-git-4d45f5acbd-essentials_build-www.gyan.dev (executable for windows)


any advice ?


-
I'm trying to merge videos using fluent-ffmpeg, but some times it merges videos , but whenever we tries to merge videos second time it shows error
9 janvier 2024, par Asif Mujawarconst express =require('express')
const app = express()
const ffmpeg = require('fluent-ffmpeg')
const ffmpegPath = require('@ffmpeg-installer/ffmpeg')
const ffprobe = require('@ffprobe-installer/ffprobe')

const first = './videos/first.mp4'
const second = './videos/second.mp4'
const third = './videos/third.mp4'
const fourth = './videos/fourth.mp4'

ffmpeg.setFfprobePath(ffprobe.path)
ffmpeg.setFfmpegPath(ffmpegPath.path)

app.use(express.json())

app.use("/",(req,res)=>{
 res.send("hello")

 ffmpeg()
 .input(first)
 .input(second)
 
 .on('end', function() {
 console.log('files have been merged succesfully');
 })
 .on('error', function(err) {
 console.log('an error happened: ' + err.message);
 })
 .mergeToFile("final.mp4")
 })
 

app.listen(8800,()=>{
 console.log("backend is running 8800")
})




but it shows error whenever we try to merge videos second time


an error happened : ffmpeg exited with code 1 : Cannot find a matching stream for unlabeled input pad 3 on filter Parsed_concat_0


an error happened : ffmpeg exited with code 1 : Cannot find a matching stream for unlabeled input pad 3 on filter Parsed_concat_0


-
ScreenRecording a headless browser using xvfb with ffmpeg or jmf jar(java) shows distorted video in container, if the resolution greaterthan 1024x768
4 août 2022, par Vigneshwar A SI am getting a proper video output, if i used to record a screen resolution for about 1024x768(max) or lesser. but
whenever i used to increase the resolution like "1600x900 or 1920x1080 or greater than
1024x768 (approx.)", i am getting distorted video.


distorted image(frame of a video) with 1600x900 resolution
https://i.stack.imgur.com/iajzC.png


1600x900 video information : https://i.stack.imgur.com/yutDq.png


proper image(frame of a video) with 1024x768 resolution
https://i.stack.imgur.com/NcUt1.png


1024x768 video information : https://i.stack.imgur.com/TeaW7.png


I am using Xvfb & [both ffmpeg and jmf jar (either)] to record a headless browser inside docker container.


I am getting a proper output, if i used to screen record an actual display(monitor), I am facing this issue only when i record the display inside docker (specifically headless browser) by using x11grab.


To Start the Xvfb and ScreenRecording




Xvfb :5 -screen 0 1600x900x16 &


ffmpeg -nostdin -hide_banner -nostats -loglevel panic -video_size
1600x900 -framerate 30 -f x11grab -i :5 output.mp4 &




if i replaced 1600x900 with 1024x768 or lesser than this, it is providing a proper video without any distortion.


Am I missing anything ??


Please help !




Thanks for your time