
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (83)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (12715)
-
Can we provide a raw stream of microphone data Unit8List as a Input to ffmpeg and save the output file as .wav or .mp3
21 juillet 2023, par UdayThe goal is to listen to a live microphone stream (don't want to store it locally)and try to pass it to the RTSP server or to a .mp3 or .wav file locally.


FFmpeg lib :ffmpeg_kit_flutter


Mic Stream lib : https://pub.dev/packages/mic_stream


stream = await MicStream.microphone(
 audioSource: AudioSource.DEFAULT,
 sampleRate: 44100,
 channelConfig: ChannelConfig.CHANNEL_IN_STEREO,
 audioFormat: AudioFormat.ENCODING_PCM_16BIT);

listener = stream!.listen((recordedData) async {
 await processData(recordedData);
});



And in Process data, I want to convert this raw Unit8List data to .mp3 or transmit it to rtsp server live.


any of the commands i want to execute


Future<void> processData(Uint8List data) async {
//var command = '-i "$data" -f rtsp -rtsp_transport tcp -y "$RtspUrl"';


//var command = '-i "$data" "/storage/emulated/0/Download/androidvideo.mp3"';

FFmpegKit.execute(command).then((session) async {
 final returnCode = await session.getReturnCode();
 final logs = await session.getLogs();
 for (var element in logs) {
 print('logs:${element.getMessage()}');
 }
 if (ReturnCode.isSuccess(returnCode)) {
 print('Command execution completed successfully.');
 } else if (ReturnCode.isCancel(returnCode)) {
 print('Command execution completed CANCEL.');
 listener.cancel();
 } else {
 print('Command execution completed ERROR.');
 listener.cancel();
 }
});
}
</void>


-
How to scroll and zoom an image at the same in ffmpeg ?
8 décembre 2024, par neeebzzI have an image of the height 1200px. I want to create a video from this single image.


My final video will be height 450px.


At 0seconds I want to show a 2xZoomed version of the image. Then it in 2 seconds it should zoom out to it's original width. And then it start scrolling to the bottom and then at the end it starts scrolling back. This should be on loop until the end of the video.


Also I am want the this whole image to be faded to 50% since I will overlay another video on top of it.


I am trying to use the zoompan filter but it seems to be not working. Especially I tried using
t
variable in it to change zoom based on duration but it doesn't accept.

-
FFMPEG doesn't decode the first few frames with multithreaded decoding. C++
12 octobre 2022, par Patrick McKeeverSo to get better decoding speeds, I'm setting


av_stream->codec->thread_count = 32;
av_stream->codec->thread_type = FF_THREAD_FRAME;



This greatly improves decoding time, but seems to lose some frames (equaling the amount of threads I set)


For the first 32 or so frames, av_readframe(), and avcodec_send_packet() succeed, but avcodec_recieve_frame() seems to fail.


This seems to result in the last 31 frames to not be decoded, as my loop exits once avcodec_send_packet() fails.


Anyone know how I can get the final frames to also be decoded ? I read something about flushing the buffers, but I'm not really sure how to do that.


Thanks.