
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (52)
-
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...) -
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" (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (11722)
-
How can dcraw take image from stdin ?
25 juillet 2018, par Metin Akkındcraw -a -q 3 -o 0 -e -w -v -I < a.nef I’m trying this code output file ppm is dark.I cant find a solution,please help me
-
Alternative to FFMpegCore ? Combine pngs into a video
28 novembre 2023, par HelloWorldI have a scenario where I want to combine a list of images into a video. I see FFMpegCore is a solution, however, I have limitations to the software I can download onto a private network and need a solution that does not require installation of software.


Repo to the nuget package of FFMpegCore : https://github.com/rosenbjerg/FFMpegCore


class Main
{
 public static void Main(string[] args)
 {
 string[] files = Directory.GetFiles("some path to the png directory");

 // Take this list of files and generate a video from this
 // Example of FFMpegCore would be this
 _ = FFMpeg.JoinImageSequence(output: @"newMp4.mp4", frameRate: 30, images: files);
 }
}



I want to achieve something like this in .NET Core (not Framework).


I tried FFMpeg and got an exception thrown due to not having the FFMPeg executable installed (which I am out of scope to do so, an organization policy)


-
Mixing audio stream and copy video
23 avril 2014, par lukasI need to implement two features :
- replace the audio in the movie
- mix the current audio with a new one
Solution for 1 :
ffmpeg -i music_url -i video_url -codec copy -y -shortest output_video
Solution for 2 :
ffmpeg -i video_url -i music_url -filter_complex amix=duration=shortest -y output_video
But there are a few problems with 2nd :
- Video is lower quality
- audio is cut the the shortest one, but video stays the same
- takes longer that copy streams
Any hints ?
EDIT :
ffmpeg -i vid -i music -filter_complex amix=duration=shortest -shortest -y out_v
Seems it’s not possible to stream copy video and filter audio. Need to figure out how to keep the video with the same quality, because the default behaviour lowers it.