Recherche avancée

Médias (91)

Autres articles (74)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

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

Sur d’autres sites (12873)

  • Convert AVStream PTS value to real time in seconds

    15 janvier 2015, par Kamlesh

    The below code snippet gets the PTS value of different frames from a video file

    AVStream *stream = avctx->streams[avpkt.stream_index];
    if ( 0 > ( err = avcodec_decode_video2 ( stream->codec, frame, &got_frame, &avpkt ) && got_frame ) )
    {
       int64_t pts = av_frame_get_best_effort_timestamp ( frame );
       pts = av_rescale_q ( pts,  stream->time_base, AV_TIME_BASE_Q );        
    }

    The PTS value that it returns are given below.

    • 66733
    • 100100
    • 133467

    Confusion is on the time format of the above values, whether they are in milliseconds or microseconds.
    Is there any other way to get a real time PTS values of the frames, as these will be required for subtitle rendering

  • What does ffmpeg error "Prediction is not allowed in AAC-LC" mean ?

    21 juin 2014, par user2212461

    When decoding AAC files, ffmpeg returns the error

    "Prediction is not allowed in AAC-LC".

    Does that mean the file is corrupt ? Or that ffmpeg cannot handle AAC-LC files ?

    I tried with different AAC files and get the errors :

    Number of scalefactor bands in group (63) exceeds limit (49).

    TNS filter order 25 is greater than maximum 12.

    So I guess its not my file that is corrupt but ffmpeg can only handle specific AAC formats ? Which would these be ?

  • FFMPEG can not load frei0r plugins via environment path on windows 10

    23 janvier 2018, par sam rolfe

    This works fine on windows 7 - however on windows 10 mo matter what I try FFMPEG can not load the .dll file.

    In debug mode it shows me that it is reading the correct environment path - however it is unable to find the file on that path - its so strange.

    Looking for frei0r effect in ’C :\freior/edgeglow.dll’

    I have tried with all manner of folders, names, slashes, etc - it always returns

    Could not find module ’edgeglow’

    I am wondering of there is some sort of user permissions ? Something is blocking it.