Advanced search

Medias (91)

Other articles (67)

  • Organiser par catégorie

    17 May 2013, by

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Création définitive du canal

    12 March 2010, by

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

  • Le profil des utilisateurs

    12 April 2011, by

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

On other websites (5543)

  • Loop a song for a certain amount of time using FFMPEG

    10 April 2017, by Eduardo Perez

    So, I am trying to loop a song from a video game for one hour, using FFMPEG on Linux or in Windows 10 Bash. I have 3 versions of the song, they are as follows:

    1.Full song in OGG format with LOOPSTART and LOOPLENGTH metadata.
    2.Same song in OGG format, except only the segment before LOOPSTART.
    3.Same song in OGG format, except only the segment from LOOPSTART to LOOPSTART+LOOPLENGTH.

    So, what I want to do is use either the full song file for the loop, which I don’t think FFMPEG supports, or use the files for the beginning and looping portions of the song. Basically, I want to have FFMPEG create a song which starts off with the beginning segment of the song and loops the looping segment indefinitely until an hour has been played. If possible, I also want a second command so I can add an image or an MP4 video to be shown in a loop while the song is being played, but in the case of a video being used to be shown while the song is played, the music from that video won’t be merged with the music from the song. What command should I use for this?

  • avfilter/avf_showspectrum: store win_size in private context and calculate it only...

    31 December 2015, by Paul B Mahol
    avfilter/avf_showspectrum: store win_size in private context and calculate it only once
    

    Signed-off-by: Paul B Mahol <onemda@gmail.com>

    • [DH] libavfilter/avf_showspectrum.c
  • how do I decode an input video using FFmpeg and calculate the PSNR between input and output?

    27 January 2023, by david

    I have an input video in mkv format and want to decode it and calculate the PSNR after decoding. for this aim, I used the following code:

    &#xA;

    ffmpeg -i input.mkv -f rawvideo -pix_fmt yuv420p output.yuv&#xA;

    &#xA;

    but the output is in yuv format and I can not calculate PSNR between it and mkv input file. I am new to using ffmpeg and encoding and decoding. how do I decode the input file and calculate the PSNR value? is it possible for the output to be in mkv format? because I use the following code for PSNR calculation but both files have to have the same format.

    &#xA;

    ffmpeg -i [Input1] -i [Input2] -lavfi psnr -f null -&#xA;

    &#xA;