Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (49)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • Anomalie #3239 : _CACHE_CONTEXTES_AJAX génère un dossier /tmp/cache/contextes qui grossit à l’infini

    19 juillet 2014, par marcimat ☺☮☯♫

    Juste un mot tout de même :
    En SPIP 3, il ne faut pas déclarer cette constante. La solution intermédiaire qu’on utilise est de passer automatiquement par tmp/cache/contexte SI certaines conditions sont requises, au cas par cas. Particulièrement :
    - si bug lors du décryptage du hash ajax (un bug sur une version de php) => on met le contexte en fichier cache
    - si la longueur du hash dépasse la longueur autorisée pah suhosin (si présent) => on met le contexte en fichier cache.

    De la sorte, ça limite grandement le nombre de fichiers créés dans ce cache (et c’est fait de façon automatique).

    Mais… ça ne résout pas du tout le problème : ces fichiers restent en cache et ne se nettoient jamais, ce qui potentiellement peut créer le même problème signalé ici.

  • Raspberry Pi : Playing multiple video files in mkfifo pipe

    19 janvier 2017, par user3246167

    I have 2 files, test.mp4 and test2.mp4 that I want to play concurrently with no noticeable break in the middle. Currently I’m using

    mkfifo test
    cat test.mp4 > test &
    cat test2.mp4 > test &
    omxplayer test

    However, when I do this, omxplayer just returns data and doesn’t play the file. But if I just put a single file into the pipe, omxplayer shows it normally. I’ve also tried using the copy command in ffmpeg, and that also just returns data, doesn’t play the file.

    I understand that I can just concatenate the 2 files together, but that will not work for my purposes, because I will need to be able to feed files to the pipe while omxplayer is running

  • FFmpeg and h264_qsv

    16 juin 2015, par Dmitry Vasilyev

    I use Intel Quick Sync encoder inside FFmpeg for h264 RTSP streaming.

    find_hwaccel method from utilc.c is used for filling hwaccel structure.

    libx264 encoder is working with AV_PIX_FMT_RGB24 or AV_PIX_FMT_NV12 formats. But h264_qsv requires AV_PIX_FMT_QSV.

    Method vpicture_get_size(AV_PIX_FMT_NV12, width, height) returns correct size. But method vpicture_get_size(AV_PIX_FMT_QSV, width, height) returns -22
    In addition, method avcodec_encode_video2 crashes when context is filled with AV_PIX_FMT_QSV format.

    What is the reason of such behavior ?