Recherche avancée

Médias (91)

Autres articles (77)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

Sur d’autres sites (5405)

  • avformat_find_stream_info().. How to stop this method ?

    11 mai 2012, par mmmaaak

    While working with ffmpeg i use avformat_find_stream_info()... in some situations there is an error output, like :

    [mjpeg @ 17b80a40] Found EOI before any SOF, ignoring
    [mjpeg @ 17b80a40] No JPEG data found in image
    [mjpeg  17b80a40] No JPEG data found in image
    [mjpeg @ 17b80a40] Found EOI before any SOF, ignoring
    [mjpeg @ 17b80a40] No JPEG data found in image
    [mjpeg @ 17b80a40] Found EOI before any SOF, ignoring
    [mjpeg @ 17b80a40] No JPEG data found in image
    [mjpeg @ 17b80a40] Found EOI before any SOF, ignoring

    and so on.. And it doesn't return any value. It outputs it in it's own loop. How can I breake this loop in this case ???

  • Is there a method to use old versions of ffmpeg and opencv ?

    6 juin 2023, par mika_roll

    I'm trying to build a project through cmake and after some adjustements the terminal display some new errors about some libraries and I don't know how to fix them, an example :

    


    /usr/bin/ld: warning: libopencv_core.so.3.4, needed by /media/myfolder/lib/Linux64_x64/file.so.3.3, not found (try using -rpath or -rpath-link)

    


    and other errors like this one regarding libavcodec.so.57, libavformat.so.57...

    


    I've already tried to install libavcodec-dev etc and also ffmpeg and opencv by command line, and all these packages contain effectively the .so files that I need but all of them have been updated to the new version that doesn't match the one specified in the warning lines.
So is there a way to install these old versions ? Or should I try something different ? I don't really know what to do, I'm kinda new to these things so I hope I can find some help.

    


    Also, the project that I'm trying to build is not mine, someone else wrote it some time ago and my only task is to manipulate and adjust all the links to the different libraries.

    


    English is not my first language so I really hope I wrote an understandable request !

    


  • Fastest method to add .ass (ssa, aegisub) SubStationAlpha subs to mp4 ?

    23 mai 2015, par user3762355

    So i have video file mp4, and without changing its quality i want to add ass hardsubs.
    i am doin this with ffmpeg :
    on windows :

    ffmpeg -i input.mp4 -c:v libx264 -preset:v medium -profile:v baseline -level 3.0 -movflags +faststart -vf ass=insubs.ass -bufsize 4000k -qp 27 result.mp4

    But it takes long time, or quality is bad.
    It have to be most compatible, so baseline, and good for web.

    How to do it faster ?
    When i change preset to ultrafast quality is very very bad.

    I dont want to use mkvtoolnix and handbrake or avisynth.
    And it has to be on Windows.
    It has to be something, possible to do with one simple bat file, very fast, good quality,small size, just like original mp4 only with subs hardcoded.
    Thanks.