Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (88)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (12772)

  • arm : Use .data.rel.ro for const data with relocations

    16 novembre 2014, par Martin Storsjö
    arm : Use .data.rel.ro for const data with relocations
    

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] configure
    • [DBH] libavcodec/arm/fft_fixed_neon.S
    • [DBH] libavcodec/arm/fft_neon.S
    • [DBH] libavcodec/arm/fft_vfp.S
    • [DBH] libavutil/arm/asm.S
  • How to extract EPG data from a rec/ts file ?

    5 janvier 2016, par wolfrevo

    I need to extract the data stream of a rec/ts file.
    What I’ve tried until now is with avconv

    avconv -i filename.rec

    I get this output

    avconv version 0.8.17-6:0.8.17-1, Copyright (c) 2000-2014 the Libav developers
     built on Mar 15 2015 17:00:31 with gcc 4.7.2
     ...
    Input #0, mpegts, from 'filename.rec':
     Duration: 01:54:55.94, start: 74083.801633, bitrate: 400 kb/s
     ...
     Program 28479
       Metadata:
       ...
       Stream #0.0[0x475](ger): Audio: mp2, 48000 Hz, stereo, s16, 320 kb/s
       Stream #0.1[0x81a]: Data: [5][0][0][0] / 0x0005
       Stream #0.2[0x881]: Data: [11][0][0][0] / 0x000B
       ...

    AFIK the data stream contains the EPG information. Does it ?

    The following command

    avconv -i filename.rec -f ffmetadata metadata.txt

    outputs this to metadata.txt

    ;FFMETADATA1

    and with

    avconv -i filename.rec -map 0:1 -f ffmetadata metadata.txt

    I get the message Data stream encoding not supported yet (only streamcopy)

    The file filename.rechas following content which I would like to extract :

    enter image description here

  • Flutter | Retrieve ffprobe data

    23 juin 2021, par YourLogarithm

    I'm using flutter_ffmpeg package, specifically I'm trying to retrieve information regarding the chapter marks from a .m4b file which is an audiobook. By using this method :

    &#xA;

    _flutterFFmpeg.executeWithArguments([&#x27;-i&#x27;, widget.book.path, &#x27;-print_format&#x27;, &#x27;json&#x27;, &#x27;-show_chapters&#x27;, &#x27;-loglevel&#x27;, &#x27;error&#x27;]);&#xA;

    &#xA;

    I was able to output this data as a JSON map in the console. The thing is, I need to use this data inside my application, is there a way to get access to those chapters as a variable using another approach, or maybe to access this data directly from the console log printed by the method shown earlier.

    &#xA;