
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 (87)
-
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 (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (9994)
-
How to specify the path of the ffmpeg binary
24 novembre 2015, par zaki ahmadSame question almost
What is the correct path video using Streamio FFMPEG on RailsIn it they say
This gem assumes ffmpeg is available in your PATH. If it is not in your PATH, You need to specify the path of the ffmpeg binary.
FFMPEG.ffmpeg_binary = '/usr/local/bin/ffmpeg'
I follow this gem https://github.com/streamio/streamio-ffmpeg , then I do this :
movie = FFMPEG::Movie.new("#{self.videod.path}")
But the error is
Errno::ENOENT: No such file or directory - the file '/home/des0071/practise/test_api/public/system/ads/videods/000/000/002/original/SampleVideo_1080x720_1mb.mp4' does not exist
How I specify ffmpeg path ?What I do ?
-
How do I make sure that something is in Path on Github Actions ?
7 juillet 2024, par Alarm-1202I'm having trouble with my GitHub Action to test a Python module on Windows. To test the module, I need to install ffmpeg and make sure that it's on Path but no matter what I do in the workflow file or the Python script that installs ffmpeg, I can't seem to get it to appear on Path.


I'm installing ffmpeg through this script, which uses this approach to add it to Path :


def add_path_to_environment(path):
 '''Adds a filepath to the users PATH variable after asking the user's consent'''
 os_path = os.environ['path']
 if not os_path.endswith(';'):
 os_path += ';'
 command = f'[Environment]::SetEnvironmentVariable("Path","{os_path}{path}","User")'
 print('\n\n')
 print(command)
 print()

 try:
 subprocess.check_output(['powershell', command])
 except subprocess.CalledProcessError as e:
 print(e.stdout.decode())



My latest attempt in the workflow is to use this :


[Environment]::SetEnvironmentVariable("Path", $env:Path + ";C:\FFMPEG\bin", [System.EnvironmentVariableTarget]::User)
echo $env:Path
ffmpeg -version



Which I found here, but I've also tried just using
$env:Path += ";C:\FFMPEG\bin"


Does anyone have any suggestions for how I could get ffmpeg on Path ?


-
Bypass validation for buttons with 'formnovalidate' attribute (same as class="cancel"). Closes gh-623
12 février 2013, par paulcichonskim jquery.validate.js m test/index.html m test/test.js Bypass validation for buttons with 'formnovalidate' attribute (same as class="cancel"). Closes gh-623