Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (45)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (5112)

  • MKV Video Faster Plays Faster

    4 avril 2014, par Ankush

    I have C# program which screenshots 3 times per second & adds this to mkv ( VP8 ) video, set FPS to 3,encoded video works but plays faster, the total length of video player shows is wrong & while playing it doesn't plays smooth it jumps like from 1sec -> 3sec -> 5sec means instread of 1 -> 2 ->3..

    There is something wrong with pts value,

    if ( codecContext->coded_frame->pts != AV_NOPTS_VALUE )
    {
    packet.pts = av_rescale_q( packet.pts, codecContext->time_base, pVideoStream->time_base );
    }

    if ( codecContext->coded_frame->pkt_dts != AV_NOPTS_VALUE )
    {
    packet.dts = av_rescale_q( packet.dts, codecContext->time_base, pVideoStream->time_base );
    }

    while debugging codecContext->time_base shows 3FPS ( num=1 den=3 ) & pVideoStream->time_base shows ( num=1 den=1000) & packet.pts & packet.dts shows 0 ( everytime )

    Whats wrong ? Anyone please give me some hint atleast.

  • ffmpeg mov to mp4 plays fine on linux no video on windows

    26 février 2018, par scopa

    I am using the cmd ffmpeg -i MAG.mov -c:a aac -strict -2 MAG.mp4

    On my linux box playback video & audio is fine. On Windows there is audio only. Any idea how to fix ?

  • Making images slide and resize as the video plays with ffmpeg

    16 mars 2014, par user3276998

    I want to create a video where I have multiple images on screen at once which are moving around or resizing as the video plays.

    A vastly more advanced version would be like Facebooks https://www.facebook.com/lookback/

    All I need, is to move a few images and change their scale, with set start and end times within the video.

    I could obviously do this with a video editor but I'd like to just drop some images in a directory and then have a preset script which will then create the video for me.

    I've a few months experience with FFMPEG so the directory part is easy, but I'm baffled on the moving bits.

    Any suggestions ? Many thanks.