Recherche avancée

Médias (0)

Mot : - Tags -/navigation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (66)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (11679)

  • Download HLS ( HTTP ) Stream video using python

    19 février, par LeDerp

    I need to download a streaming video(from a URL) using python the command line argument would be :

    



    ffmpeg -i URL stream.mp4


    



    I know I can use the subprocess command

    



    subprocess.call('ffmpeg -i '+ URL +' stream.mp4', shell=True)


    



    Is there any alternative like a API that I can use instead of using subprocess command

    


  • How to download .ism files protected by DRM (Widevine or IIS Smoth Streaming)

    16 septembre 2019, par Foopy7774

    I’m struggling to download a video which is protected by DRM or something else (idk)...I tried to download it by using VLC, ismdownloader, ffmpeg and youtube-dl but the video seems encrypted. There bound to be a way to do it, given that Chrome is able to read it...

    I’ve seen that they are using Widevine or IIS Smooth Streaming, I don’t really know...but if you can’t answer my post, can you atleast set me on the right path by telling me :
    What they use ? Widevine ? IIS Smooth Streaming ? Both ?

    Video link : https://www.mycanal.fr/actualites/balance-ton-post-ca-continue-emission-du-12-sept-2019/h/12299856_50013
    Manifest file :
    https://hssodcplus-s.akamaihd.net/ondemand/playready/canalplus/d8/d8_1205541_1_D8/93653/d8-1205541-1-D8.ism/manifest if you can’t access to it : https://pastebin.com/20mgS9C4

    Here is what I get using VLC : https://i.imgur.com/u3mWrWg.gifv

    Thanks !

  • How can I use ffmpeg to download an m3u8 with multiple audio tracks ?

    4 septembre 2018, par casolorz

    I want to download an m3u8 with multiple audio tracks but when I use ffmpeg to do it the file ends up with just one audio track. What switches do I need on ffmpeg to get all the audio tracks that are on the m3u8 manifest ?

    This is the command I used :

    ffmpeg -i  https://domain/path_to_m3u8 -c copy multitrack.mp4

    Thanks.