
Recherche avancée
Autres articles (58)
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
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 (6945)
-
How to proportional(Aspect Ratio) image using ffmpeg function ?
16 octobre 2020, par Vipul JethvaWhy following function is not execute in php ? Same function is using for video. Please correct me if anything wrong with syntax. I have to proportion watermark as per image width and height. If there is any other command then please help me.


$command = "ffmpeg -i input.jpg -i watermark.png -filter_complex 
 \"[1:v][0:v]scale2ref=(W/H)*ih/8:ih/8[wm][base];[base][wm]overlay=10:10\"
 -pix_fmt yuv420p -c:a copy output.jpg";

exec($command);



-
Revision 2e5f0084f3 : Adding model_rd_for_sb function. Iterating over all planes in the loop instead
6 mai 2013, par Dmitry KovalevChanged Paths :
Modify /vp9/encoder/vp9_rdopt.c
Adding model_rd_for_sb function.Iterating over all planes in the loop instead of custom y,uv code inside
handle_inter_mode function.Change-Id : I301f9276d6d544c2fd7203d84f1318ac80ea625d
-
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