
Recherche avancée
Autres articles (93)
-
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 (...) -
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. -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...)
Sur d’autres sites (8768)
-
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