
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (70)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (3048)
-
FFMPEG (Input 8K AAC -> (AAC FLV) youtube streaming noise
17 septembre 2017, par Biswa DasHello I run a streaming encoder for a non profit cause. Chosen FFMPEG as it’s very simple and doing the job near perfectly however the audio is noisy popping and cracking. Video is crystal clear.
ffmpeg version N-86950-g1bef008 Copyright (c) 2000-2017 the FFmpeg developers
built with gcc 7.1.0 (GCC)Here is my command.
ffmpeg -rtsp_transport tcp -i $RTSP_SRC -vcodec copy -af "volume=12dB" -ar 8000 -acodec aac -f flv rtmp://a.rtmp.youtube.com/live2/$DEST_KEY
However when I just play the stream the noise levels are quite acceptable.
ffplay -rtsp_transport tcp -i $RTSP_SRC
What I have tried so far.
- Change input audio sampling from 8K to 16K (that’s all is supported currently). It made the noise problem much worse. I can’t change it to a native FLV sampling(44100 or 22050 or 11025) at least not yet, the integrated rtsp stream does not support it.)
- My working theory is during resampling stream noise is getting boosted. So to eliminate that I tried audio copy codec even then there is no significant improvement.
-
ffmpeg : Split MP3 in 1 second chunks fast ?
30 décembre 2019, par NikoI want to split mp3 into one second chunks fast. I have the mp3 already in memory (in crystal lang) and want to process it further (so I need it in memory after splitting). I got two possiblities working :
- Saving the file to ram disk, calling
ffmpeg -segment
on it, reading all the segement files into memory. - Piping the file into
ffprobe --show_frames
and parsing thepkt_pos
fields from the result.
Both are slow about one second due to unnescessary overhead. Writing to disk and reading hundrets of files in the first case, outputting a lot of unneeded information about a lot of unneeded frames in the second.
I see two possibilities to improve :
- a custom filter for
ffmpeg
that outputs the segements with a separator to stdout. - a custom filter for
ffprobe
similar to--show_frames
but with aframestep
parameter (the existing framestep filter only seems to work with video files) which outputs only the byte offset of the frames.
Perhaps I’m missing possibilites with the existing filters. Perhaps there is a tool better fitted for my needs than ffmpeg. I’d be happy for any hints.
- Saving the file to ram disk, calling
-
avcodec/mediacodecdec : add workaround for buggy amlogic mpeg2 decoder
26 avril 2018, par Aman Guptaavcodec/mediacodecdec : add workaround for buggy amlogic mpeg2 decoder
I tested the previous mediacodec changes on seven different Android
TV devices, with both mpeg2 and h264 content. All except one worked
as expected. The exception was the MiBox3 running Android 6.0.1,
where playback would freeze on a frame every few seconds. I tested
two other AMLogic devices with newer Android versions that did not
show the same problem. H264 decoding on the MiBox3 was also not affected,
so this workaround applies only to OMX.amlogic.mpeg2.decoder.awesome
on Android API22.There is a rumor that Xiaomi is planning to release Android Oreo for
the MiBox3, so I will revisit in a few months to confirm whether this
is specific to os/driver version or the chipset used in that device.Signed-off-by : Aman Gupta <aman@tmm1.net>
Signed-off-by : Matthieu Bouron <matthieu.bouron@gmail.com>