
Recherche avancée
Médias (29)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (96)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang 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. -
Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur
8 février 2011, parLa visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
Configuration de la boite multimédia
Dès (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (16310)
-
ffmpeg command not working with VANC data [closed]
3 avril 2024, par Parmesh Kumawatwhen i am running below ffmpeg command


ffmpeg -i "udp://ip:port?localaddr=ip&sources=ip&overrun_nonfatal=1&buffer_size=4000000&fifo_size=1000000" -c copy -map 0 -vsync passthrough -copyts vanc_stream1.ts


the bin_data for VANC is changing/not recognized saving as below output


Input #0, mpegts, from 'vanc_stream_ffmpeg.ts': 
 Duration: N/A, bitrate: N/A 
 Program 1 
 Metadata:
 service_name : Service01 
 service_provider: FFmpeg 
 Stream #0:0[0x100]: Data: bin_data ([6][0][0][0] / 0x0006) 
 Stream #0:1[0x101]: Data: bin_data ([6][0][0][0] / 0x0006)
 Stream #0:2[0x100]: Data: bin_data ([6][0][0][0] / 0x0006) 
 Stream #0:3[0x101]: Data: bin_data ([6][0][0][0] / 0x0006)



It should be saved as


Stream #0:0[0x100]: Data: bin_data ([6][0][0][0] / 0x0006) 
Stream #0:1[0x101]: Data: bin_data ([6][0][0][0] / 0x0006)
Stream #0:2[0x100]: Data: bin_data (VANC / 0x434E4156) 
Stream #0:3[0x101]: Data: bin_data (VANC / 0x434E4156) 



I have tried below tsp command to fetch the stream and it works fine


tsp -I ip port --source ip -O file stream_capture1.ts



i need the same output with ffmpeg command


-
mpeg12dec : do not add stereo3D side data to a non-existing frame
13 février 2014, par Janne Grunaumpeg12dec : do not add stereo3D side data to a non-existing frame
User data is usually coded before slice data. That means the frame
the user data belongs to is not available while parsing the user data.
The stereo3D side data has to use the same indirection over the private
context as pan scan information and A53 captions.Bug-Id:632
-
Determining size of data[0] in AVFrame of FFMPEG
27 mars 2015, par user2742299I am relatively new to FFMPEG andII am trying to allocate AVFrame->data[0] of a video frame to uint8_t* buffer using the following lines of code :
size_t sizeOfFrameData = mpAVFrameInput->linesize[0] * mpAVFrameInput->height;
memcpy(mFrameData, mpAVFrameInput->data[0], sizeOfFrameData);I would like to know if this is a correct way of copying frame data to uint8_t* variable in FFMPEG ?
Thanks