Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (107)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (6483)

  • lavf/dashenc : Write media trailers when DASH trailer is written.

    3 décembre 2018, par Andrey Semashev
    lavf/dashenc : Write media trailers when DASH trailer is written.
    

    This commit ensures that all (potentially, long) filesystem activity is
    performed when the user calls av_write_trailer on the DASH libavformat
    context, not when freeing the context. Also, this defers media segment
    deletion until after the media trailers are written.

    • [DH] libavformat/dashenc.c
  • I can't find a good C# Media Transcoding Library [closed]

    11 mai 2021, par TheYoungSeth

    I am trying to find a good c# library for media transcoding, primarily video, and I don't seem to find anything good and actually usable. I do not want to use FFMpeg wrappers because I want my program to be user friendly and for public use which I can't do with FFMpeg because of the harsh usage rules that come with it.

    


    Help would be appreciated,
thanks

    


  • Getting media duration with ffprobe after decoding with FFmpeg

    23 août 2019, par Brad

    With ffprobe, it’s possible to get the duration of a media file :

    ffprobe -show_format 1064428_cityLights_HD_BG.mp4

    [FORMAT]

    duration=10.010000

    However, ffprobe only digs into the container and doesn’t decode the media. For container formats that have no inherent duration, or for broken files that play but maybe weren’t finalized, the duration isn’t available :

    [FORMAT]

    duration=N/A

    The recommended solution to this problem is to use FFmpeg to decode, and then parse STDERR.

    ffmpeg -i input.webm -f null -

    frame=206723 fps=1390 q=-0.0 Lsize=N/A time=00:57:28.87 bitrate=N/A speed=23.2x

    This works well enough, but if I’m integrating this into other programs and scripts, I have to assume that the output of FFmpeg isn’t going to change from version to version. It would be much more convenient if there were a way to use ffmpeg and ffprobe together, so that I could continue to utilize the JSON output of ffprobe.

    Is there some way to force ffmpeg to decode the media and pipe it to ffprobe in some way that allows ffprobe to include the duration in its output for these types of situations ?

    (Note : I know I can just have FFmpeg output a file, and then input that into ffprobe. For convenience, I’m curious if there’s an all-in-one solution, with a pipe or equivalent.)