Recherche avancée

Médias (91)

Autres articles (103)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk 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.

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (6894)

  • x86 32 bit support for Accord.video.FFMPEG

    1er mars 2021, par Ravi Kanth

    Accord version 3.8.2

    


    I am using Accord, Accord.video, Accord.video.FFMPEG Dll's for capturing the screen, my code is compiled to ANYCPU, everything works fine in 64 bit machine, but I am facing issue when it comes to 32 bit machine below is exception which I am getting.

    


    Exception occurred while loading the assemblies Could not load file or assembly 'Accord.Video.FFMPEG.dll' or one of its dependencies.  is not a valid Win32 application. (Exception from HRESULT: 0x800700C1),    at System.Reflection.RuntimeAssembly.nLoadFile(String path, Evidence evidence)
   at System.Reflection.Assembly.LoadFile(String path)
   at ProHance.ProbeTray.Program.MPvcUlyJUg(Object  , ResolveEventArgs  )


    


  • Can't link FFMPEG dynamically to VS 2019 project

    10 février 2021, par Maya Sela

    I downloaded the source code of FFMPEG 3.4.8 and built with MSVC as such :
    
After unzipping, open x86_x64 Cross Tools Command Prompt for VS 2019 and run msys2_shell.cmd. From there, run
    
./configure --toolchain=msvc --arch=x86_64 --enable-yasm --enable-asm --enable-shared --disable-static
and
make

    
I then created a new project in VS 2019.
    
In Properties > C/C++ > General > Additional Include Directories :
    
(Where all the headers are)

    


    E:\ffmpeg-3.4.8\libavutil
E:\ffmpeg-3.4.8\libavcodec
E:\ffmpeg-3.4.8\libavdevice
E:\ffmpeg-3.4.8\libavfilter
E:\ffmpeg-3.4.8\libavresample
E:\ffmpeg-3.4.8\libpostproc
E:\ffmpeg-3.4.8\libswscale
E:\ffmpeg-3.4.8\libswresample
E:\ffmpeg-3.4.8\libavformat


    


    In Properties > Linker > General > Additional Library Directories :
    
(Where the .lib files are)

    


    E:\ffmpeg-3.4.8\libavutil
E:\ffmpeg-3.4.8\libavcodec
E:\ffmpeg-3.4.8\libavdevice
E:\ffmpeg-3.4.8\libavfilter
E:\ffmpeg-3.4.8\libavresample
E:\ffmpeg-3.4.8\libpostproc
E:\ffmpeg-3.4.8\libswscale
E:\ffmpeg-3.4.8\libswresample
E:\ffmpeg-3.4.8\libavformat


    


    In Properties > Linker > Input > Additional Dependencies :

    


    avcodec.lib
avdevice.lib
avfilter.lib
avformat.lib
swresample.lib
swscale.lib


    


    For good measure, I copied the .dll files of each library to the Release folder of the project. There is one source file I am trying to build and run :

    


    &#xA;extern "C" {&#xA;#include <libavformat></libavformat>avformat.h>&#xA;}&#xA;&#xA;int main() {&#xA;    AVFormatContext* pFormatContext = avformat_alloc_context();&#xA;}&#xA;

    &#xA;

    The result is as follows :

    &#xA;

    1>------ Build started: Project: FFMPEG_example, Configuration: Release x64 ------&#xA;1>Source.cpp&#xA;1>Source.obj : error LNK2001: unresolved external symbol avformat_alloc_context&#xA;1>C:\Users\maya.s\source\repos\FFMPEG_example\x64\Release\FFMPEG_example.exe : fatal error LNK1120: 1 unresolved externals&#xA;1>Done building project "FFMPEG_example.vcxproj" -- FAILED.&#xA;========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========&#xA;

    &#xA;

    Does anyone have an idea ?
    &#xA;Thanks !

    &#xA;

  • How to make VideoCodec.Raw with Accord.Video.FFMPEG ?

    13 décembre 2020, par ryanm8227

    I have succeeded with VideoCodec.MPEG4 but unfortunately, the video quality is terrible :

    &#xA;

    using System;&#xA;using System.Collections.Generic;&#xA;using System.ComponentModel;&#xA;using System.Data;&#xA;using System.Drawing;&#xA;using System.Linq;&#xA;using System.Text;&#xA;using System.Threading.Tasks;&#xA;using System.Windows.Forms;&#xA;using Accord.Video.FFMPEG;&#xA;&#xA;namespace Screen_Recorder&#xA;{&#xA;    public partial class Form1 : Form&#xA;    {&#xA;        Timer timer1 = new Timer();&#xA;        VideoFileWriter vf = new VideoFileWriter();&#xA;&#xA;        System.Random r = new System.Random();&#xA;&#xA;        long rnd(double a, double b)&#xA;        {&#xA;            return Convert.ToInt64(a &#x2B; r.NextDouble() * (b - a));&#xA;        }&#xA;&#xA;        public Form1()&#xA;        {&#xA;            InitializeComponent();&#xA;            timer1.Interval = 10;&#xA;            timer1.Tick &#x2B;= Timer1_Tick;&#xA;&#xA;            vf.Open(Convert.ToString(rnd(9999999999999999, 1000000000000000)) &#x2B; ".mp4", 1920, 1080, 25, VideoCodec.MPEG4, 1000000);&#xA;            &#xA;        }&#xA;&#xA;        private void Timer1_Tick(object sender, EventArgs e)&#xA;        {&#xA;            Bitmap bp = new Bitmap(1920, 1080);&#xA;            Graphics gr = Graphics.FromImage(bp);&#xA;            gr.CopyFromScreen(0, 0, 0, 0, new Size(bp.Width, bp.Height));&#xA;&#xA;            pictureBox1.Image = bp;&#xA;            pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage;&#xA;&#xA;            vf.WriteVideoFrame(bp);&#xA;        }&#xA;&#xA;        private void buttonStartRecording_Click(object sender, EventArgs e)&#xA;        {&#xA;            timer1.Start();&#xA;        }&#xA;&#xA;        private void buttonStopRecording_Click(object sender, EventArgs e)&#xA;        {&#xA;            timer1.Stop();&#xA;            vf.Close();&#xA;        }&#xA;    }&#xA;}&#xA;

    &#xA;

    That being said, I would like to try making the video without the MPEG4, but with RAW, which is simply a non-compressed video. I expect the size to be pretty big, but that is not an issue.

    &#xA;