
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (111)
-
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 -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (9829)
-
OpenCV 4.5.2 VideoWriter produces “can't find starting number” error
28 avril 2021, par Peter KronenbergThere are several issues with similar names, but none of them seem to have a definitive answer. Using the last version of OpenCV 4.5.2 with Java on Windows 10. Below is a short reproducible test case which results in


[ERROR:0] global C:\build\master_winpack-bindings-win64-vc14-static\opencv\modules\videoio\src\cap.cpp (589) cv::VideoWriter::open VIDEOIO(CV_IMAGES): raised OpenCV exception:

OpenCV(4.5.2) C:\build\master_winpack-bindings-win64-vc14-static\opencv\modules\videoio\src\cap_images.cpp:253: error: (-5:Bad argument) CAP_IMAGES: can't find starting number (in the name of file): C:/testfiles/output.avi in function 'cv::icvExtractPattern'



Here is the code :


public class OpenCVError {

 public static void main(String[] args) {
 System.loadLibrary(Core.NATIVE_LIBRARY_NAME);

 final int fourcc = VideoWriter.fourcc('m', 'j', 'p', 'g');
 final double fps = 30.00;
 Size frameSize = new Size(1080, 1920);
 VideoWriter videoWriter = new VideoWriter("C:/testfiles/output.avi", fourcc, fps, frameSize, true);
 }
}



Update


Found out from https://forum.opencv.org/t/error-in-java-cant-find-starting-number-in-the-name-of-file/3014 that I seem to be missing
opencv_videoio_ffmpeg452_64.dll

I am using the Maven distribution at

<dependency>
 <groupid>org.openpnp</groupid>
 <artifactid>opencv</artifactid>
 <version>4.5.1-2</version>
 </dependency>



which doesn't appear to have this file. I tried adding the file to my classpath (using IntelliJ), but it still doesn't seem to work.


Anyone have any ideas ? Why isn't this file part of the openpnp distribution ?


-
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.