
Recherche avancée
Autres articles (71)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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 ;
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (9038)
-
Download youtube videos with youtube-dl/ffmpeg in php
24 juillet 2019, par Baraque ObahamasI have been using youtube-dl for a long time, and I now want to install it on my dedicated server to make it easier for me to download content.
I created a php script that allows me to download the video of my choice to the server, then I download it to my computer, pretty cool !
I am now trying to improve this script in order to redirect only the feed to avoid uploading the video to the server.
Example with this site : https://mpgun.com
It seems to redirect the stream without downloading the video to the server. If you try to download a video that lasts 3 hours, the site will offer you the download immediately !I think ffmpeg allows you to do that, only I don’t know where to start in the code.
Do you have any idea how to set this up in php ?
Thank you
-
Place two videos side by side using ffmpeg ?and download it as one file
5 août 2019, par marceloo1223I have two video files, which I want to play side by side and download them later. I used FFMPEG to merge them as one :
protected void combinetwovideo()
{
string strParam;
string Path_FFMPEG = Path.Combine(HttpContext.Current.Server.MapPath(ConfigurationManager.AppSettings["FFMpegPath"]));
string apppath=HttpRuntime.AppDomainAppPath;
//Merging two videos
String video1=apppath+"\\recordings\\client2019-08-03 02_23_59";
String video2 =apppath+"\\userrecord\\User2019-08-03 02_24_00";
String strResult =apppath+"\\RESULT\\";
strParam = string.Format("-i ('" + video1 + "') -i ('" + video2 + "') -filter_complex \'[0:v]pad=iw*2:ih[int];[int][1:v]overlay=W/2:0[vid]' /-map [vid] -c:v libx264 -crf 23 -preset veryfast output.mp4");
process(Path_FFMPEG, strParam);
}public void process(string Path_FFMPEG, string strParam)
{
try
{
Process ffmpeg = new Process();
ProcessStartInfo ffmpeg_StartInfo = new ProcessStartInfo(Path_FFMPEG, strParam);
ffmpeg_StartInfo.UseShellExecute = false;
ffmpeg_StartInfo.RedirectStandardError = true;
ffmpeg_StartInfo.RedirectStandardOutput = true;
ffmpeg.StartInfo = ffmpeg_StartInfo;
ffmpeg_StartInfo.CreateNoWindow = true;
ffmpeg.EnableRaisingEvents = true;
ffmpeg.Start();
ffmpeg.WaitForExit();
ffmpeg.Close();
ffmpeg.Dispose();
ffmpeg = null;
}
catch (Exception ex)
{
}
}But this method outputs nothing and does not throw any errors. I’m confused about the
strParam
query. Did I write it wrong or am I missing something. Any help would be apreciated. -
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