Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (112)

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

  • Volume Detect on half second window sizes [duplicate]

    14 juin 2021, par user82395214

    How can I get the max volume of individual slices of a video using FFMpeg ?

    


    Using this command, you can obtain the max volume for the whole clip :

    


    ffmpeg -i video.avi -af "volumedetect" -vn -sn -dn -f null /dev/null

    


    However, I want the max volume for every half second window in the audio file. How can I achieve this with ffmpeg ?

    


  • How do I use FFMPEG to scene detect and split a clip at each cut ?

    31 août 2015, par Brendan Luu

    I want to take an edited video and split it into a sequence at each cut. I figured out how to use scene detection with FFMPEG and have the correct timestamps for when scenes change but I would like to use the .txt or .csv to split the full video into individual clips. Can this be done ? If it’s possible, how can I do it ?

    The command I used to get the scene detection is ffprobe -show_frames -of compact=p=0 -f lavfi "movie=MOVIEFILENAME,select=gt(scene\,.4)" > MOVIEFILENAME.csv

  • Extracting Frames from Video using FFMPEG in GPU and File Name with TimeStamp in Linux

    2 septembre 2019, par SRaj

    I have Long video 8hrs to be converted to individual frames to be saved in a folder with the filename in the format "InputVideoName_Frame_Number_TimeStampoftheframeinthevideo.jpg" for example : InputVideo2_234_130425 in a python code. My system has GPU to process the load.

    I was able to get to a part of it by running the below code in terminal but was not able to have the filename in the format i need and also was not able to run it in python code with absolute pathnames

    ffmpeg -i ActualPath/Video.mp4 -vf fps=1 Outputfolder/out%d.jpg