Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (81)

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

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (6103)

  • How to accurately remove silence part from the beginning of a video ?

    6 mai 2015, par Nir Altmark

    I’m trying to use FFMPEG in order to remove silence parts from a video.
    I’m not trying to remove only from the audio stream but from both streams together.
    In order to do that I’m using the silence detect filter like this.

    ffmpeg -i input.mp4 -af silencedetect=n=-25dB:d=1 -f null -

    Than i take the result, for example :

    [silencedetect @ 000000000002ec00] silence_start: -0.0150208
    [silencedetect @ 000000000002ec00] silence_end: 4.48898 | silence_duration: 4.504

    And I’m trying to cut the whole movie using -ss.

    ffmpeg -ss 00:00:04.504 -i input.mp4 -vcodec copy -acodec copy output.mp4

    Unfortunately, it never really cut the video at the desired point.
    If i’ll try to do the same only on the audio stream it will work.
    I’ve also tried to re-encode the video, nothing works.

    Questions :
    1. Is this the right way to achieve it using FFMPEG ?
    2. Are there other ways to do this ? I’m not bounded to FFMPEG.

  • FFmpeg : Convert FLAC to mp3 and add album art in one step

    13 septembre 2022, par Christian Riedl

    I convert FLAC to MP3 using

    


    ffmpeg -i x.flac -f mp3 -vn -b:a 64K x.mp3


    


    and I add album art using

    


    ffmpeg -i x.mp3 -i x.jpg -map 0:0 -map 1:0 -c copy -id3v2_version 3 -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (Front)" xx.mp3


    


    Is it possible to do it in one step ? Because I want to do it during "live" transcoding.

    


  • Crop image and take the left part with ffmpeg

    21 novembre 2019, par shAkur
    ffmpeg -i giphy.mp4 -y -filter_complex "[0:v]crop=iw/2:ih:0:0[left];[1:v]crop=iw/2:ih:ow:0[right];[left][right]hstack" -vframes 1 -vcodec mjpeg giphy.jpg

    The command above takes the first frame of a mp4 file and converts it to an image. I want to crop that image and take only the left part starting from center but I get the following error :

    Invalid file index 1 in filtergraph description
    [0:v]crop=iw/2:ih:0:0[left] ;[1:v]crop=iw/2:ih:ow:0[right] ;[left][right]hstack.

    What is wrong with my command ? The image I want to crop : imgur.com/a/PdAqiZU -> I want to take only the left part of that image