Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (73)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (5074)

  • play encrypted movies in vlc by decrypting them by ffmpeg "on the fly"

    21 mai 2024, par doctor

    I would like to play encrypted movies in vlc by decrypting them by ffmpeg like below on macOS.
The size of my movie is, say, 200-1000MB. (hundreds of files)

    


    My problem is that it is too slow to decrypt ; it takes 5mins for 300MB movie before it starts to play.
My guess is that ffmpeg first decrypts the whole content of 300MB and then VLC plays it.
My question : Is it possible to play the movie "on the fly" while decrypting it ?
(play the decrypted chunk once it is decrypted, Not wait until the whole movie is decrypted before it plays, so that it starts to play in, say, 10 secs delay.)

    


    ffmpeg -decryption_key 0 -i "movie.locked.mp4" -f matroska | /Applications/VLC.app/Contents/MacOS/VLC - --fullscreen --quiet --play-and-exit


    


  • play amr audio using ffmpeg in ios (amr decoder)

    6 décembre 2018, par Naveen Raj

    Im developing an iOS application. I have a stream of audio data in AMR audio format. Using ffmpeg(avcodec_decode_audio4), i converted AVPacket to decoded AVFrame. Now how to play this decoded audio data ? Thanks in advance.

  • Play ffmpeg encrypted video file in js

    16 février 2021, par moghaf

    I have encrypted a video file using ffmpeg by this command :

    


    fmpeg -i sample.mp4 -vcodec copy -acodec copy -encryption_scheme cenc-aes-ctr -encryption_key 76a6c65c5ea762046bd749a2e632ccbb -encryption_kid a7e61c373e219033c21091fa607bf3b8 sample.mp4


    


    Now I just want to play the video on a local website. Is there any way to play this encrypted video using javascript ?
Of course, there is not any streaming(HLS or anything else) approach, and playing the encrypted mp4 file in the browser is my goal.

    


    I also tried shakaplayer clearKey configuration as below but encountered the 6001 error :

    


    player.configure({
  drm: {
    clearKeys: {
      // 'key-id-in-hex': 'key-in-hex',
      'a7e61c373e219033c21091fa607bf3b8': '76a6c65c5ea762046bd749a2e632ccbb'
    }
  }
});