Recherche avancée

Médias (0)

Mot : - Tags -/page unique

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (101)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

Sur d’autres sites (6202)

  • vdpau : add av_vdpau_bind_context()

    4 octobre 2014, par Rémi Denis-Courmont
    vdpau : add av_vdpau_bind_context()
    

    This function provides an explicit VDPAU device and VDPAU driver to
    libavcodec, so that the application is relieved from codec specifics
    and VdpDevice life cycle management.

    A stub flags parameter is added for future extension. For instance, it
    could be used to ignore codec level capabilities (if someone feels
    dangerous).

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] doc/APIchanges
    • [DBH] libavcodec/vdpau.c
    • [DBH] libavcodec/vdpau.h
    • [DBH] libavcodec/vdpau_internal.h
    • [DBH] libavcodec/version.h
  • How to acurately trim audio and video with ffmpeg ? [closed]

    6 janvier 2024, par ws90

    I'm trying to automate the trimming and concatenation of video clips that also contain audio using ffmpeg.&#xA;The following commands are being used to trim clips and then concatenate the trimmed clips.

    &#xA;

    .\ffmpeg -ss $startInSeconds -i $inputFile -t $partDurationInSeconds $outputFile&#xA;

    &#xA;

    This is done once per input file, the values of $startInSeconds and $partDurationInSeconds are different for different clips.

    &#xA;

    .\ffmpeg -f concat -safe 0 -i .\list.txt -c copy $concatOutputFile&#xA;

    &#xA;

    list.txt is a list of $outputFile from the first trim command.

    &#xA;

    The audio of the concat video file gradually de-syncs over time (slowing down compared to the trimmed clips), which is the problem I'm looking to fix.&#xA;It seems to slow down by about half a frame at each concat join.

    &#xA;

    Why is the concat command causing this de-sync and what can I do about it ?

    &#xA;

    I thought this was due to a mismatch in duration between the audio and video tracks of a trimmed clip (the audio would often be shorter than the video after trimming). I then tried padding the audio to match the video before concatenating but the problem persists.&#xA;I also found an example where the tracks were identical in length and the problem persists, so I think the concat command is the culprit, not the trim command.

    &#xA;

  • FFMPEG scaling video disable viewing it while process is not ended, for video transcoding on the fly

    5 juillet 2022, par Lucas F

    Good day all,

    &#xA;

    I'm working on a video player with 1080p original video files, and I would like to change their resolution on the fly :

    &#xA;

    Actually I host all my original video files under a web mp4 1080p format, and I would like to be able to offer 720p, 480p, etc ... qualities.

    &#xA;

    So I started to look for tutorials about video transcoding on the fly and I found the FFMPEG tool.

    &#xA;

    I'm actually using the following command to scale videos - to 720p for e.g. :

    &#xA;

    ffmpeg -i input.mp4 -vf scale=-1:720 output.mp4&#xA;

    &#xA;

    The problem is, once FFMPEG starts scaling it, I have to wait the end of the process before being able to play the video. Do you know if there is any parameter for this command to allow playing the video while it's under scaling ?

    &#xA;

    Or any workaround that can help me doing this ?

    &#xA;

    Thank you in advance for your help !

    &#xA;

    EDIT

    &#xA;

    Now I found how to access readable content while transcoding (by transcoding to fragmented MP4) :

    &#xA;

    ffmpeg -i input.mp4 -vf scale=-2:720 -movflags &#x2B;frag_keyframe&#x2B;separate_moof&#x2B;omit_tfhd_offset&#x2B;empty_moov output.mp4&#xA;

    &#xA;

    But my problem is when opening the video it comes as an "ended" video of the current transcoded data.

    &#xA;

    So if video lasts 1min and is half transcoded, I'll see only 30s, it will not load more data, once the rest is transcoded.

    &#xA;