
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (43)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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" ; -
MediaSPIP Init et Diogène : types de publications de MediaSPIP
11 novembre 2010, parÀ l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)
Sur d’autres sites (4682)
-
Add multiple overlapping audio files to a video [duplicate]
15 juin 2024, par JTinkersEssentially, I'm trying to achieve this :



The only problem with that is - I'm using ffmpeg programatically, meaning - there won't be any predefined sounds at predefined times, instead - I have code that generates these and executes ffmpeg with the following arguments :


-f concat -r 60 -safe 0 -i {VIDEO_OUTPUT_PATH}/{fileName}.txt
{audioArgs}
-c:v libx264 -preset fast -crf 23 -vf \"scale=1080:1920,format=yuv420p\"
-c:a aac -b:a 192k
-af \"afade=t=out:st={totalSeconds - 3}:d=3\"
{mapArgs} 
-async 1 -movflags +faststart -t {totalSeconds} {outputPath}"



Presumably, if there are 3 sounds (like on the image), mapArgs will be replaced with :


-map 0 -map 1 -map 2 -map 3



and audioArgs will be replaced with :


-itsoffset 0 -i bg.mp3 -itsoffset 13 sound1.mp3 -itsoffset 37 sound2.mp3



However, it seems to be playing background music and the video only - no other sounds.


-
FFMPEG run time error
17 mai 2014, par saifI added FFMPEG to the references and the build is succeeded but when i run this error is appear
Could not load file or assembly ’AForge.Video.FFMPEG.dll’ or one of
its dependencies. The specified module could not be found.Looked at the Aforge page
http://www.aforgenet.com/framework/docs/html/4ee1742c-44d3-b250-d6aa-90cd2d606611.htm and Find this..Make sure you have FFmpeg binaries (DLLs) in the output folder of your
application in order to use this class successfully. FFmpeg binaries
can be found in Externals folder provided with AForge.NET framework’s
distribution.But I did not understand the meaning of it and how can I do that whether it is the reason of error
-
avcodec/cuviddec : Add support for decoding HEVC 4:4:4 content
7 octobre 2018, par Philip Langdaleavcodec/cuviddec : Add support for decoding HEVC 4:4:4 content
This is the equivalent change for cuviddec after the previous change
for nvdec. I made similar changes to the copying routines to handle
pixel formats in a more generic way.Note that unlike with nvdec, there is no confusion about the ability
of a codec to output 444 formats. This is because the cuvid parser is
used, meaning that 444 JPEG content is still indicated as using a 420
output format.