Recherche avancée

Médias (91)

Autres articles (107)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (8050)

  • idb & Ffmpeg hls video is taking lot of time to start creating video

    24 avril 2024, par aksh02

    I'm trying to capture a simulator's screen using idb & ffmpeg with the command

    


    idb video-stream --fps 15 --format h264 --compression-quality 1.0 --udid <udid> | ffmpeg -i pipe:0 -vcodec libx264 -threads 1 -crf 40 -preset ultrafast -f hls -g 30 -hls_list_size 0 -hls_time 5 -r 15 ./index.m3u8&#xA;</udid>

    &#xA;

    This is taking around 15s to create the index.m3u8 file resulting in the loss of first 15 seconds of video.&#xA;I've tried adding

    &#xA;

    -tune zerolatency&#xA;

    &#xA;

    but this too has no effect.&#xA;Idb starts video streaming right away on its own. Need help triaging why ffmpeg is processing it so late. The output ffmpeg provides when it eventually starts writing to ts files

    &#xA;

    Input #0, h264, from &#x27;pipe:0&#x27;:&#xA;  Duration: N/A, bitrate: N/A&#xA;    Stream #0:0: Video: h264 (High), yuvj420p(pc, progressive), 1178x2556, 25 fps, 25 tbr, 1200k tbn, 50 tbc&#xA;

    &#xA;

    ffmpeg -version

    &#xA;

    ffmpeg version N-92246-gc2ac3b8e6a-tessus  https://evermeet.cx/ffmpeg/  Copyright (c) 2000-2018 the FFmpeg developers&#xA;built with Apple LLVM version 10.0.0 (clang-1000.11.45.2)&#xA;configuration: --cc=/usr/bin/clang --prefix=/opt/ffmpeg --extra-version=tessus --enable-avisynth --enable-fontconfig --enable-gpl --enable-libaom --enable-libass --enable-libbluray --enable-libfreetype --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libmysofa --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopus --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libx264 --enable-libx265 --enable-libxavs --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-version3 --pkg-config-flags=--static --disable-ffplay&#xA;libavutil      56. 19.101 / 56. 19.101&#xA;libavcodec     58. 33.102 / 58. 33.102&#xA;libavformat    58. 19.102 / 58. 19.102&#xA;libavdevice    58.  4.106 / 58.  4.106&#xA;libavfilter     7. 37.100 /  7. 37.100&#xA;libswscale      5.  2.100 /  5.  2.100&#xA;libswresample   3.  2.100 /  3.  2.100&#xA;libpostproc    55.  2.100 / 55.  2.100&#xA;

    &#xA;

  • pydub - setting the start time of an audio file ? [closed]

    3 février, par tamirg

    I have an audio file, which I create using pydub, and when I use ffmpeg to play I notice it has a start time defined :

    &#xA;

    Input #0, mpeg, from &#x27;audio_117.ts&#x27;:&#xA;Duration: 00:00:09.91, start: 0.500000, bitrate: 66 kb/s&#xA;

    &#xA;

    I am trying to play the same audio file but with different formats. And I notice the start time is different with each format. :

    &#xA;

    mp3 :

    &#xA;

    Input #0, mp3, from &#x27;audio_117.mp3&#x27;:&#xA;  Metadata:&#xA;    encoder         : Lavf61.7.100&#xA;  Duration: 00:00:10.03, start: 0.023021, bitrate: 64 kb/s&#xA;

    &#xA;

    ogg :

    &#xA;

    Input #0, ogg, from &#x27;audio_117.ogg&#x27;:&#xA;  Duration: 00:00:10.00, start: 0.000000, bitrate: 63 kb/s&#xA;

    &#xA;

    Do I have any control over this attribute ? What does it mean exactly ?&#xA;I just notice that if I create an HLS playlist from such file, it skips the beginning, and I wonder if it is related to the start time attribute.

    &#xA;

  • fftools/ffmpeg : move elapsed time counter to the end of the status line

    9 mai, par Marton Balint
    fftools/ffmpeg : move elapsed time counter to the end of the status line
    

    Elapsed time is much less important than the actual progress, and I am guessing
    several ffmpeg CLI frontends use the existing status line for showing progress,
    so putting a new field in the beginning is less optimal anyway.

    Related to ticket #11582.

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

    • [DH] fftools/ffmpeg.c