
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (70)
-
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 (...) -
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 (...) -
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 (12966)
-
avcodec/mpeg4videodec : Clear bits_per_raw_sample if it has originated from a previous...
9 juin 2018, par Michael Niedermayeravcodec/mpeg4videodec : Clear bits_per_raw_sample if it has originated from a previous instance
Fixes : assertion failure
Fixes : ffmpeg_crash_5.aviFound-by : Thuan Pham <thuanpv@comp.nus.edu.sg>, Marcel Böhme, Andrew Santosa and Alexandru Razvan Caciulescu with AFLSmart
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
ffmpeg fast seek not working for MP4 over HTTP
27 juillet 2024, par GmanicusI'm attempting to download snapshots from a video provided by the U.S House of Representatives :


https://houseliveprod-f9h4cpb9dyb8gegg.a01.azurefd.net/east/2024-04-11T08-55-12_Download/video_3000000_1.mp4



I am using
fluent-ffmpeg
in Node to execute this command :

ffmpeg('https://houseliveprod-f9h4cpb9dyb8gegg.a01.azurefd.net/east/2024-04-11T08-55-12_Download/video_3000000_1.mp4')
 .inputOption(`-ss 03:33:33`)
 .outputOptions([
 '-vframes 1'
 ])
 .output('test.png')

// Effectively:
// ffmpeg -ss 03:33:33 -i -y -vframes 1 test.png



My intention is to fast-seek to the desired timestamp and take a snapshot over HTTP. However, when doing so, the performance is not great. A snapshot takes about 10s per 3hrs of video and seems to increase fairly linearly at that rate.


However, when using ffmpeg on the same video locally, it's super fast ! Sub-500ms regardless of the desired timestamp.


Is there some magic that could be done via ffmpeg options or perhaps some sort of technique with manual requests to get a snapshot at the desired segment of video more efficiently ?


-
ffmpeg merge_outputs not outputting the final file
30 mai 2020, par EthanoppI am trying to combine multiple independent instrument audio tracks (.ogg files) from a song into 1 final 'song' file that has them all playing simultaneously.



The following properly outputs each independent .mp4 file, but once it's done running, I don't see a final file with everything combined...



import ffmpeg
import os

os.environ['path'] = 'C:\\Program Files (x86)\\ffmpeg\\bin'

song = ffmpeg.input('song.ogg').output('song.mp4').audio
drums = ffmpeg.input('drums_1.ogg').output('drums1.mp4').audio
drums2 = ffmpeg.input('drums_2.ogg').output('drums2.mp4').audio
drums3 = ffmpeg.input('drums_3.ogg').output('drums3.mp4').audio
guitar = ffmpeg.input('guitar.ogg').output('guitar.mp4').audio
vocals = ffmpeg.input('vocals.ogg').output('vocals.mp4').audio
rhythm = ffmpeg.input('rhythm.ogg').output('rhythm.mp4').audio

out = ffmpeg.merge_outputs(song, drums, drums2, drums3, guitar, vocals, rhythm)

ffmpeg.run(out)