
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (77)
-
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (9529)
-
lavc/bmp : Avoid a heap buffer overwrite for 1bpp input.
26 mars 2019, par Carl Eugen Hoyos -
Does GeForce support GPU-accelerated video processing with FFmpeg ?
8 mars 2017, par shintaroidOn this page, it says "GeForce" is supported
HW accelerated encode and decode are supported on NVIDIA
GeForce
, Quadro, Tesla, and GRID products with Fermi, Kepler, Maxwell and Pascal generation GPUs.But I cannot find
GeForce
in the listed matrix on the same page. So doesGeForce
support or not ? -
couldn't render an audio after extracting the audio from the video
3 juin 2022, par Rama Rannehhi … I am trying to use FFmpegFrameRecorder to extract an audio from a video using this code


FFmpegFrameGrabber frameGrabber = new FFmpegFrameGrabber(mp4Path);
 frameGrabber.start();
 FFmpegFrameRecorder recorder = new FFmpegFrameRecorder(new 
 File("C:/Users/ASUS/Desktop/audio.aac"),audioChannels);
 recorder.setAudioMetadata(frameGrabber.getAudioMetadata());
 recorder.setFrameRate(frameGrabber.getFrameRate());
 recorder.setTimestamp(frameGrabber.getTimestamp());
 recorder.start(frameGrabber.getFormatContext());

 Frame f=null;
 //get audio sample and record it
 while ((f = frameGrabber.grabSamples()) != null) {
 recorder.record(f);
 }
 frameGrabber.stop();
 recorder.stop();
 recorder.close();
 LOGGER.info("C:/Users/ASUS/Desktop/audio.aac");



but when I run it it gives me in terminal :


Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'C:/Users/ASUS/Desktop/Lou.mp4':
Metadata:
major_brand : isom
minor_version : 512
compatible_brands: isomiso2avc1mp41
encoder : Lavf58.76.100
Duration: 00:00:39.10, start: 0.000000, bitrate: 116 kb/s
Stream #0:0[0x1](und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p(tv, bt709, 
progressive), 256x144 [SAR 1:1 DAR 16:9], 63 kb/s, 23.98 fps, 23.98 tbr, 90k tbn (default)
Metadata:
 handler_name : VideoHandler
 vendor_id : [0][0][0][0]
 Stream #0:1[0x2](und): Audio: aac (HE-AAC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 46 kb/s (default)
Metadata:
 handler_name : SoundHandler
 vendor_id : [0][0][0][0]
 [aac @ 000000001afd7080] noise_facs_q 31 is invalid
 [aac @ 000000001afd7080] noise_facs_q 31 is invalid
 [aac @ 000000001afd7080] noise_facs_q 31 is invalid
 [aac @ 000000001afd7080] noise_facs_q 31 is invalid
 [aac @ 000000001afd7080] noise_facs_q 31 is invalid
 [aac @ 000000001afd7080] noise_facs_q 31 is invalid
 [aac @ 000000001afd7080] noise_facs_q 31 is invalid
 [h264 @ 000000001ad8bc40] mmco: unref short failure
 [h264 @ 000000001ad8bc40] mmco: unref short failure
 [h264 @ 000000001ad8bc40] mmco: unref short failure
 [h264 @ 000000001ad8bc40] mmco: unref short failure
 [h264 @ 000000001ad8bc40] mmco: unref short failure
 and so on ...
 Output #0, adts, to 'C:\Users\ASUS\Desktop\aud.aac':
 Metadata:
 encoder : Lavf59.16.100
 Stream #0:0: Audio: aac (HE-AAC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 46 kb/s



and when I try to run the audio it is not running
what's the wrong thing I did ?