
Recherche avancée
Autres articles (60)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
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.
Sur d’autres sites (7158)
-
Using Ffmpeg to overlay logo on videos increases apk size drastically.How to reduce size ?
22 septembre 2018, par Simran ChawlaUsing ffmpeg android java increased apk size drastically from 6 mb to 24 mb.Is there any workaround or alternative to overlay logo on video android ??I used aar file for importing this library following this link http://writingminds.github.io/ffmpeg-android-java/
-
How to combine audio and output with python
27 octobre 2023, par Jojo MomoThis question was asked a few times a couple of years ago, but none of the solutions seem to work.


This code creates a video
output.mp4
which is the same asvideo.mp4
, but it doesn't have any sound fromaudio.mp3
even whenvideo.mp4
has sound in the first place.

import moviepy.editor as mp

audio = mp.AudioFileClip("audio_output/audio.mp3")
video1 = mp.VideoFileClip("video.mp4")
final = video1.set_audio(audio)

final.write_videofile("output.mp4")



If anyone knows of alternative methods without using moviepy please let me know ! (Or if you know why this isn't working)


-
"sws_scale_frame" function not found in libswscale/swscale.h
28 avril 2023, par lokit khemkaI am trying to scale a video from 1080p to 480p. However, whenever I am calling
sws_scale_frame()
function, I keep getting undefined reference. When I checked the header file, I found that the function signature is missing from the header file. I have installedlibswscale
using the commandsudo apt install libswscale-dev
. If this is not the right appoarch, can anyone help with how to get the function or alternative if this is deprecated ?

P.S. My build options in VS Code are as follows :
"-lavformat","-lavcodec","-lswscale","-lavutil", "-lm", "-lpthread"


EDIT : Version of libswscale-dev is
7:4.4.2-0ubuntu0.22.04.1
if needed.