Recherche avancée

Médias (91)

Autres articles (73)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • 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

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (9428)

  • How do Iuse FFMPEG API to add AV_CODEC_ID_ASS stream to my MPEGTS video format

    31 juillet 2020, par Meir Ivry

    I want to add an ASS/SSA subtitle stream to my video format using FFMPEG API.

    


    The specification for that format is in the following link :
ASS file format specification
(http://www.tcax.org/docs/ass-specs.htm)

    


    I know how to that with video, where it compirsed of the following steps

    


      

    1. get the desired AVCodec
    2. 


    3. create new AVStream
    4. 


    5. create new AVCodecContext
    6. 


    7. create the proper AVFrame for each raw video frame.
    8. 


    9. use avcodec_send_frame to encode frame
    10. 


    11. use avcodec_receive_packet to get the frame packets
    12. 


    13. use av_interleaved_write_frame to write the packets
    14. 


    


    My question is the same procedure applies to subtitles and, if so, how do I initialize the AVFrame ?
Moreover, is there more to know other than that ?

    


    Thanks.

    


  • Audio Video Editing in Python : How to do it ? [on hold]

    12 mai 2019, par DoakCode

    Does anyone know how to do it ? It’s a bit more complex then then the usual docs I’ve read, so I don’t know where to start and I’d appreciate someone leading me to the right docs or the right path.

    The software should be doing following :

    1. Taking a background picture and making it blurred -> The background
    2. In the front should be :
      1. A picture
      2. Text
      3. A progressing timer (which displays the current status of the video)
    3. Last, but not least, audio should be added to the video or vice versa as the video is supposed to end when the audio ends to round things up.

    As this all is pretty complex editing for a python programme, I don’t know which library(ies) to use.. If someone has a solution / idea please reply !

  • AVFrame / AVPicture change color component

    26 avril 2014, par RoeeL

    Given a video stream (runs with SDL), I need to somehow make the video’s frames color green only, blue only and red only (depends on input).

    How can I do that ? How can I set the color component to be RED only for instance ? (R = 255, G = 0, B = 0)

    Didn’t manage to find anything on google. would love to get some assistance.

    thanks