Recherche avancée

Médias (91)

Autres articles (46)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (9438)

  • ffprobe : Allow unknown format private AVOptions

    26 juin 2020, par Derek Buitenhuis
    ffprobe : Allow unknown format private AVOptions
    

    This useful, because by ffprobe's very nature, you use it to probe
    a file and find out what it is. Requiring every format private option
    to be known to the demuxer forces one to run ffprobe twice, if one
    wants to use ffprobe in a generic way.

    For example, say one wants to probe all user-uploaded files, while
    also ignoring edit lists for any MP4s that are uploaded. Currently,
    you'd have to run ffprobe twice : once to identify the format, and
    once again to actually probe the metadata you want. After this
    patch, you could set -ignore_editlist 1 on every call and only
    probe once.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] fftools/ffprobe.c
  • ffmpeg does not recognize used codec in any way

    26 janvier 2021, par Omid Ki

    I am using ffmpeg-python to combine video and audio in my program but for one video file I constantly get this error :

    &#xA;

    ffmpeg version N-55702-g920046a Copyright (c) 2000-2013 the FFmpeg developers&#xA;built on Aug 21 2013 18:10:00 with gcc 4.7.3 (GCC)&#xA;configuration: --disable-static --enable-shared --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libcaca --enable-libfreetype --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib&#xA;libavutil      52. 42.100 / 52. 42.100&#xA;libavcodec     55. 29.100 / 55. 29.100&#xA;libavformat    55. 14.101 / 55. 14.101&#xA;libavdevice    55.  3.100 / 55.  3.100&#xA;libavfilter     3. 82.100 /  3. 82.100&#xA;libswscale      2.  5.100 /  2.  5.100&#xA;libswresample   0. 17.103 /  0. 17.103&#xA;libpostproc    52.  3.100 / 52.  3.100&#xA;[mov,mp4,m4a,3gp,3g2,mj2 @ 000000000073cb40] Could not find codec parameters for stream 0 (Video: none (av01 / 0x31307661), 2560x1440, 5427 kb/s): unknown codec&#xA;Consider increasing the value for the &#x27;analyzeduration&#x27; and &#x27;probesize&#x27; options&#xA;temp/Above NYC - Filmed in 12K.mp4: could not find codec parameters&#xA;Traceback (most recent call last):&#xA;  File "C:/Users/Family/PycharmProjects/8-bit Downloader/class_8_bit.py", line 4, in <module>&#xA;    ffmpeg.output(v, "temp/hello.mp4").run()&#xA;  File "C:\Users\Family\PycharmProjects\8-bit Downloader\venv\lib\site-packages\ffmpeg\_run.py", line 325, in run&#xA;    raise Error(&#x27;ffmpeg&#x27;, out, err)&#xA;ffmpeg._run.Error: ffmpeg error (see stderr output for detail)&#xA;</module>

    &#xA;

    It just doesn't recognize it. I know that the codec is av01 I have tried passing it in as the vcodec keyword but nothing would work. I tried going to cmd directly and adding to the 'analyzeduration' and 'probsize' but nothing seems to work. How can I fix this ? My code :

    &#xA;

    import ffmpeg&#xA;&#xA;# I have tried passing absolute paths instead of relative ones too, still not working&#xA;input_video = ffmpeg.input("temp/Above NYC - Filmed in 12K.mp4")&#xA;input_audio = ffmpeg.input("temp/audio_temp 1.webm")&#xA;full_path = "temp/New.mp4"&#xA;out = ffmpeg.output(input_video, input_audio, full_path, vcodec=&#x27;copy&#x27;, acodec=&#x27;aac&#x27;, strict=&#x27;experimental&#x27;)&#xA;out.run(overwrite_output=True)&#xA;

    &#xA;

  • hwcontext_vulkan : allow using concurrent access images with more than 5 queues

    14 mars, par Lynne
    hwcontext_vulkan : allow using concurrent access images with more than 5 queues
    

    This limit was not bumped when the queue family rewrite happened.

    Fixes validation issues on nvidia.

    • [DH] libavutil/hwcontext_vulkan.c