Recherche avancée

Médias (91)

Autres articles (88)

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (13641)

  • libavfilter/vf_vpp_qsv : fix uninitialized variable problem

    15 septembre 2021, par Wenbin Chen
    libavfilter/vf_vpp_qsv : fix uninitialized variable problem
    

    This two variables may be used below with uninitialized value.
    Now fix them.

    Signed-off-by : Wenbin Chen <wenbin.chen@intel.com>
    Reviewed-by : Xiang, Haihao <haihao.xiang@intel.com>
    Reviewed-by : Soft Works <softworkz@hotmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavfilter/vf_vpp_qsv.c
  • mencoder -> x264 : FPS problem : Video is 2x faster at the output

    28 mars 2011, par Julien Palard

    I got an input video, ffmpeg says about it : 29.96FPS 59.75 tbr 1k tbn 59.83 tbc
    My process to encode is :

    $ mencoder input_video -vf dsize=480:320:0,scale=0:0,expand=480:320,dsize=1.5,format=i420 -of rawvideo -ofps 25 -ovc raw -nosound -o output.yuv
    $ x264 input_video --profile baseline --fps 25 [blahblah] -o output
    $ MP4Box -add output.yuv -fps 25 output.mp4

    Im'simplificating a lot here to let you parse less as I'm encoding the audio apart and merging the result using mp4box.

    ffmpeg -i output says that the vid is : 25 FPS 25 tbr 25 tbn 50 tbc

    And while playing the video, the audio is normal, the video is 2x faster than input, so the video ends at the half of the audio track (compared to the input, the audio is good, it's just the video running 2x faster)

    Any idea about my problem ?

  • frame skipping problem in ffmpeg and ffprobe

    3 mai 2019, par user3851234

    I am trying to check the details of the encoded frames using ffmpeg and ffporbe. When I print the details I notice that the details related to some frames are missing. For example using the fallowing command

    ffmpeg -i input.avi -vf showinfo -f null -

    I get :
    n : 247 pts : 247 pts_time:8.24157 pos : 624096 ...

    n : 248 pts : 249 pts_time:8.3083 pos : 624168 ...

    n : 249 pts : 258 pts_time:8.6086 pos : 624352 ...

    n : 250 pts : 270 pts_time:9.009 pos : 630212 ...

    You can see that there is jump from 258 to 270. In addition, when I print the number of decoded frames, it doesn’t match the actual number of frames.

    ffprobe -count_frames -select_streams v:0  -show_entries stream=nb_read_frames -of default=nokey=1:noprint_wrappers=1 input.avi

    it outputs 480 but the correct number is 509

    Changing nb_read_frames to nb_frames solves the problem of the frame numbers but the other details are still missing.
    What does ffmpeg/ffprobe skip some frames ?