
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 (59)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (8783)
-
ffmpeg : Cut a video to get an output of a given size
9 septembre 2020, par Timoteo EspinozaI'm currently developing a ffmpeg App and I want to divide a video in parts of a given size, for instance, divide a video of 200Mb in parts of 50Mb each one, any idea how to do it so ?
Thanks in advance.


-
How can I get video size from FFmpegStream
14 août 2018, par SSTI am trying to get video metadata from a video using ffmpeg. I am using the following dependency,
<dependency>
<groupid>net.bramp.ffmpeg</groupid>
<artifactid>ffmpeg</artifactid>
<version>0.6.2</version>
</dependency>I am unable to get the video size using the following code snippet,
FFprobe ffprobe = new FFprobe();
FFmpegProbeResult metadata = ffprobe.probe("/tmp/" + filename);
List<ffmpegstream> streams = metadata.getStreams();
for (FFmpegStream stream : streams) {
videoProperties.put("bitrate", stream.bit_rate);
videoProperties.put("frameRate", stream.avg_frame_rate.toString());
videoProperties.put("size", stream.nal_length_size);
videoProperties.put("resolution", stream.width + "X" + stream.height);
videoProperties.put("duration", new Double(stream.duration).toString());
videoProperties.put("codec", stream.codec_name);
videoProperties.put("CodecType", stream.codec_type.name());
}
</ffmpegstream>stream.nal_length_size always returns null. Kindly provide your inputs to get the video size.
Any inputs here really appreciated !
-
avformat/nutdec : Don't shrink packet size manually
20 septembre 2022, par Andreas Rheinhardtavformat/nutdec : Don't shrink packet size manually
It is unnecessary because an av_shrink_packet() a few lines below
will set the size ; furthermore, it is actually harmful, because
av_shrink_packet() does nothing in case the size already matches,
so that the packet's padding is not correctly zeroed.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>