
Recherche avancée
Autres articles (94)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
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 ;
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (6184)
-
how to play m3u8 videos from laravel storage
10 mars 2019, par Farzane KhazaeiI used ffmpeg to convert my MP4 videos to M3U8 format to have multiple qualities and stream my videos. because of security reason I have to put my videos in storage folder (not public) and now when I try to watch videos the browser just download M3U8 text file and video wont display. I install chrome extension to display M3U8 videos and i can see my M3U8 videos if I put the files in public folder and call the URL directly. this is my code
$fileName = $product->details()['sample_file_name'];
$filePath = $product->type.'s/'.$product->id.'/'.$fileName;
$fileContents = Storage::disk('products')->path($filePath);
$header = ['Content-type' => Storage::disk('products')->mimeType($filePath)];
$header = ['Content-Disposition' => 'attachment; filename='.basename($filePath)];
$response = Response::download($fileContents, $fileName, $header);
return $response;please help me what headers should i set for my download response.
-
How to hide the output of yt-dl in CMD ? python
10 février, par Qais AlbeaizI'm coding program that download mp3 audio from youtube videos but I have an issue that yt-dl show some output in console


my code :


with open('Links.txt') as f:
 content = f.readlines()
 for links in content:

 ydl_opts = {
 'format': 'bestaudio/best',
 'postprocessors': [{
 'key': 'FFmpegExtractAudio',
 'preferredcodec': 'mp3',
 'preferredquality': '192',
 }],
 }
 with youtube_dl.YoutubeDL(ydl_opts) as ydl:
 ydl.download([links])





and i need the option or some way to hide the output.


-
Looking for a non-FFMPEG/non-Lame Python audio converter for Android [closed]
1er avril, par MarcelcoltSo as the title suggests, I'm looking for another way to convert audio.
I am currently using PyTubeFix to download audio from YouTube. That works awesome, but it downloads in M4A.
I would really like it in MP3.


Most converter libraries and packages use FFMPEG. I've tried to download it through Termux and PyDroid3, but that doesn't work. I've tried to compile it for Android with NDK, but I am so lost in what I am supposed to be doing...
Same goes for Lame.
I've been at it for over a week now, but I can't find any other way to convert.


AI only suggests that I write a library of my own, but not HOW to do that (only that I'd have to convert M4A to WAV first and then back to MP3).


So I would love it if someone could point me towards a library or package that doesn't depend on FFMPEG or Lame.


I hope you guys can help !