Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (71)

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

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

Sur d’autres sites (8067)

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