Recherche avancée

Médias (91)

Autres articles (64)

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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • 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

Sur d’autres sites (14673)

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

  • 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

  • Problems getting real width and height of videos

    1er mai 2022, par Eduardo

    I'm having a problem when I upload videos. The thing is that I record my videos with my cellphone in vertical way and when I download them to my computer or pass them through whatsapp they still look vertical, I can still watch them in vertical way as I recorded them, but when I try to upload them on my website using PHP and FFMPEG I always get horizontal resolutions.

    


    I use this command to get the width of my videos :

    


    $width = $video_attributes['width'] ;

    


    The variable $video_attributes is an array that comes from a FFMPEG function that returns an array with the data related to the video.

    


    Somebody could help me out with some ideas about what I'm doing wrong ?

    


    I need to get the vertical resolution so my videos will be displayed in vertical containers in my website.

    


    Thanks in advance :)