
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (81)
-
Formulaire personnalisable
21 juin 2013, parCette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire. (...) -
Qu’est ce qu’un masque de formulaire
13 juin 2013, parUn masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
Chaque formulaire de publication d’objet peut donc être personnalisé.
Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (5958)
-
Trim Video Functionality in an android App
20 juillet 2020, par snsI want Trim Video Functionality in an android App. I have gone through different post and references but did not found any suitable solution. Can you please tell me any open source repository link ? I would prefer FFMPEG Lib for trim video.



The only source I found is : https://github.com/uday-rayala/video-trimmer, However it doesn't show video thumbnails like Vine/Instagram/vivavideo etc.



I want to show video thumbnails while trimming video, as shown in below screen shot.



Any help would be greatly appreciated. Thanks





-
avformat/http: Add support for Retry-After header
22 avril 2024, par Derek Buitenhuisavformat/http: Add support for Retry-After header
429 and 503 codes can, and often do (e.g. all Google Cloud
Storage URLs can), return a Retry-After header with the error,
indicating how long to wait, asd either a date, or in seconds,
before retrying again. If it is not respected by, for example,
using our default backoff stratetgy instead, chances of success
are very unlikely.Some references :
* https://datatracker.ietf.org/doc/html/rfc6585
* https://datatracker.ietf.org/doc/html/rfc7231#section-7.1.3This adds an AVOption to respect that header.
Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
Building ffplay from FFMPEG on ubuntu [duplicate]
21 avril 2023, par lokit khemkaI am trying to ffplay.c source file from the FFMPEG source code on Ubuntu 22.04 running on WSL Windows 10. I have installed all the library files, probably. I am using the command

gcc -o ffplay ffplay.c -I/home/lokit/ffmpeg/ffmpeg -I/usr/include/SDL2 -lavformat -lavcodec -lavutil -lswresample -lz -lm $(pkg-config --cflags --libs sdl2)


However, I seem to get the many undefined references :
ffplay.c:(.text+0x51c5): undefined reference to 'avfilter_inout_alloc'


I think the compiler is unable to the library files. They are in the folder
/usr/lib/x86_64-linux-gnu
. What do I do so that the compiler can find the library files ? I am very new to linux and C programming in general. Any help will be greatly appreciated.