
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (42)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (9416)
-
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)


-
Streaming is not save on wowza server
19 septembre 2015, par AndroidI have issue with streaming save to server.
We have two case :case 1.
I have got one problem on streaming by Javacv with ffmpeg, streaming is work fine and i can see in wowza testing as well as vlc
But that streaming is not save in wowza server, only save audio file in server.case 2.
I have done streaming by livestreaming library and that work fine as well as save in wowza server.both case server is used same but one time it work fine other time it not.
I have checked settings in wowza server to save any stream and it perfect everything.
-
save sequence of frame as BMP not PNG
27 décembre 2013, par user2922938I extract 100 frames from video file and i save each frame as (.bmp) but i found that each frame format is PNG not BMP , how can I save sequence of frame (format as BMP not PNG as show in picture)in C# ?
string name;
for ( int i = 0; i < 100; i++ )
{
Bitmap videoFrame = video.ReadVideoFrame( );
name = (i).ToString().PadLeft(5, '0');
videoFrame.Save(@"D:\frames\" + name + ".bmp");
videoFrame.Dispose( );
}
video.Close( );
MessageBox.Show(" Complete Convert video to sequence of image","Convert");