
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
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
Autres articles (46)
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)
Sur d’autres sites (3500)
-
Content retreived from glacier vault , how to feed into ffmpeg or ffprobe ?
22 septembre 2021, par maddy23Wrote a python program to retreive the whole archive file from the glacier vault , from get_job_output.py


Further from the respobe body from get_job_output.py , loaded into a varible.


responese = vaultName='vualt_name',
 jobId='UBSW2BjtzM8i868SD97sVS972-Ifz2tVOOW2BjtzM8ifceipTvN-2RgDJG5JjWgIw1BZ9Bv_v9NJTg7OadEupjTFO',
)

content = respone['body'] --> which is an streamingbody 



further i need to feed the streambody cotent into ffmpeg cmd


ffprobe -i "content"



Above cmd returns :
TypeError : can only concatenate str (not "StreamingBody") to str


I dont want to use StreamingBody.read(response['body']) , which basically loads the whole file into RAM.
what are other ways to handle the streamingbody from respone and feed to other programs.
or is there a way to generate a http://link for the


-
Elevenlabs API unable to find ffmpeg on device (Python 3.11)
3 août 2023, par Ben DyerWhen I'm trying to generate and play some speech using the elevenlabs API, the following text occurs at the very beginning of the program :

Couldn't find ffmpeg or avconv - defaulting to ffmpeg, but may not work

This is despite ffmpeg being installed correctly, and being recognized by Powershell. The relevent code is below.

import openai, requests, ffmpeg, pydub
from elevenlabs import *

set_api_key('i have my key here')
pydub.AudioSegment.converter = 'C:/ffmpeg/bin/ffmpeg.exe'

audio = generate(
 text=(response["choices"][0]["message"]["content"]), #<--- This is correct, and grabs the text I need.
 voice="Charlie",
 model='eleven_multilingual_v1'
 )

play(audio)



I want it to simply play the audio generated through my default Windows playback device, but am instead met with the crash error upon playback ;
ValueError: ffplay from ffmpeg not found, necessary to play audio.


-
Ubuntu ffmepg watermark position
8 juillet 2015, par Arnas Pečelisso I have command :
ffmpeg -i prepared/video.mp4 -i units/video_watermark.png -filter_complex overlay=main_w-overlay_w-10:main_h-overlay_h-10 -codec:a copy moved/video_test.mp4
which should describe watermark position on bottom right but the watermark appears on the bottom center. what i’m doing wrong ?
also I tried this command :
ffmpeg -i prepared/video.mp4 -vf "movie=units/video_watermark.png [watermark]; [in][watermark] overlay=main_w-overlay_w-10:main_h-overlay_h-10 [out]" moved/output.mp4
but with it watermark was not added, video was corrupted becouse of response :
[aac @ 0x3556540] The encoder ’aac’ is experimental but experimental codecs are not enabled, add ’-strict -2’ if you want to use it.
where is the clue ?