Recherche avancée

Médias (91)

Autres articles (85)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

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

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (7559)

  • How to stream a wmv file as an mp4 file (convert on the fly) over HTTP using ffmpeg or something similar ?

    8 juin 2016, par Adam Tal

    I understand it’s not possible to use the tag to play a WMV file.

    I thought about the following solution :

    • Streaming a video means sending small chunks of frames and sound
    • Reading a wmv file in chunks is surely possible
    • An html video tag can receive chunks in an mp4/webm/ogg format and display it

    Can I read a WMV file as a Steam and convert in on the fly to output it as if it was an MP4 file ?

    Few points :

    • The technology is not really important. I just have a problem I need to solve.. I would prefer a solution in C# or node.js because those are environments I’m comfortable with but anything else will do.
    • I will be happy to stream the file from a different server as wmv and output it as mp4 but I’m also able to download the file completely to my server and stream it from the local hard drive.
    • The mp4 output is not a must. It can also be webm or ogg (just need the video tag to support it)
  • nginx video mp4 streaming - jwplayer seeking

    18 juin 2012, par abrahab

    As you can see nginx streaming solution works and return different content-length when flv requested with start parameter :
    http://www.hotgirlscompany.com/1.flv?start=0
    http://www.hotgirlscompany.com/1.flv?start=300000

    But the problem that jwplayer v5 can not seek this video to any position. Seems (from http sniffer) player request ?start=0 and then ignore any mouse clicks at loading line, and can not go to position I want).

    Of course, I added provider=http to flashVars.
    You can download the video and see that its converted as H.264/AAC. Then maked mp4box -inter 500 1.flv. But still can not steam it :(

    Any suggestions ?
    Maybe example how to property reconvert this video with ffmpeg to make it playable ?

  • How to convert a seems like NV21 rtsp stream to normal YUV420 rtmp stream ?

    22 décembre 2018, par N.Monster

    I tried to push a live stream from H264 Encode Box(Based on Hi3516)
    to Bilibili using ffmpeg command line tool, but got a totally green picture.(It is all right when I push it to my local rtmp server.)

    After searching, i got that the problem may lies in the U and V in YUV420, or NV12 and NV21.The remote server identifies error.

    I previously use
    -vcodec copy
    After change to
    -vcodec h264
    Everything go well. But cost CPU to much. Emm Re-encoder ? I don’t need this.

    So how can I convert only pixel format locally before push steam , or just tell the server my pixel format as to get a color correct picture ?