
Recherche avancée
Autres articles (112)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (15282)
-
bytestream : Make get_bytes_left compatible with overread
14 décembre 2019, par Andreas Rheinhardtbytestream : Make get_bytes_left compatible with overread
bytestream2_get_bytes_left returns an unsigned int ; as a result,
it returns big positive numbers if an overread already happened,
making it unsuitable for scenarios where one wants to allow this
in a controlled way (because the buffer is actually padded so that
no segfaults can happen). So change it to return an ordinary int.Also, bytestream2_get_bytes_left_p has been modified in the same way.
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
encoding by using ffmpeg library
22 août 2013, par MustafeI am currently developing an application by using
ffmpeg
library. I have a problem with encodingpcm/raw
datas. In ffmpeg/encoding_decoding.c source code, at line 146 in this function :buffer_size = av_samples_get_buffer_size(NULL, c->channels, c->frame_size, c->sample_fmt, 0);
buffer_size
is being calculated. My function always returns -22 which states an error. After a little examanation I noticed that in line 1888 atavcodec.h
it is stated as following which shows the reason. SinceCODEC_CAP_VARIABLE_FRAME_SIZE
is set my function returns -22 and my program terminates. In this case the encoding code example inffmpeg
's website also could not work. How can I solve this problem ?encoding: set by libavcodec in avcodec_open2(). Each submitted frame except the last must contain exactly frame_size samples per channel. May be 0 when the codec has CODEC_CAP_VARIABLE_FRAME_SIZE set, then the frame size is not restricted. decoding: may be set by some decoders to indicate constant frame size
-
understand what is the GOP size (i-frame/p-frame ratio) in a video
29 avril 2012, par nkinti am doing stuffs with a video in action script and i need to seek a video to acertain frame. according to the reference, using NetStream.seek i can seek only to the nearest k-frame :
Seeks the keyframe (also called an I-frame in the video industry) closest to the specified location. The keyframe is placed at an offset, in seconds, from the beginning of the stream.
Video streams are usually encoded with two types of frames, keyframes (or I-frames) and P-frames. A keyframe contains an entire image, while a P-frame is an interim frame that provides additional video information between keyframes. A video stream typically has a keyframe every 10-50 frames.and so i need to understand how many p-frame and i-frame there are in a video encoded in .f4v format.
i am on mac and on ubuntu, i don't care about the tool to use (mayebe some ffmpeg/mencoder call should be perfect), any advice ?