
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (67)
-
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (5910)
-
Revision 749e0c7b28 : Revert "Revert "Revert 3 patches from Hangyu to get Chrome to build :"" This rev
28 juin 2014, par James ZernChanged Paths :
Modify /test/user_priv_test.cc
Modify /vp9/decoder/vp9_decoder.c
Modify /vp9/decoder/vp9_dthread.h
Modify /vp9/vp9_dx_iface.c
Revert "Revert "Revert 3 patches from Hangyu to get Chrome to build :""This reverts commit b336356198b8ada50fbb59f04f11cefceaf5ff95.
This causes a hang in :
VP9/InvalidFileTest.ReturnCode/3the change to test/user_priv_test.cc remains with a minor update
Change-Id : I4a8a272ca37ea329b0f413f0b1cd827a238bd9fd
-
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
-
Use bash script with yt-download and ffmpeg to extract OR covert depending on format
7 juin 2018, par KeyslingerI have a batch of files I uploaded to YouTube which I now wish to backup on my MacBook. When I download and extract the audio, I get either *.m4a or *. opus :
#!/bin/sh
ID="$1"
youtube-dl -f bestaudio -x -i --audio-format best -o '%(playlist)s/%(playlist_index)s %(uploader)s - %(title)s.%(ext)s' https://www.youtube.com/playlist?list="$ID"When the file extension is m4a, I need to leave it that way and perform no conversion, when the extension is opus, I need to convert it to m4a.
If I want to convert every file, I can do something like this :
youtube-dl -f bestaudio -x -i --audio-format m4a -o '%(playlist)s/%(playlist_index)s %(uploader)s - %(title)s.%(ext)s' https://www.youtube.com/playlist?list="$ID"
But then the conversion is performed no matter what.
How can I extract and only convert when the file extension is not m4a ?