Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (82)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

Sur d’autres sites (12450)

  • avformat/flv : correct the video frametype mask to 0x70

    26 juillet 2023, par Steven Liu
    avformat/flv : correct the video frametype mask to 0x70
    

    because the flv specification said the video frametype
    should use value range from 0x00 to 0x70,
    so use 0xF0 have no problem before support enhanced flv,
    but the 0xF0 will get incorrect result after support enhanced flv,
    so should set the video frametype mask 0x70 to make it correct now.

    Reported-By : flvAnalyser <hybase@qq.com>
    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] libavformat/flv.h
  • ffmpeg performance with hundreds of cuts (atrim)

    25 mai 2021, par drakon

    I have audio files (think 2h) where I want to cut out a lot of pieces out of it (500+) and a ffmpeg command like this one :

    &#xA;

    [&#x27;ffmpeg&#x27;, &#x27;-i&#x27;, &#x27;pipe:&#x27;, &#x27;-filter_complex&#x27;, &#xA;&#x27;[0]atrim=end=30.69:start=0.0[s0];&#xA; [0]atrim=end=34.31:start=31.18[s1];&#xA; [0]atrim=end=38.65:start=34.43[s2]; &#xA; (... hundreds more)&#xA; [s37][s38][s39][s40][s41]concat=a=1:n=42:v=0[s42]&#x27;, &#x27;-map&#x27;, &#x27;[s42]&#x27;]&#xA;

    &#xA;

    Stream mapping built with ffmpeg-python :

    &#xA;

      Stream #0:0 (mp3float) -> atrim&#xA;  (... hundreds more)&#xA;  Stream #0:0 (mp3float) -> atrim&#xA;  concat -> Stream #0:0 (libmp3lame)&#xA;

    &#xA;

    Now this works as expected but it takes locally something like 10mins for the files I have and when I deploy it to some server in the cloud it takes something like an hour. It definitely depends on the machine obviously and I definitely scale there the speed but I'd also like to know if there's a way to speed up the processing with ffmpeg itself.

    &#xA;

    Thanks for any pointers !

    &#xA;

  • why reducing the resolution a percentage doesn't reduce the video the same proportion using ffmpeg ?

    14 mars 2023, par user44551

    I'm using this command :

    &#xA;

    -y -r -i $inVideoUri -movflags faststart -c:v libx265 -s $videoResolution -c:a copy -preset ultrafast $outPutUri"&#xA;

    &#xA;

    However, if "videoResolution" is a 50% of the original video resolution, the resulting file size is not 50% of the original one. I assume there are some headers or metadata added during the process but I would like to know how to estimate the final video size.

    &#xA;