
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (101)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
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 (6976)
-
How to get better video quality using Accord.Video.FFMPEG.DLL
31 juillet 2023, par HighwayRobI have developed a Visual Studio Winapp that produces a video file utilizing Accord.Video.FFMPEG.DLL.


The quality the video is less than the original images.
Here is the code and then a sample original image and snapshot of the resulting video.


What can I change to improve the video image ?


VideoFileWriter writer = new VideoFileWriter();
 writer.Open(outfile, width, height, 1, VideoCodec.Mpeg4);
 for (int i = firstrow; i <= testframes; i++)
 {
 Bitmap bitmap = new Bitmap(ffiles[i, 0].ToString());
 writer.WriteVideoFrame(bitmap);
 bitmap.Dispose();
 }



I tried Bitmap image = new Bitmap(width, height, PixelFormat.Format64bppArgb) ;




-
Could not load file or assembly 'Accord.Video.FFMPEG.dll' or one of its dependencies on Click Once Install
10 mai 2023, par HighwayRobMy application that has 'Accord.Video.FFMPEG.dll' and supporting DLL's works properly in the development environment. When I publish and try to Click Once install I receive the following message :
Could not load file or assembly 'Accord.Video.FFMPEG.dll' or one of its dependencies. The specified module could not be found.
File name : 'Accord.Video.FFMPEG.dll'


As suggested in other posts, I copied the following DLL's into my Resources folder in my Visual Studio Project and specified to 'always copy to installation folder'. I see them in the Install Folder inside the folder C :\JPGManagerPublish\Application f
Files\JPGManager_3_0_0_179\Resources


avcodec-57.dll
avdevice-57.dll
avfilter-6.dll
avformat-6.dll
avformat-57.dll
avutil-55.dll
postproc-54.dll
swresample-2.dll
swscale-4.dll


These show up in the application install folder as
avcodec.57.dll.deploy, etc.


I install the application with Setup and I when I execute the function that utilizes Accord.Video.FFMPEG.dll I get the error message :
'Accord.Video.FFMPEG.dll' or one of its dependencies. The specified module could not be found.
File name : 'Accord.Video.FFMPEG.dll'



-
how to resolve Accord.Video.FFMPEG error Rational is defined in an assembly that is not referenced
18 janvier 2023, par HighwayRobI have developed a visual studio c# Windows app that I want to use Accord.Video.FFMPEG.DLL to merge JPGs into a video file.


I added the reference to the DLL and the following code :



using Accord.Video.FFMPEG;

private void videoTestBttn_Click(object sender, EventArgs e)
{
 int width = 320;
 int height = 240;
 Bitmap bitmap;

 // create instance of video writer
 VideoFileWriter writer = new VideoFileWriter();
 // create new video file
 writer.Open("c:\\test.avi", width, height, 25, VideoCodec.MPEG4);
 // create a bitmap to save into the video file
 Bitmap image = new Bitmap(width, height, PixelFormat.Format24bppRgb);
 // write 1000 video frames
 for (int i = 0; i < 100; i++)
 {
 image.SetPixel(i % width, i % height, Color.Red);
 bitmap = new Bitmap(ffiles[i, 0].ToString());
 writer.WriteVideoFrame(bitmap);
 bitmap.Dispose();
 }
 writer.Close();

}



I get the following error in the build on the 'writer.Open' line of code :


Error CS0012 The type 'Rational' is defined in an assembly that is not referenced. You must add a reference to assembly 'Accord, Version=3.8.0.0, Culture=neutral, PublicKeyToken=fa1a88e29555ccf7'.


Downloaded DLL from https://nuget.info/packages/Accord.Video.FFMPEG/3.8.2-alpha


How and where to I add this reference ?
Looking forward to some assistance !