
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (89)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (16183)
-
Where is a binary file once it's been built (for ffmpeg) ?
28 juillet 2021, par James SkidmoreI need to build ffmpeg for Mac for converting MOV to FLV in a Java application. I made and installed LAME and then FFMPEG, but I'm confused as to what file I should grab to include with the Java application. What is the binary file ? The previous version that I grabbed from the source of ffmpegX was 10mb in size, but the file that's in my /usr/local/bin is only 0.1mb. Is that the right file, or what do I need to include ?



I'm not too savvy with anything that needs to be typed into Terminal, so excuse the lack of technical jargon !


-
FFMPEG - Windows Batch - Loudnorm Print to File
22 août 2023, par Atlantis0813I would like to have the first three minutes of some M3u8 urls from a text file checked for loudness and have the results written to a file.


The following Windows batch code works in the Windows terminal. But the log.txt remains empty.


for /F "tokens=*" %%A in (input.txt) do ffmpeg -i %%A -ss 0 -t 180 -af loudnorm=I=-16:TP=-1.5:LRA=15:print_format=summary -f null - >> log.txt


Expect Output appended to file.


-
Creating a m3u8 clip from another m3u8 file
14 janvier 2021, par Alan

I wanna create a m3u8 clip from another m3u8 file.
This is the command line I'm giving on terminal

ffmpeg -ss 6.2 -i test.m3u8 -y -t 45 -profile:v baseline -s 640x360 -level 3 -start_number 0 -hls_list_size 0 -f hls output_test.m3u8

It is giving me an output of a new m3u8 clip of 45s but nothing happens in the first 3-4 seconds.
Anything I'm missing ?need help