Recherche avancée

Médias (91)

Autres articles (104)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (10916)

  • How to download video streaming powered by JW Player 8.4.2 + iframe src from hydrax.net combined ? [on hold]

    20 octobre 2019, par Tév

    I find that downloading a video that streamed via JW Player 8.4.2. which using hydrax.net as the media source is really annoying & frustrating because I’ve done my best with the all solution I’ve found comes to nothing.

    Is there any solution left I can try ?

    I’m trying to download video from http://javmile.com/dvd/anna-marie-patsukin-channel-z-vol/39585 with ffmpeg & youtube-dl but not worked.

    I tried to stream/convert the .m3u8 file I managed to download with VLC but still not worked.

    I also tried to look for the alternative from Inspect -> Network -> Media and all that I got is a blob link that ends dead end. Inspect -> Application also doesn’t provide any solution since there’s no Video frame.

    Last but not least, I’ve tried the Video DownloadHelper extension from Firefox trick to download the video from the referrer/url link but it’s failed too.


    The referrer link I’ve got from the Video DownloadHelper Firefox’s extension :

    https://hydrax.net/watch?v=5b9ff9a0f032b


    The url link I’ve got from the Video DownloadHelper Firefox’s extension :

    https://www.googleapis.com/drive/v3/files/1nJ5512Z8I0t9go8pQQE9xVLnO03WCzai?alt=media&key=AIzaSyDAFci7RjYNlmLG8txIQJCYFrfApf21Ulc


    The blob link that’ll lead me to the .m3u8 file download :

    blob :https://hydrax.net/e9166d00-1aba-4832-b7bf-8cb011abcc10


    And here the .m3u8 file content I’ve managed to download :

    EXTM3U
    EXT-X-VERSION:3
    EXT-X-STREAM-INF:BANDWIDTH=394000,RESOLUTION=480x360
    blob :https://hydrax.net/acaacae5-2ad3-4447-9aab-cbabe2a1e5ee#VzWiWxKoXzlaWQpyuPfhdPjzQsCR8zJFWzrcgqTL1MkLQQlWKgjJKMV6Xzs
    EXT-X-STREAM-INF:BANDWIDTH=1998000,RESOLUTION=1280x720
    blob :https://hydrax.net/710d4b51-9334-469d-9146-8af650529982#VzWiWxKoXzBaWfrjQfFFg8gi1L06u40fJsf5QzVkKSrLJrfht5Bk84lRXzs
    EXT-X-STREAM-INF:BANDWIDTH=2998000,RESOLUTION=1920x1080
    blob :https://hydrax.net/1130dfbe-dab1-402e-9309-5d562c68424b#VzWiWxKoXzfaW8pl1r0H8LJAVPFWOsffV41hCgZeBPV7K5fJfrBpQf0DXzI


    Command that I used to download the video with the ffmpeg :

    ffmpeg -i [neither of referrer/url link from DownloadHelper nor blob link from the .m3u8 file content worked] -vcodec copy -acodec copy MyOutput.mp4


    Command that I used to download the video with the youtube-dl :

    youtube-dl -i [neither of referrer/url link from DownloadHelper nor blob link from the .m3u8 file content worked] -vcodec copy -acodec copy MyOutput.mp4

  • build system : fix dependency generation

    8 octobre 2015, par Christophe Gisquet
    build system : fix dependency generation
    

    When trying to build the binary dct-test under MSYS2/Win64, the
    makefile rule does not have the SUBDIR in the target for its
    object file.

    Consequently, modifications to various include files (e.g. C ones)
    do not trigger a recompilation.

    When tracing the dependency generating, the dependency generation
    has this strange content (linebreak inserted) :
    sed -e "/^#.*/d" -e "s,^ [1]*dct\.o,libavcodec/dct.o," \
    > libavcodec/dct-test.d

    For some reason, the $(*F) has weird content. It looks simpler to
    use $(@F) instead of $(*F)\.o, although this was tested on one
    single version of make.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] configure
  • opusenc : implement a psychoacoustic system

    23 septembre 2017, par Rostislav Pehlivanov
    opusenc : implement a psychoacoustic system
    

    This commit implements a psychoacoustic system for the native Opus
    encoder. Its unlike any other psychoacoustic system known since its
    capable of using a lookahead to make better choices on how to treat the
    current frame and how many bits to allocate for it (and future frames).

    Also, whilst the main bulk of the analysis function has to run in a
    single thread, the per-frame anaylsis functions does not modify the main
    psychoacoustic context, so in the future it will be fairly trivial to
    run those as slice threads.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/Makefile
    • [DH] libavcodec/opus_celt.h
    • [DH] libavcodec/opusenc.c
    • [DH] libavcodec/opusenc.h
    • [DH] libavcodec/opusenc_psy.c
    • [DH] libavcodec/opusenc_psy.h
    • [DH] libavcodec/opusenc_utils.h