Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (111)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (5317)

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