
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (107)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 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, parMediaSPIP 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 2013Jolie 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 aksh02I'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
</udid>


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


-tune zerolatency



but this too has no effect.
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


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



ffmpeg -version


ffmpeg version N-92246-gc2ac3b8e6a-tessus https://evermeet.cx/ffmpeg/ Copyright (c) 2000-2018 the FFmpeg developers
built with Apple LLVM version 10.0.0 (clang-1000.11.45.2)
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
libavutil 56. 19.101 / 56. 19.101
libavcodec 58. 33.102 / 58. 33.102
libavformat 58. 19.102 / 58. 19.102
libavdevice 58. 4.106 / 58. 4.106
libavfilter 7. 37.100 / 7. 37.100
libswscale 5. 2.100 / 5. 2.100
libswresample 3. 2.100 / 3. 2.100
libpostproc 55. 2.100 / 55. 2.100



-
pydub - setting the start time of an audio file ? [closed]
3 février, par tamirgI have an audio file, which I create using pydub, and when I use ffmpeg to play I notice it has a start time defined :


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



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


mp3 :


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



ogg :


Input #0, ogg, from 'audio_117.ogg':
 Duration: 00:00:10.00, start: 0.000000, bitrate: 63 kb/s



Do I have any control over this attribute ? What does it mean exactly ?
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.


-
fftools/ffmpeg : move elapsed time counter to the end of the status line
9 mai, par Marton Balintfftools/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>