Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (65)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (10009)

  • 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