Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (37)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (5312)

  • How to decrypt SAMPLE-AES .m3u8 video streams ?

    4 avril 2018, par Aaron Wizzard

    I keep trying to download some HD videos that require a cable provider login (which is no problem), but I’m not able to download them because of the SAMPLE-AES encryption. The site uses HLS Streaming. When I try to use "video download helper" in Firefox, the error message says "HLS encryption method SAMPLE-AES is not supported"

    I used this code in ffmpeg :

    ffmpeg -i http://tve-vod.cdn.turner.com/adultswim/5219209fb9b00585da914ff30104c6e200000000/layer6/layer6_pt.m3u8 -c copy video.ts

    Then I got this error message.

    [hls,applehttp @ 05e07960] SAMPLE-AES encryption is not supported yet
    [hls,applehttp @ 05e07960] Failed to open segment of playlist 0

    Can someone please help ? I used youtube-dl with some success, but it doesn’t give me the option to download the videos in HD. I also would love to github.com/selsta/hlsdl, but I don’t have a Linux/Unix computer to run it.

  • Where can I find high-quality videos for testing video processing ?

    15 novembre 2018, par Workman

    Aside from Big Buck Bunny, Sintel, and Elephant’s Dream, what are other high-quality and free sources for high quality video ?

    I’m using these videos internally to test video transcoding options and am not public redistributing. Any suggestions for content that falls under this category ?

  • Downloading a video using fluent-ffmpeg in nodejs and express

    1er avril 2021, par Apdo Elsaed

    I am working on a side project to download videos from Reddit, but they separate video and audio in different files. so i have to merge them first before downloading them in the client. i was able to do all of this as in the following snippet of code.

    


    const ffmpeg = require("fluent-ffmpeg");
const proc = new ffmpeg();

app.post('/download', async (req, res) => {
   
   const audio = "some aduio link";
   const video = "some video link";

   proc.addInput(video)
     .output('${some path}./video.mp4')
     .format('mp4')
     .on("error", err => console.log(err))
     .on('end', () => console.log('Done'));

  if(audio) {
  proc.addInput(audio);
  }

  proc.run()
 
});


    


    using the above code, the video is being download locally in the the server in the specified path.

    


    but i want to download the video in the client browser who sent the request. i tried :

    


    proc.pipe(res); 


    


    but it didn't work, it's my first time working with ffmpeg , so it would be nice if someone give me a hint