
Advanced search
Medias (91)
-
#3 The Safest Place
16 October 2011, by
Updated: February 2013
Language: English
Type: Audio
-
#4 Emo Creates
15 October 2011, by
Updated: February 2013
Language: English
Type: Audio
-
#2 Typewriter Dance
15 October 2011, by
Updated: February 2013
Language: English
Type: Audio
-
#1 The Wires
11 October 2011, by
Updated: February 2013
Language: English
Type: Audio
-
ED-ME-5 1-DVD
11 October 2011, by
Updated: October 2011
Language: English
Type: Audio
-
Revolution of Open-source and film making towards open film making
6 October 2011, by
Updated: July 2013
Language: English
Type: Text
Other articles (35)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 February 2011, byMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
La file d’attente de SPIPmotion
28 November 2010, byUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter; id_document, l’identifiant numérique du document original à encoder; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement; objet, le type d’objet auquel le (...) -
Le plugin : Podcasts.
14 July 2010, byLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 video/mp4 (...)
On other websites (7147)
-
Looking for a RTSP-server that can listen on a configured port and support subtitle or text streaming
15 August 2021, by GotItI'm looking for a RTSP-server that can listen on a configured port (8554 for example), then if I run FFmpeg with:




ffmpeg -f v4l2 -i /dev/video0 -c:v libx264 -intra -an -f rtsp
-rtsp_transport tcp rtsp://192.168.1.10:8554/test




Then the RTSP-server will RECORD the video, and to play it, I just need to run it with:




ffplay -i rtsp://192.168.1.10:8554/test




I need the RTSP-server to support TCP transport and H264 video encoder and any of subtitle or text encoder (mov_text, T.140, etc.) and stream from a live-video.


Live555 only streams from files (VOD).
simple-rtsp-server only support video and audio, no subtitle.
I'd prefer something open-source. Thank you so much.


-
avcodec/rasc: Check that the number of moves is less than or equal the number of...
15 December 2018, by Michael Niedermayeravcodec/rasc: Check that the number of moves is less than or equal the number of pixels
Fixes: OOM
Fixes: 10307/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RASC_fuzzer-5393974559244288Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> -
What is the replacement for AVStream::codec and avcodec_decode_audio4 in FFMPEG 3 and above?
15 January 2019, by Manish MadugulaI am a complete beginner to FFMPEG and audio decoding. I want to read any kind of audio file and convert it into raw audio data. The code that I was using works fine on FFMPEG 2.8 but in 3 and above it shows the following error.
AVstream::codec and avcodec_decode_audio was declared depreciated.
I have no option of using 2.8 as I couldn’t find FFMPEG 2.8 binaries for windows anywhere in web.
I want to know how to call the following functions in the later versions.AVCodecContext* codec = stream->codec
format->streams[i]->codec->codec-type == AVMEDIA_TYPE_AUDIO
avcodec_decode_audio4(codec,frame,&gotFrame,&packet)I am using code from the following site -
https://rodic.fr/blog/libavcodec-tutorial-decode-audio-file/