
Recherche avancée
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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" (...)
Sur d’autres sites (14628)
-
Naudio produces wierd noise with ffmpeg
7 décembre 2020, par SfueHi there I was trying to make a music player in c# using the
windows form
and I ended up something like this -

var ffmpeg = Process.Start(new ProcessStartInfo
 {
 FileName = "ffmpeg",
 Arguments = $@"-loglevel panic -i ""path/to/my-music.mp3"" -ac 2 -f s16le -ar 44100 pipe:1",
 UseShellExecute = false,
 CreateNoWindow = true,
 RedirectStandardOutput = true
 }); 
 var p = new RawSourceWaveStream(ffmpeg.StandardOutput.BaseStream,new WaveFormat(44100 , 16, 1));
waveOutDevice.Init(p);
waveOutDevice.Play();



But it seems to produce some weird cracking noises , I have been trying it out since 2 days but couldn't get a fix, Any help ?


-
Discord JS v13 FFmpeg not found on rootserver
10 avril 2022, par emirate.I just installed my DiscordJS Bot on my new rootserver, I copied the files 1:1 to the server and started the Bot. The Bot starts normal but when I try to execute a command where the bot joins a vc and plays audio it says :


throw new Error('FFmpeg/avconv not found!');
 ^



Error : FFmpeg/avconv not found !


Which is weird because I have ffmpeg and ffmpeg-static installed, and the same script works normally on my PC when I run it. Any ideas why ?


Edit :
The only difference between the versions on the PC and the rootserver are the Node.js versions ; PC : 16.6.0, rootserver : 17.4.0 (the rootserver is running on ubunu 11, and my PC on windows 10)


-
FFMPEG not processing whole video for frames extraction [closed]
17 juillet 2023, par NuttertoolsI'm experiencing a weird issue with FFMPEG, on Windows.


I'm trying to extract every single frames from a video, I use ffmpeg to do that with the following command :


ffmpeg -i "input.mp4" "%04d.png"


The extracted frames amount is random, I tested with several videos, let's take an example with a video that counts 2500 frames, sometimes ffmpeg will extract 500 frames, sometimes 1200, sometimes more, sometimes less, it doesn't make any sense.


I have nothing in logs (tried verbose, nothing in console, nothing in dump file after -report cmd added too)


It just stops before the ends of the video, at random frames ...


Sometimes the whole video gets processed aswell, but that is RARE !


Do you have any idea what could be the issue ?


Thanks.