
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (67)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (13383)
-
FFMpeg doesn't make a blued video on S3
15 juin 2022, par uekyoI want to make a blued video but after running the below code, 48 bite file just appears. I tried mp3 file to transfer to wave then it worked well. Do you guys have any suggestions to make this solution ?


import json
import os
import boto3

def lambda_handler(event, context):
 # boto3 client
 s3 = boto3.client("s3")

 # replace below configuration
 bucket_name = "testestest"
 key = "video1.mp4"

 # downloading file to /tmp directory within lambda
 lambda_file_path = f"/tmp/{key}"
 lambda_output_file_path = "/tmp/trancoded_english_audio.mp4"

 # downloading file
 s3.download_file(bucket_name, key, lambda_file_path)

 # transcoding
 os.system(f'/opt/ffmpeglib/ffmpeg -i {lambda_file_path} -vf "gblur=sigma=50" -c:a copy {lambda_output_file_path}')

 # uploading transcoded file
 s3.upload_file(
 Bucket=bucket_name,
 Key=lambda_output_file_path.split("/")[-1],
 Filename=lambda_output_file_path,
 )

 return {"statusCode": 200, "body": json.dumps("Hello from Srce Cde!")}



-
How can i make ffmpeg pick the right file ?
20 septembre 2019, par A PersonI’ve been trying to make ffmpeg pick up files from a folder and merge them together.
The code i have for merging the audio and video is :
ffmpeg -i video.m2v -i audio.wav -c copy -map 0:0 -map 1:0 %orginal_name%.mxf
This works but i chnage the
%origninal_name
to the name of the video file.Im currently using a watch folder in FFAStrans to pick the video file up and using custom ffmpeg comand to run the command. The problem i’m having is that i have to specify the video and audio file name.
The folder has over 100 video and audio file and they have the same name so if ita s food show it would be
category_name_episode_HighRandomVariable.m2v
for video
category_name_episode_HighRandomVariableDifferentFromVideo.wav
for audio
example of this is
food_johnsCooking_EP1_High745548.m2v
and
food_johnsCooking_EP1_High8547885874.wav
im using regext as well but dont really know how to use in in FFAStrans but the command looks like this.
$regext("%s_original_name%","(.+)_High")
Does anyone know how i can set it up so i can get the correct audio and video file to merge and at the same time make sure all other videos and audio files are done without me having to change the
ffmpeg -i
to the next video and audio name.Any Help or advice is appreciated.
Many thanks in advance.
-
Fastest way to combine an image and audio file to make a video using ffmpeg
10 septembre 2020, par Ritik Sahu Studenti am using ffmpeg to combine an image and audio to make video with this command from my python program


process = subprocess.Popen('ffmpeg -loop 1 -i "{picture}" -i "{audio}" -c:v libx264 -tune stillimage -c:a aac -b:a 192k -pix_fmt yuv420p -shortest "{out_path}"'.format(picture=picture, audio=audio, out_path=out_path), stdout=subprocess.PIPE, shell=False)



but it is taking very long almost 30-45 minutes on my pc with specifications 1GB Ram and intel xenon processor. is there any way to make this process faster
i am ready to compromise the quality (decent).