
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
L’espace de configuration de MediaSPIP
29 novembre 2010, parL’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
Il permet de configurer finement votre site.
La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (8529)
-
What is the replacement for AVStream::codec and avcodec_decode_audio4 in FFMPEG 3 and above ?
15 janvier 2019, par 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/ -
avfilter_copy_buf_props replacement in ffmpeg 4.2
24 septembre 2019, par M.MahdipourI have upgraded from an old ffmpeg version to ffmpeg 4.2. In my source code, there is a line like this :
ret = av_buffersink_get_buffer_ref(pBufferSinkCtx, &pPicref, AV_BUFFERSINK_FLAG_PEEK);
In the new version,
av_buffersink_get_buffer_ref
is not available. What is the correct replacement ofav_buffersink_get_buffer_ref
? Can I replace it withav_buffersink_get_frame_flags
? -
I-Frames replacement in MPEG DASH
7 mars 2019, par Hangil KangWe are conducting a research which requires to change only I-Frames in the middle of MPEG DASH service.
Based on my knowledge, each segment of a full video contains one I frame and related B and P frames. For our research, we want to do something with only I frames and re-encode the frames into the corresponding segment and during the decoding process, we want to do something with the I frames again.
Any ideas how to do this ?
I appreciate all comments.