Recherche avancée

Médias (91)

Autres articles (74)

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

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

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (10684)

  • avcodec/utils : split side-data in new decode API too

    28 avril 2016, par wm4
    avcodec/utils : split side-data in new decode API too
    

    The deprecated avcodec_decode_video2() and avcodec_decode_audio4()
    functions called av_packet_split_side_data() on the input packets. This
    is required for packets produced by libavformat with the
    AVFMT_FLAG_KEEP_SIDE_DATA flag unset (which is unfortunately the
    default).

    The new API didn’t do this yet, although it didn’t matter as no decoder
    supports the new API yet. The emulation layer for the old API calls the
    old API functions, which took care of the splitting. Add this code to
    the new API codec entrypoints too, because we shouldn’t send essentially
    corrupted data to decoders.

    • [DH] libavcodec/utils.c
  • lavc/hevc/parser : only split packets on NALUs with nuh_layer_id=0

    7 juin 2024, par Anton Khirnov
    lavc/hevc/parser : only split packets on NALUs with nuh_layer_id=0
    

    A packet should contain a full access unit, which for multilayer video
    should contain all the layers.

    • [DH] libavcodec/hevc/parser.c
  • ffmpeg : Split MP3 in 1 second chunks fast ?

    30 décembre 2019, par Niko

    I want to split mp3 into one second chunks fast. I have the mp3 already in memory (in crystal lang) and want to process it further (so I need it in memory after splitting). I got two possiblities working :

    • Saving the file to ram disk, calling ffmpeg -segment on it, reading all the segement files into memory.
    • Piping the file into ffprobe --show_frames and parsing the pkt_pos fields from the result.

    Both are slow about one second due to unnescessary overhead. Writing to disk and reading hundrets of files in the first case, outputting a lot of unneeded information about a lot of unneeded frames in the second.

    I see two possibilities to improve :

    • a custom filter for ffmpeg that outputs the segements with a separator to stdout.
    • a custom filter for ffprobe similar to --show_frames but with a framestep parameter (the existing framestep filter only seems to work with video files) which outputs only the byte offset of the frames.

    Perhaps I’m missing possibilites with the existing filters. Perhaps there is a tool better fitted for my needs than ffmpeg. I’d be happy for any hints.