Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (68)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (7252)

  • Extract the first 2 minutes of video without re-encoding - ffmpeg

    8 juillet 2015, par Code_Ed_Student

    I am seeking a fast and efficient way of extracting the first two minutes of a video. Below script finds the nearest keyframe after 120 seconds. This keyframe searching is some what time consuming for large video files. If I disregard the keyframe and cut, I face the fact that the video maybe ruined. I have also tried forcing a keyframe but that involves re-encoding. What is the best and most efficient way to extract the first two minutes of a large video file ?

    #fetch nearest keyframe after two minutes
    ffprobe -select_streams v -show_frames -v quiet -i test.mp4 |
       awk -F= '
         /pict_type=/ { if (index($2, "I")) { i=1; } else { i=0; } }
         /pkt_pts_time/ { if (i && ($2 >= 120)) print $2; }  
       ' | head -n 1

    #cut video
    ffmpeg -i test.mp4 -ss 00:00:00 -t 00:02:00.15 -async 1 cut.mp4
  • Comparing PSNR of two videos, possibly with ffmpeg ?

    24 septembre 2020, par UnixNerd

    I would like to compare a large number of videos to a good reference video in order to find videos with poor quality. I want to do this in a batch mode by calling a command line utility, I'm already using ffmpeg in this manner to grab video frames.

    



    ffmpg will give me a PSNR value to compare the input and output videos if I transcode a video. I was under the impression I could use something like this to compare two separate videos but can't find a way to do it.

    



    Would I be better grabbing a single frame from each video and comparing those somehow ? PSNR may not be the best option for me ?

    



    I'm not looking for minor differences in quality but for major differences such a sync problems or large amounts of snow.

    



    Any suggestions ? Thanks in advance :-)

    


  • Comparing PSNR of two videos, possibly with ffmpeg ?

    22 décembre 2016, par UnixNerd

    I would like to compare a large number of videos to a good reference video in order to find videos with poor quality. I want to do this in a batch mode by calling a command line utility, I’m already using ffmpeg in this manner to grab video frames.

    ffmpg will give me a PSNR value to compare the input and output videos if I transcode a video. I was under the impression I could use something like this to compare two separate videos but can’t find a way to do it.

    Would I be better grabbing a single frame from each video and comparing those somehow ? PSNR may not be the best option for me ?

    I’m not looking for minor differences in quality but for major differences such a sync problems or large amounts of snow.

    Any suggestions ? Thanks in advance :-)