
Recherche avancée
Autres articles (88)
-
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)
Sur d’autres sites (10568)
-
ffmpeg, ffprobe : don’t "merge" side data into packet data by default
9 mars 2017, par wm4ffmpeg, ffprobe : don’t "merge" side data into packet data by default
Preparation for potentially disabling merged side data by default in the
libs. Do this in particular because it affects fate tests.The changed tests either reflect added packet side data, or the changed
packet size due to merged side data removal reducing the packet size.- [DH] ffmpeg_opt.c
- [DH] ffprobe.c
- [DH] libavformat/tests/seek.c
- [DH] tests/ref/fate/gaplessenc-itunes-to-ipod-aac
- [DH] tests/ref/fate/gaplessenc-pcm-to-mov-aac
- [DH] tests/ref/fate/gaplessinfo-itunes1
- [DH] tests/ref/fate/gaplessinfo-itunes2
- [DH] tests/ref/fate/mov-aac-2048-priming
- [DH] tests/ref/seek/cache-pipe
- [DH] tests/ref/seek/extra-mp3
- [DH] tests/ref/seek/lavf-ts
- [DH] tests/ref/seek/mkv-codec-delay
-
Save live video stream .m3u8 to MP4. Video freezes for a few seconds
11 octobre 2020, par Frodo BagginsI am trying to save in MP4 an .m3u8 live stream using FFMPEG.


The version in use is the following : $ ffmpeg -v
ffmpeg version 3.4.8-0ubuntu0.2 Copyright (c) 2000-2020 the FFmpeg developers built with gcc 7 (Ubuntu 7.5.0-3ubuntu1 18.04)


While the command used for saving the stream in MP4 is the the one below :


ffmpeg -y -i https://stream.m3u8 —map 0 —vcodec copy -acodec copy / output.mp4


The file can be successfully opened and played with VLC even though every 3-5 seconds I see that the video freezes every few seconds.


I wonder if it's something that I am missing in the above command.


I also verified whether the issue was related to the connection in use but it does not seem related.


-
JavaCV FFmpegFrameRecorder save images to video
2 décembre 2024, par Learning from mastersI am a bit confused about the use of JavaCV FFmpegFrameRecorder. I have several byte[] or short[] arrays (depending if my images are 8 or 16 bit) were I have the data related for several images. Now, my idea is to use JavaCPP to send each image to ffmpeg so it creates me a mute video from this collection at the framerate I wish. Up to now I have :



package ffmpeg;

import java.awt.EventQueue;
import java.io.File;
import java.nio.Buffer;
import java.nio.ByteBuffer;

import javax.swing.JFrame;

public class rwa {

 private JFrame frame;

 /**
 * Launch the application.
 */
 public static void main(String[] args) {
 EventQueue.invokeLater(new Runnable() {
 public void run() {
 try {
 rwa window = new rwa();
 window.frame.setVisible(true);

 Frame myframe = new Frame();
 myframe .imageHeight = 100;
 myframe .imageWidth = 200;
 myframe .imageChannels = 1;
 myframe .imageDepth = 8;

 byte[] myimage = new byte[20000];

 //all black
 for (int j = 0; j/FFmpegFrameGrabber grabber = new FFmpegFrameGrabber(dest);
 record.setFrameRate(0.04);
 record.setVideoCodec(13);
 record.setFormat("mp4");
 record.setPixelFormat(0);
 record.setImageHeight(100);
 record.setImageWidth(200);
 record.setVideoBitrate(1000000);

 record.start();
 for (int i=0; i<100; i++){

 if (myimage.length*(1+i)<20000) {
 //this is just for debugging it. I'm creating a different image each frame to see if it works. In practice, I will read in each step the propper image
 for (int j = myimage.length*i; j/record.record(myframe);
 }
 record.stop();
 record.close();

 } catch (Exception e) {
 e.printStackTrace();
 }
 }
 });
 }

 /**
 * Create the application.
 */
 public rwa() {
 initialize();
 }

 /**
 * Initialize the contents of the frame.
 */
 private void initialize() {
 frame = new JFrame();
 frame.setBounds(100, 100, 450, 300);
 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
 }

}




But I am getting errors like





A fatal error has been detected by the Java Runtime Environment :

 

EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000007fefe4511d3, pid=6432, tid=0x000000000000027c





what is wrong there ? And how should I select the bitrate ? My images, at maximum, will be 16bit 1 channel 2048*2048 pixels.



Thanks !