
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (80)
-
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 (...) -
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 -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (4381)
-
FFMPEG : How input data is fed to the decoders
12 février 2014, par samIn FFMPEG, there are many video decoders integrated. One of them is H264. Now, in FFMPEG, which part of the decoder is taking care of providing the decoder with necessary input data to the decoder, so that it can decode it ?
I have gone through most of the code of the decoder, but am not able to find where fread of anything is happening.
All i got to know is there is a file called
file.c
inlibavutils
directory of the FFMPEG source. In this file there is a read() function used. But, how is it that the h.264 decoder conveying this to the ffmpeg to send some data to decode.Any pointers regarding the same will be really helpful to me. Please do provide your valuable suggestions.
Thanks in advance.
-
two data streams into one ffmpeg stream
1er juin 2022, par user5285766I have two data streams, each representing a rabbitmq subscriber. Inside audio and video streams, data is in the form of bytes. Something like :


vp = VideoProcess()
ap = AudioProcess()


async def receive_video_data(message: IncomingMessage):
 async with message.process():
 await vp.process(frame=message.body)


async def receive_audio_data(message: IncomingMessage):
 async with message.process():
 await ap.process(packet=message.body)





I wanted to take this data from each stream and put it in the ffmpeg stream, which would open the port on the service. So that I can broadcast this data to other subsystems in the form of an ffmpeg stream (for example, to broadcast audio and video to my html page). Can you tell me what are the options for this task ?


process = sp.Popen(
 shlex.split(
 f"ffmpeg -i ...."
 ))




-
ffmpeg - How to convert images with exif data ?
16 août 2015, par hongducwbMy command :
for %%a in (".") do ffmpeg -i "%%a" -q:v 3 -quality 100 "newfiles\%% na.jpg"
pauseBut my converted images, it doesn’t have exif data... my command wrong ? Thank
Original jpg - exif data
http://i.stack.imgur.com/ir0bm.jpg