Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (56)

  • 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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (8379)

  • Revision 490c5fe074 : Merge "Fixing error found by ioc."

    12 avril 2014, par Dmitry Kovalev

    Merge "Fixing error found by ioc."

  • "ibpostproc 52. 3.100 / 52. 3.100" Error when convert video to flv

    14 avril 2014, par Ziba

    I use FFMpegConverter for convert video to flv in my site. it work properly in local but i get below error in host, why ?

    libpostproc    52.  3.100 / 52.  3.100

    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    Exception Details: System.Exception:  libpostproc    52.  3.100 / 52.  3.100

    Source Error:


    Line 71:
    Line 72:                         FFMpegConverter ff = new FFMpegConverter();
    Line 73:                         ff.ConvertMedia(start, end, Format.flv);
    Line 74:
    Line 75:                         if (File.Exists(VideoPath))

    Source File: f:\domains\bfs-co.ir\wwwroot\Cms\AddVideo.aspx.cs    Line: 73
  • FFMPEG "Error setting GOP size" when converting from mp4 to ogg

    25 avril 2014, par gCardinal

    I built a little internal website to upload and convert videos using Symfony2, PHP-FFMPEG (via this bundle : https://github.com/pulse00/ffmpeg-bundle). It worked fine on my dev machine, a PC, but it refuses to work on my prod machine, a ubuntu server, outputting "[libtheora @ 0x17f7380] Error setting GOP size" whenever I run the command.

    Here is said command :

    ffmpeg -y -i url/to/input.mp4 -vcodec libtheora -acodec libvorbis -b:v 1000k -refs 6 -coder 1 -sc_threshold 40 -g 30 -flags +loop -me_range 16 -subq 7 -i_qfactor 0.71 -qcomp 0.6 -qdiff 4 -trellis 1 -b:a 128k url/to/output.ogg

    This is generated by PHP-FFMPEG so I don’t really have any control over it.

    I’ll admit that I don’t really understand ffmpeg, so my knowledge is limited, but I don’t see any -g parameter where it could be trying to set the GOP size and anyways, I’m guessing, if it worked on my dev, it should also work on the prod machine, right ?

    I figured I should maybe include an output of both ffmpeg versions : http://i.imgur.com/ec4MnKl.png

    I don’t feel like this is the source of the problem, but like I said, I know little about ffmpeg so it could be !

    Thanks a lot to anyone reading this and even more to those taking the time to answer :)

    Edit : I tried running the most basic command I could

    ffmpeg -i foo.mp4 foo.ogg

    And it outputs the same error. Again, with my limited knowledge, I’m starting to think my install of ffmpeg just can’t handle the ogg format. I’ll keep digging.