Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (106)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (10039)

  • fftools/ffmpeg_enc : split Encoder into a private and public part

    24 septembre 2024, par Anton Khirnov
    fftools/ffmpeg_enc : split Encoder into a private and public part
    

    Similar to what was previously done for other components, e.g. decoders
    (see 3b84140a1bb5a5b3044915888a40a7b619921633).

    Start by moving samples,frames_encoded into the public struct.

    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_enc.c
    • [DH] fftools/ffmpeg_mux.c
  • avcodec/iff : Split extract_header into extradata and packet part

    11 juillet 2022, par Andreas Rheinhardt
    avcodec/iff : Split extract_header into extradata and packet part
    

    183132872a1d8bc8a32e7fd8f994fa2f1b2d6bfc made the iff demuxer
    output extradata and made the decoder parse said extradata.
    To make this extradata extensible, it came with its own internal
    length field (containing the offset of the palette at the end
    of the extradata). Furthermore, in order to support mid-stream
    extradata changes, the packets returned by the demuxer also have
    such a length field (containing the offset of the actual packet
    data). Therefore the packet parsing the extradata accepted its
    input from both AVPackets as well as from ordinary extradata.

    Yet the demuxer never made use of this "feature" : The packet's
    length field always indicated that the packet data starts
    immediately after the length field.

    Later, commit cb928fc448f9566e6f6c28d53fa4c2388e732a2b stopped
    appending the length field to the packets' data ; of course,
    it also stopped searching for extradata in this data.

    Instead it added code to parse the packet's header to the function
    that parses extradata. This made this function consist of two disjoint
    parts, one of which is only reachable if this function is called
    from init (when parsing extradata) and one of which is reachable
    when parsing packet headers.

    Therefore this commit splits this function into two.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/iff.c
  • How to extract an audio part from a mp4 using ffmpeg ?

    13 avril 2019, par vdegenne

    I tried to use the following command :

    ffmpeg -i video.mp4 -acodec copy -ss 00:30:00 -to 00:60:00 extract.mp3

    but it fails and says

    [mp3 @ 0x3bfade0] Invalid audio stream. Exactly one MP3 audio stream is required.
    Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument

    I believe it’s because I need to extract the mp3 data first and provide it to the command, but is not there a way to do this in one command and avoid creating the full mp3 file that I don’t need ?