Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (19)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • 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 ; (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (3871)

  • How to install libx265 for ffmpeg on Mac OSX

    20 octobre 2019, par Spencer

    I have tried multiple guides here (search for "Building libx265") and here with no success. Both times I made sure I uninstalled ffmpeg first, went through the guides, then ran

    brew install ffmpeg --with-fdk-aac --with-freetype --with-libass --with-libvpx --enable-libx265

    No matter what when I go to run a command like

    ffmpeg -i source.mkv -c:v libx265 test1.mkv

    I get the error :

    Unknown encoder 'libx265'

    Has anyone had success building libx265 for use with ffmpeg on OSX and can you please share how you did it ?

    P.S. I am running OSX 10.11.3

  • How to install libx265 for ffmpeg on Mac OSX

    20 mars 2016, par Spencer

    I have tried multiple guides here (search for "Building libx265") and here with no success. Both times I made sure I uninstalled ffmpeg first, went through the guides, then ran

    brew install ffmpeg --with-fdk-aac --with-freetype --with-libass --with-libvpx --enable-libx265

    No matter what when I go to run a command like

    ffmpeg -i source.mkv -c:v libx265 test1.mkv

    I get the error :

    Unknown encoder 'libx265'

    Has anyone had success building libx265 for use with ffmpeg on OSX and can you please share how you did it ?

    P.S. I am running OSX 10.11.3

  • Using ffmpeg to stream live video from a raspberry pi to a web server for distribution

    7 mars 2019, par CNorlander

    I am trying to build a device that will encode h.264 video on a raspberrypi and stream it out to a separate web server in the cloud. The main issue I am having is most implementations I search for either have the web server directly on the pi or have the embedded player playing video directly from the device.

    I would like it to be pretty much plug and play no matter what network I am on ie no port forwarding of any sort all I need to do is connect the device to the network and the stream will be visible on a webpage.

    One possible solution to the issue is just simply encode frames in base 64 as jpegs and send them to a an endpoint on the webserver, however, this is a huge waste of bandwidth and wont allow for the framerate h.264 would.

    Any idea on some possible technologies that could be used to do this ?

    I feel like it can be done with some websockets or zmq and ffmpeg somehow but I am not sure.