Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (59)

  • 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 (7971)

  • download hls from m3u8 file with a particular resolution with ffmpeg [on hold]

    22 octobre 2018, par C.J.

    hi i am a new member of this site after looking at this site for hours i found how to download HLS from a site and it works also. but one thing i could not find is if a particular site has available video in more than one resolution say 1280*720 and 1920*1080. so how do i tell FFMPEG to download 1280*720 and not 1920*1080. this is the code i tried.

    ffmpeg i "https://hsprepack.akamaized.net/videos/hotstarint/world/kwks6/1_2/master.m3u8?hdnea=st=1540178095 exp=1540179895 acl=/* hmac=ee2361306de510cf4f372c359b5ec21fd3d3b61d65b6f5e2f16259508e08c625" output.mp4

  • downloaded a streaming video file from a website with ffmpeg in 1080p but i wanted to download in 720p as i have disk space limitations [on hold]

    22 octobre 2018, par C.J.

    I apologize if my language was unclear let me try to rephrase the question. I have downloaded a video from a video streaming website called "hotstar.com" with the help of ffmpeg. I extracted the m3u8 link from the site and was able to download it. The video is in 1080p video resolution which takes a lot of space. I want to download it in 720p resolution so that it would take less space. the code that i tried for it was this

    ffmpeg -i "https://hsprepack.akamaized.net/videos/hotstarint/world/kwks6/1_2/master.m3u8?hdnea=st=1540184067~exp=1540185867~acl=/*~hmac=a8945f016b594e1e2e4192ee05e2feaa5811c687d1891f69be1acc9057dd725f"
    -c copy output.mp4

    I hope I have asked properly this time. If not do tell me what is more needed.

  • Adding Support for resuming download with FFMPEG ?

    5 février 2019, par INDIERs

    Currently i am using this to download hls streams with ffmpeg in android app

    ffmpeg -protocol_whitelist file,http,https,tcp,tls,crypto -i "input.m3u8" -codec copy video.mp4

    it is working as it should.

    In case of network lost, the file will be downloaded from BEGINNING which is ofc not good at all.

    I did some research but didn’t found anything great, just these never implemented ideas :

    First is get the duration of downloaded video file and then downloading the video from duration +0.1

    Result High chances of FrameLoss. Dropped.

    Second is to download all ts files one by one ofc using any downloader, using custom script, then concat them.

    Result : Okay but needs space double of origial filesize, Dropped.

    Third is to Download First segment Convert it to MP4 then download second segment convert to mp4 then concat with First Segment and so on... while Keeping records.

    Result : Nice One but repeating same task for more than 2000 time, will it be Okay ? .

    is there any better workaround for this ?

    I’ve already showed the logic i tried.