Recherche avancée

Médias (91)

Autres articles (89)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (11923)

  • avformat : AviSynth demuxer rewrite

    27 novembre 2013, par d s
    avformat : AviSynth demuxer rewrite
    

    Directly loads AviSynth through LoadLibrary instead of relying on
    Video for Windows, and supports using AvxSynth (via dlopen) to
    open scripts on Linux and OS X.

    Error messages from AviSynth/AvxSynth are now reported through
    av_log and exit, rather than the traditional behavior of generating
    an error video that the user would need to watch to diagnose.

    The main rewrite was authored by d s <avxsynth.testing@gmail.com>
    from the AvxSynth team, with additional contributions by

    Oka Motofumi <chikuzen.mo@gmail.com>
    Stephen Hutchinson <qyot27@gmail.com>
    Diego Biurrun <diego@biurrun.de>
    Anton Khirnov <anton@khirnov.net>

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] configure
    • [DBH] libavformat/avisynth.c
  • FFmpeg not working (discord.py)

    30 octobre 2017, par Francesco

    Code :

    channel = ctx.message.author.voice.voice_channel
    link = "https://youtube.com/watch?v=videoidhere"
    voice = await bot.join_voice_channel(channel)
    player = voice.create_ytdl_player(link)
    player.start()

    I’m getting this error :

    AttributeError: 'generator' object has no attribute 'start'

    Might FFmpeg be broken ? If yes, I can’t find a way to uninstall FFmpeg deleting the installation folder.

  • ffmpeg rtsp over http not working

    17 novembre 2017, par kooli

    I put this conf on ffserver

    HTTPPort 1234
    RTSPPort 1235
    <stream>
    Format rtp

    Feed feed1.ffm
    VideoCodec libx264
    VideoFrameRate 24
    VideoBitRate 100
    VideoSize 480x272
    AVOptionVideo flags +global_header
    </stream>

    I stream with this command

    ffmpeg -i file.h264 http://127.0.0.1:1234/feed1.ffm

    When I watch this stream I can watch via udp and tcp on this url :

    rtsp://127.0.0.1:1235/live.h264

    but i want to stream with rtsp over http(http tunneling).

    How can I do it please ??