
Recherche avancée
Autres articles (64)
-
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" ; -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (6730)
-
Anomalie #4306 : Erreur détection code mal formé
6 mars 2019, par jluc -décidément la balise code se rebelle. En pseudo html c’est :
code /onglet /code cadre $onglet2 = ($quoi == ’actifs’ ? ’plugins_actifs’ : ’admin_plugin’) ;Retour ligne automatique /cadre
Ou sinon voir là : https://contrib.spip.net/ecrire/?exec=article&id_article=5117
-
How To Run Multiple Code ffmpeg in Macbook Terminal Using bat file ?
26 juillet 2021, par ChhengRavyI have a problem to run bat file in Macboook Terminal. I created file bat that has code below.


ffmpeg -i input1.mp4 -vf hflip -c:a copy output1.mp4
ffmpeg -i input2.mp4 -vf hflip -c:a copy output2.mp4
ffmpeg -i input3.mp4 -vf hflip -c:a copy output3.mp4



If I run that bat file in window Command Promt I will get three outputs(output1,output2,output3). It work fine.


But If I run it in terminal Mackbook by drag that file to terminal I get only output3. I don't know why in Macbook It works only the last code.


Please Anyone knows about this help me. I was stuck a few days already.


Thank you so much for your help.


-
FFmpeg exit with error code 1 when using .bat file
30 avril 2022, par Taqi VaheedI use a .bat file to batch attach audio tracks to movies. Everything was good but in last days the ffmpeg stopped working correctly. When I restart the pc it work again but after some task the error come back. I tried to reinstall the windows but the problem does not solved.


here is my ffmpeg code :


for %%a in ("*.mp4*") do ffmpeg -y -i "%%a"^
 -itsoffset 0^
 -i %%~na.mp3 -i cover.jpg^
 -map 2 -map 0:v:0 -disposition:0 attached_pic^
 -map 1:a:0 -disposition:a:0 default^
 -map 0:a:0 -disposition:a:1 none -sn^
 -metadata title=""^
 -metadata:s:a:0 handler_name="Persian"^
 -metadata:s:a:1 handler_name="English"^
 -metadata:s:v:0 handler_name="English"^
 -metadata:s:a:0 language=per^
 -metadata:s:a:1 language=eng^
 -c copy "Final\%%~na.mp4"