Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (70)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

Sur d’autres sites (13393)

  • Is there a MS-DRM client library for linux ?

    19 juin 2016, par qrtt1

    I have used the libraries (libavformat and libavcodec) to decode some MMS streaming urls. But some of them are protected by DRM. When I try to decode them, the library will warn about it

    In libavformat/asfdec.c :

    if (!s->keylen) {
       if (!guidcmp(&g, &ff_asf_content_encryption)) {
           av_log(s, AV_LOG_WARNING, "DRM protected stream detected, decoding will likely fail!\n");
       } else if (!guidcmp(&g, &ff_asf_ext_content_encryption)) {
           av_log(s, AV_LOG_WARNING, "Ext DRM protected stream detected, decoding will likely fail!\n");
       } else if (!guidcmp(&g, &ff_asf_digital_signature)) {
           av_log(s, AV_LOG_WARNING, "Digital signature detected, decoding will likely fail!\n");
       }
    }

    The variable s is the struct AVFormatContext. My question is where to get the key ? It seems to decode it with a DRM key.


    I look the ASF Spec, and try to patch asfdec.c. Now, I have the acquiring license URL and key id. The problem can rewrite as ’Is there a MS-DRM client library for linux ?’ (old : How to decode a MMS streaming url with DRM by ffmpeg ?)

    Is it possible to use the license url and key id to get content key ?

  • need more clarity on compiling syntax for shared binaries using static dependencies

    22 juin 2016, par art vanderlay

    I am compiling on linux and am trying to understand the complexities of shared and static libs, what can be done and what should not be done.

    Using the example of ffmpeg, I have x264 as an included dependency.

    Based on many posts here on SO, it seems a static build of x264 would be best. Then load these into several different version of ffmpeg dynamically as needed.

    What is the correct configure syntax when compiling both binaries.

    scenario one

    x264 --enable-static --disable-shared
    ffmpeg --disable-static --enable-shared --enable-libx264  

    or the other way round

    x264 --disable-static --enable-shared    
    ffmpeg --enable-static --disable-shared --enable-libx264  

    scenario two, assume a theoretical dependency waterfall, where we must include (prog-x into x264) then x264 dynamically loaded into ffmpeg

    progx--enable-static --disable-shared    
    x264 --enable-static --disable-shared
    ffmpeg --disable-static --enable-shared --enable-libx264  
  • FFMpeg - Issue with slicing QT videos

    24 juin 2016, par gkmspl

    We use ffmpeg in one of our applications to slice videos. While it’s working fine for slicing PAL videos, it is not working for QT videos... Here’s the command we use :

    ffmpeg.exe -i "input.mp4" ss startTime -c copy -to stopTime -y "output.mp4"

    Throws an error - "[mp4 @ 0515c240] Could not find tag for codec pcm_s16le in stream #1, codec not currently supported in container"

    The input videos are created by a solid state digital video recording system which records videos from following Input channels :
    6 channels of videos input (DVI-4No.s, PAL-2No.s)
    2 channels of audio input (Left & Right)
    2 channels of MIL STD 1553B bus data
    2 channels of RS422 data

    What could be the issue & how can it be resolved ?