Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (14)

  • 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

  • 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 (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (4502)

  • ffmpeg error when I changed the server

    5 octobre 2012, par NewPHP

    I am changing someone's working site "video.net"(an example) from one server to another.
    But I am getting an error like :

    Warning : require_once(ffmpeg/movie.php) [function.require-once] : failed to open stream : No such file or directory in /store/websites/dvb/video.net/642/include/config.php on line 7.

    Fatal error : require_once() [function.require] : Failed opening required 'ffmpeg/movie.php' (include_path='. :/usr/share/pear :/usr/share/php') in /store/websites/dvb/video.net/642/include/config.php on line 7

    The error lines are below.

     function __autoload ($className)
     {
         $className = explode("_", $className);
         $className = implode("/", $className);
         require_once ("{$className}.php");
      }

    I haven't used ffmpeg before. Also I am new to it. Do you guys have any idea, what do I want to check ? I hope this is probably some installation error or something like that.

    Thanks !

  • How to parse RTP H264 packet using FFMpeg [closed]

    9 novembre 2012, par TMMDev

    I am new to this forum,
    i hope someone can help me with my problem.

    I need to convert RTP H264 packets using FFMpeg to BMP files, i have achieved the following until now :

    -Reading H264 file and convert it to BMP files using FFMpeg.

    -Receiving raw RTP H264 packets.

    I would really appreciate if someone can help me decode RTP H264 packets using FFMpeg,
    i have done lots of searchs over the internet, and found the following solutions :

    • libavformat using rtp_h264.c, i could not download the library anywhere, although the file is there, but no way to use it without downloading the library, can someone please provide a download link and an example if possible ?

    • live555 using H264VideoRTPSource, after downloading the library, i did not understand how to use this code, should i instantiate the class ? or inhert it ? is there an example over the internet on using H264VideoRTPSource ?

    Is there any other way to do it WITHOUT reading all the standards (RFC3984 and RFC6184)

    Thank you.

  • Show progress of a video conversion with c# (see details please)

    25 février 2015, par ChrisCreateBoss

    I’m using WinForms. I want to show the progress of a video conversion, I’m currently using the NReco.VideoConverter, I’ve tried FFLib.Encoder too, it has an EventHandler named Progress, but I can’t make it work with the progressBar.

    I’ve tried progressBar1.Value += converter.Progress;, also tried using a "percentHandler", and it failed.

    Hope someone can help me. Also, if someone knows about a better video conversion library, please let me know.

    Thnaks in advance