Recherche avancée

Médias (91)

Autres articles (55)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

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

Sur d’autres sites (5754)

  • 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.

  • Recording animation from website using phantomjs and ffmpeg with 30frames per second

    28 décembre 2016, par Shishir Kumar

    I want to record the website with 25 - 30fps.
    As mentioned in this blog.
    I am using phantomjs and ffmpeg. Phantomjs page render works fine for this.

    page.render('frames/dragon'+(frame++)+'.png', { format: "png" });

    but when i use stdout so that i get better fps since saving to disk would be a costly operation.

    page.render('/dev/stdout', { format: "png" });

    and using image2pipe paramenter in ffmpeg.

    Following is the error message i get :

    [png @ 0000000000ff6fe0] Invalid PNG signature 0xD0A350D0A360D0A.
    {image2pipe @ 00000000025a3600} decoding for stream 0 failed
    {image2pipe @ 00000000025a3600} Could not find codec parameters for stream 0 (Video: png, none(pc)): unspecified size
    Consider increasing the value for the 'analyzeduration' and 'probesize' options
    Input #0, image2pipe, from 'pipe:':
    Duration: N/A, bitrate: N/A
    Stream #0:0: Video: png, none(pc), 25 tbr, 25 tbn, 25 tbc
    [buffer @ 00000000025a2840] Unable to parse option value "0x0" as image size
    [buffer @ 00000000025a2840] Unable to parse option value "-1" as pixel format
    [buffer @ 00000000025a2840] Unable to parse option value "0x0" as image size
    [buffer @ 00000000025a2840] Error setting option video_size to value 0x0.
    [graph 0 input from stream 0:0 @ 00000000025a2780] Error applying options to the filter.
    Error opening filters!
  • FFmpeg, animation types : How to move the video screen along the large images ? [duplicate]

    18 décembre 2019, par ArmKh

    This question already has an answer here :

    My output video sizes are 1280x720. And I have an images with these sizes

    1. 3000x1200
    2. 1200x2000

    So, I need to animate the large images inside the small video frames. The first image should be animated from right to left and the second one from top to bottom. In other words it will be something like moving screen along the pictures

    In this video example you can see the animations like that.
    So, how I can do it ?