
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (104)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP 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, parLa 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évI 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 :
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 Gisquetbuild 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.dFor 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>
-
opusenc : implement a psychoacoustic system
23 septembre 2017, par Rostislav Pehlivanovopusenc : 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>