Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (50)

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

  • Uploading content from a URL

    26 octobre 2012, par Jordan

    I'm building a video converter for someone. All I need to know is, When someone pastes in a URL to a video, how can I download that video to the server ? Anything here would be helpful.

  • vf_fps : use double constants for default/min/max for start_time

    27 août 2013, par Hendrik Leppkes
    vf_fps : use double constants for default/min/max for start_time
    

    When using AV_NOPTS_VALUE (which expands to INT64_C(0x8000000000000000))
    as union initializer for a double field, the c99 converter needs to
    interpret this constant when filling the union initializer, and it is
    interpreted as a positive value.

    When converting AV_NOPTS_VALUE to a double, MSVC 2010 ends up with
    the same positive value as the c99 converter, while MSVC 2012 gets
    a negative value.

    This results in an infite loop in various FATE tests on MSVC 2012.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavfilter/vf_fps.c
  • Video transcoding during stream

    31 juillet 2017, par Wajahat

    I am trying to setup a testbed that will be used for experimentation, and I have deployed some VMs over Openstack and the setup looks like this currently :
    current VM setup
    The far right machine is running Apache2 server and video is hosted in /var/www/html/videos folder. VNF1 and VNF2 machines are acting as intermediate routers with static routes configured to route traffic to Apache server machine.

    The client machine runs VLC player to stream video on-demand from the server over HTTP like this :

    vlc http://10.10.2.7/videos/bunny.mp4

    Now, I want to be able to do dynamic transcoding of video while it is being streamed, but I don’t want to do transcoding at server side (for experiment’s purpose the server is not in our control) neither at client side but somewhere in the middle machines (VNF1 for example) so that it is transparent to client.
    Basically, I want to implement video transcoder as a network function.

    I have found FFmpeg which I think should be able to get this done, ffmpeg-server for example allows streaming over HTTP, but I am not exactly sure how to use it for transcoding video traffic ?