Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (45)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (6107)

  • AWS Chime : Video Merging Java Library

    18 mai 2023, par Swapnil Srivastav

    I am using AWS Chime to record interaction of two or more than two participants, I want to process this and build a final video.

    


    While making final video I want to mask one participant's video with some generic image and everything I want to do using Java.

    


    Is there any library available which can help me to do this ? I'm using Python as of today, ffmpeg library.

    


  • avformat/mpegtsenc : Fix mpegts_write_pes() for private_stream_2 and other types

    25 avril 2021, par zheng qian
    avformat/mpegtsenc : Fix mpegts_write_pes() for private_stream_2 and other types
    

    According to the PES packet definition defined in Table 2-17 of ISO_IEC_13818-1
    specification, some fields like PTS/DTS or pes_extension could only appears if
    the stream_id meets the condition :

    if (stream_id != 0xBC && // program_stream_map
    stream_id != 0xBE && // padding_stream
    stream_id != 0xBF && // private_stream_2
    stream_id != 0xF0 && // ECM
    stream_id != 0xF1 && // EMM
    stream_id != 0xFF && // program_stream_directory
    stream_id != 0xF2 && // DSMCC_stream
    stream_id != 0xF8) // ITU-T Rec. H.222.1 type E stream

    And the following stream_id types don't have fields like PTS/DTS :

    else if ( stream_id == program_stream_map
    || stream_id == private_stream_2
    || stream_id == ECM
    || stream_id == EMM
    || stream_id == program_stream_directory
    || stream_id == DSMCC_stream
    || stream_id == ITU-T Rec. H.222.1 type E stream )
    for (i = 0 ; i < PES_packet_length ; i++)
    PES_packet_data_byte

    Current implementation skipped the check of stream_id causing some kind of
    streams like private_stream_2 to be incorrectly written with actually a
    private_stream_1-like PES header with PTS/DTS field. For example, Japan DTV
    transmits news and alerts through ARIB superimpose that utilizes
    private_stream_2 still could not be remuxed correctly for now.

    This patch set fixes the remuxing for private_stream_2 and
    other stream_id types.

    Signed-off-by : zheng qian <xqq@xqq.im>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mpegtsenc.c
  • Read Audio and Video, edit Video frame, then write back Audio and Video - Using python

    19 avril 2021, par CowKeyMan

    I'm looking to do exactly as the title says, ie :

    &#xA;

      &#xA;
    1. Read a file containing both audio and video
    2. &#xA;

    3. Edit the video frames individually
    4. &#xA;

    5. Write back the video with the new frames but the same exact audio as before
    6. &#xA;

    &#xA;

    OpenCV is not a good option for reading and writing since it doesn't handle audio, altough I can use opencv in step 2.

    &#xA;

    The language I am using is Python, as this needs to be integrated with a bigger system.

    &#xA;

    My question is this : What software stack / librarries are appropriate for this kind of task and if anyone can point me to some resources it would be highly appreciated

    &#xA;

    So far I have found the following options, but would like some feedback on them based on experience :

    &#xA;

      &#xA;
    1. ffmpeg
    2. &#xA;

    3. MoviePy
    4. &#xA;

    5. libav
    6. &#xA;

    &#xA;