Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (56)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (9439)

  • FFMPEG Cannot Open The Video File (C#)

    5 décembre 2016, par Landon Conway

    I want to make a software that can read a video file and extract all the frames to get them as bitmaps so I choose to use AForge FFMPEG. However, it does not seem to be working for me as it does for others ! When I try to use ’VideoFileReader.Open’ I get this exeption :

    "An unhanded exeption of type ’System.IO.IOExeption’ occurred in AForge.Video.FFMPEG.dll

    Additional Information : Cannot open the file."

    Regardless of which video file I try to open it does not work. I also tried to run as andministrator since it may not have access to that file.

    I’m using .NET Framework 4.6.1

    Here is my code :

    using AForge.Video.FFMPEG;
    using System;
    using System.Drawing;
    using System.IO;
    using System.Windows.Forms;
    namespace Test_Video_Software
    {
       public partial class
       {
           public Form1
           {
               InitializeComponent();
           }
           private void takeApartToolStripMenuItem_Click(object sender, EventArgs e)
           {
               VideoFileReader vfr = new VideoFileReader();
               vfr.Open(@"C:\Users\LC Creations\Videos\IMG_8722.MOV");
               Bitmap videoFrame = vfr.ReadVideoFrame();
           }
       }
    }

    I looked everywhere on the internet. Even here of coarse. Nobody seems to have had this issue in the past. Any help apreciated.

  • lavf/segment : fix crash when failing to open segment list

    21 janvier 2017, par Rodger Combs
    lavf/segment : fix crash when failing to open segment list
    

    This happens because segment_end() returns an error, so seg_write_packet
    never proceeds to segment_start(), and seg->avf->pb is never re-set,
    so we crash with a null pb when av_write_trailer flushes the packet
    queue.

    This doesn’t seem to be clearly recoverable, so I’m just failing more
    gracefully.

    Repro :
    ffmpeg -i input.ts -f segment -c copy -segment_list /noaxx.m3u8 test-%05d.ts

    (assuming you don’t have write access to /)

    • [DH] libavformat/segment.c
  • Python get wav frames from mp3 file for wave.open -> readframes()

    25 janvier 2017, par spam junk

    I have programmed a little lightshow which reads from .wav files :

    data = wavfile.readframes(chunk)

    but i would like to read mp3 files.

    So i have found various python apis like pymedia (cant quite get it to work) and pyffmpeg (never been worked on since 2015 as the github readme says )
    and i have found this post :

    Python : mp3 to alsaaudio through ffmpeg pipe and wave.open(f,’r’)

    im new to python and im only using it because my lights are controlled in python and im studying
    computer science since last year , so im still learning

    so all in all if someone could reassemble the code from the post for me that would be nice .

    im sorry,
    i would comment on the post but i dont have enough reputation