Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (26)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 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 (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (2914)

  • Download a youtube video without storing it on the server

    6 mai 2019, par Baraque Obahamas

    I have a personal php script that allows me to download the videos of my choice. Currently, this runs youtube-dl and if necessary convert the video, ffmpeg then.

    I’m looking for a way to allow my script to download/convert the video without even storing it on the server. Make sure that youtube-dl/ffmpeg acts as a gateway but without downloading the file.

    Do you have any idea how to do this ? The idea would be to run ffmpeg on the youtube link and not on the video after it has been downloaded, and allow the user to download it at the same time as the conversion is in progress.

    We can see that this site for example www.onlinevideoconverter.com uses this method, because if we ask for a video of 2 hours or more, it allows us to download it immediately.

  • How to record/download m3u steam video from url using FFMPEG

    14 juin 2019, par gaurav gajjar

    I am trying to download video from m3u live stream but there is some part of video download

    in this m3u8 url return segments and this segments merge and give video but video length is like one request response segments , i am try to download steam url but only 15 sec video will download.

    how to continue download m3u8 using FFMPEG

    URL i will try to download or record

    http://cshms3.airtel.tv/PLTV/88888888/224/3221226049/index.m3u8

    String[] command = { "-y", "-i", INPUT_FILE,  "-vcodec", "mpeg4", "-b:v", "2097152", "-b:a", "48000", "-ac", "2", "-ar", "22050", dir.toString() + "/yourvideoname1.mp4"};
  • Download youtube videos with youtube-dl/ffmpeg in php

    24 juillet 2019, par Baraque Obahamas

    I 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