
Recherche avancée
Autres articles (37)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (5196)
-
avcodec/libzvbi-teletextdec : fix txt_default_region limits
9 juin 2020, par Marton Balint -
My video has no keyframes, How it is possible ?
10 février 2018, par FazeLWhen I run the following line on my video it only outputs P frames and B frames and no I frame,
ffprobe -select_streams v -show_frames -show_entries frame=pict_type -of csv 00000.MTS
How is it possible for a video not to have I frames.
Here is the link to the video.
According to this tutorial’s definition, P frames are just built upon previous frames, If there is no other frame to build upon how can we use P frames ?
Output offfprobe -i 00000.MTS
is :...
Input #0, mpegts, from '00000.MTS':
Duration: 00:17:13.24, start: 1.040000, bitrate: 16451 kb/s
Program 1
Stream #0:0[0x1011]: Video: h264 (High) (HDMV / 0x564D4448), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Stream #0:1[0x1100]: Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, stereo, fltp, 256 kb/s
Stream #0:2[0x1200]: Subtitle: hdmv_pgs_subtitle ([144][0][0][0] / 0x0090), 1920x1080 -
Custom Reading Callback Function for FFMPEG I/O
19 septembre 2015, par Joe AllenI need to create a custom callback function that can read contents of a file in the form of a
std::string
into auint8_t * buf
. I tried multiple different methods found around the internet but it works on some file and breaks the application on others.Here is the function definition for the callback for the reading function :
static int readCallback(void* opaque, uint8_t * buf, int buf_size)
Here is how I am calling the
readCallback
function from the code :uint8_t * avio_ctx_buffer = NULL;
avio_ctx_buffer = (uint8_t *) av_malloc(avio_ctx_buffer_size);
avio_ctx = avio_alloc_context(avio_ctx_buffer, avio_ctx_buffer_size,0, &audio, &readFunction1, NULL, NULL);audio
is a variable that contains the audio file in the form of astd::string