Recherche avancée

Médias (91)

Autres articles (50)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (9461)

  • avformat/dv : fix timestamps of audio packets in case of dropped corrupt audio frames

    31 octobre 2020, par Marton Balint
    avformat/dv : fix timestamps of audio packets in case of dropped corrupt audio frames
    

    By using the frame counter (and the video time base) for audio pts we lose some
    timestamp precision but we ensure that video and audio coming from the same DV
    frame are always in sync.

    This patch also makes timestamps after seek consistent and it should also fix
    the timestamps when the audio clock is unlocked and have a completely
    indpendent clock source. (E.g. runs on fixed 48009 Hz which should have been
    exact 48000 Hz)

    Fixes out of sync timestamps in ticket #8762.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/dv.c
    • [DH] tests/ref/seek/lavf-dv
  • ffmpeg : error messages when creating prores

    10 septembre 2020, par user14245857

    I'm trying to convert from TIFF, 16-Bit, Raw, little endian to ProRes 4444 with ffmpeg

    &#xA;

    command line is :

    &#xA;

    ffmpeg -f image 2 -i 0%05d.tiff -c:v prores_ks –profile:v 4444 –v:f scale=2048x1550 –pix_fmt yuv444p10le out.mov&#xA;

    &#xA;

    Error messages are :

    &#xA;

    „Unknown dref type 0x206c7275 size 12 “&#xA;&#xA;„cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0]"&#xA;

    &#xA;

    My suspicion is, that ffmpeg is only supporting 10-bit for ProRes codecs ("ffmpeg –h encoder=prores_ks"). But that is why i specifically put "–pix_fmt yuv444p10le" in the command line.

    &#xA;

    But ffprobe -i out.mov tells me that ffmpeg used "yuv444p12le" as pix_fmt!

    &#xA;

    Why does ffmpeg use a pix_fmt that it doesn't support although told differently in the command line ?&#xA;(Another output of the log : "[prores @ 0000025d28ece880] Auto bitdepth precision. Use 12b decoding based on codec tag")

    &#xA;

    Are the error messages ("Unknown dref..." and "cur_dts...") resulting from unsupported 12-Bit ?

    &#xA;

    Thanks already for your helpful answers

    &#xA;

  • FFMPEG how to use https dynamic url as input for amovie filter

    2 juillet 2020, par Johny Sharma

    Basically what i am trying to do is to calling a dynamic php url which is generating a audio file for me and just want to use that file as an input for amovie filter.&#xA;I hope you have understand my question.

    &#xA;

    What i have done so far ?

    &#xA;

    I have a FFMPEG code which is :

    &#xA;

    ffmpeg-y -i &#x27;bg-file.mp3&#x27; -c copy -map 0:0 -map 1:0 -filter_complex "amovie=&#x27;/auth.php?input=string&amp;l=hi&amp;f.mp3&#x27;:loop=999[sc][mix];[0:a][sc]sidechaincompress=threshold=0.100:ratio=20,volume=10dB:precision=fixed[bg], [bg][mix]amix=duration=first"  -c:a libmp3lame -ac 2  "save.mp3"&#xA;

    &#xA;

    This line is calling my dynamic url for generating the required song.

    &#xA;

    "amovie=&#x27;/auth.php?input=string&amp;l=hi&amp;f.mp3&#x27;&#xA;

    &#xA;

    Everything is working if i check them apart. but when i use them together the ffmpeg is giving the following error.

    &#xA;

    [22] => [Parsed_amovie_0 @ 0x1378140] Failed to avformat_open_input &#x27;/auth.php?input=string&amp;l=hi&amp;f.mp3&#x27;:loop=999&#x27;&#xA;[23] => [AVFilterGraph @ 0x1368ca0] Error initializing filter &#x27;amovie&#x27; with args &#x27;/auth.php?input=string&amp;l=hi&amp;f.mp3&#x27;:loop=999&#x27;&#xA;[24] => Error initializing complex filters.&#xA;[25] => No such file or directory&#xA;

    &#xA;

    I dont know is it possible to put a dynamically generated url as an input for amovie filter or not ?&#xA;if i open my dynamic url in browser its works like a mp3 file and play similar to any mp3 file.

    &#xA;

    using this code to play that mp3 :

    &#xA;

    header(&#x27;Content-Description: File Transfer&#x27;);&#xA;header(&#x27;Content-Type: application/octet-stream&#x27;);&#xA;header(&#x27;Content-Disposition: attachment; filename=&#x27;.basename($path));&#xA;header(&#x27;Content-Transfer-Encoding: binary&#x27;);&#xA;header(&#x27;Expires: 0&#x27;);&#xA;header(&#x27;Cache-Control: must-revalidate, post-check=0, pre-check=0&#x27;);&#xA;header(&#x27;Pragma: public&#x27;);&#xA;ob_clean();&#xA;flush();&#xA;readfile($path);&#xA;exit;&#xA;

    &#xA;

    This one looks similar to my query but slightly different and that's why i am still looking for a solution

    &#xA;

    How to use https input with ffmpeg "amovie" filter ?

    &#xA;