Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (15)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

Sur d’autres sites (5261)

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

  • avfilter/af_headphone : Only attempt once to init coeffs

    25 août 2020, par Andreas Rheinhardt
    avfilter/af_headphone : Only attempt once to init coeffs
    

    The headphone filter does most of its initialization after its init
    function, because it can perform certain tasks only after all but its
    first input streams have reached eof. When this happens, it allocates
    certain buffers and errors out if an allocation fails.

    Yet the filter didn't check whether some of these buffers already exist
    (which may happen if an earlier attempt has been interrupted in the
    middle (due to an allocation error)) in which case the old buffers leak.

    This commit makes sure that initializing the buffers is only attempted
    once ; if not successfull at the first attempt, future calls to the
    filter will error out. Trying to support resuming initialization doesn't
    seem worthwhile.

    Notice that some allocations were freed before a new allocation was
    performed ; yet this effort was incomplete. Said code has been removed.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/af_headphone.c
  • ffmpeg_opt : restore documented stream selection behaviour

    28 juillet 2021, par Gyan Doshi
    ffmpeg_opt : restore documented stream selection behaviour
    

    11d3b03fcb added consideration of default stream disposition for audio
    and video when choosing the 'best' stream among all the inputs. This can
    lead to video streams with lower resolution or audio streams with fewer
    channels being selected.

    Stream disposition, however, only sets a priority for a stream
    among all other streams in the *same input*. It cannot set a priority
    for a stream across all inputs.

    This patch sets a middle-way and selects the best stream from each file
    with default disposition considered. Then it discards disposition weight
    and selects best stream as per the original criteria of highest
    resolution for video and most channels for audio.

    • [DH] fftools/ffmpeg_opt.c