Recherche avancée

Médias (91)

Autres articles (67)

  • 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 ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (9540)

  • Muxing h264 with media type change into MP4

    31 octobre 2017, par Taras.Igorovich

    I’m trying to mux h264 into mp4 container with resolution change, for example from 720p to 1080p. The problem is that when I add SPS/PPS as extradata, I don’t see two sample descriptions (stsd), but one with avcc data that contains both SPS/PPS for different resolutions. In this case video is not playing well, because samples after resolution change will still refer to same sample description.

    Would appreciate if somebody could point me into right direction in case of mp4 files with multiple media types.

    NOTE : I don’t want to use different sps/pps.id and single sample description

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

  • 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