Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (56)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

Sur d’autres sites (7699)

  • ffmpeg TCP connection refused trying to download m3u8 file

    21 mai 2021, par Cyeole

    I'm trying to download a .m3u8 stream and convert it to mp4. The code I'm using is :

    


    ffmpeg -i "http://v030.url/s/1/6/8/168192d4db9f6a2d0247784d11bd3aaa/stream/480p/index.m3u8?h=f676f54bc54d0a97a591fb5122c85cfb&e=1621581127" -c copy -bsf:a aac_adtstoasc outputname.mp4


    


    However, I'm getting this error :

    


    [tcp @ 0x7fbdda504900] Connection to tcp://v030.url:80 failed: Connection refused
http://v030.url/s/1/6/8/168192d4db9f6a2d0247784d11bd3aaa/stream/480p/index.m3u8?h=f676f54bc54d0a97a591fb5122c85cfb&e=1621581127: Connection refused


    


    If I directly go to the link, it downloads the .m3u8 file without any problems and I've tried to convert this but it fails to read segments from the site. If I remove the "h=" and "e=" the link doesn't allow me to access the file.

    


    Can someone please guide me on how to download this file in ffmpeg ? It seems like it's protected. Cheers !

    


    I'm using ffmpeg on Mac OS X.

    


  • I download audio files but in m3u8 format. How to convert to mp3 ?

    26 mai 2022, par Александр Кузнецов

    I download audio files but in m3u8 format. How to convert to mp3 ? tried with ffmpeg. But nothing is downloading at the output, and only some strange characters are visible in the console.

    


    def vk_music_get(login,password):

    vk_session = vk_api.VkApi(login=login, password=password)
    vk_session.auth(token_only=False)
    vk_session.get_api()
    vk_aud = vk_api.audio.VkAudio(vk_session)
    for i in vk_aud.get():
        print(i)
        music_name = i['artist']
        urllib.request.urlretrieve(i['url'], f'\\Users\\AlexK\\PycharmProjects\\MyArchive\\music_vk\\{music_name}.m3u8  ')
    print('VK Download Success! ^_^')


    


    When I try ffmpeg, I get these characters

    


    enter image description here

    


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