Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (62)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

Sur d’autres sites (9003)

  • How to write the same AVPacket to multiple outputs

    19 juillet 2017, par Gilles Bernard

    I’d like to implement some sort of tee function using libav. I read packets from a file and would like to forward them to several output file.
    So far, since av_interleaved_write_frame free the packet, I did this :

    AVPacket pkt;
    // Stuff to read packets into pkt

    for (ic = 0; ic < nb_outputs; ic++) {
     AVPacket pkt2;
     av_copy_packet(&pkt2,&pkt);
     av_interleaved_write_frame(ofmt_ctx[ic], &pkt2);
    }

    I wonder if it’s the optimal way of doing it ?
    Copying the packet seems overkill. I try to use av_packet_ref but it failed.

  • using ffmpeg cli in C ?

    19 février 2021, par Matthew

    I need to encode a video, and ffmpeg seems to be the go-to solution (for one, we already use it for decoding). However, unlike decoding, where one can more or less just ask for frames, there are tons of knobs when it comes to encoding

    


    What's the best way to expose these to the user ?

    


    I'm thinking I'd like to just let the user enter an argument string using the same syntax as the CLI, but how do I parse this in order to properly set up the C API ?

    


    Note : I'm vaguely aware of e.g. AVOption, but it seems to require that I already know something about what options take what arguments. Is there anything that e.g. just takes a char** and parses it ? And/or are there any examples somewhere of doing this sort of thing ?

    


    ...or would it be far more sane to just do what I've done before ; spawn ffmpeg in a separate process and feed it via a pipe ?

    


  • ffmpeg H264 bytestream to image or video file [Java]

    16 mars 2020, par Mitchell

    I have a Java function which receives bytes of an H264 stream as follows :

    void bytesReceived(byte[] bytes, int size)

    Using ffmpeg, how can I transcode these bytes to some sort of image format ? I would be happy with mp4, jpeg, etc. I’ve seen lots of examples using files and ffmpeg, but I don’t know how I’d use the command line operations it offers to handle a stream of bytes.

    Thanks.