
Recherche avancée
Autres articles (35)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (7356)
-
avcodec/nvenc : hardcode color characteristics for internal RGB2YUV conversion
6 août 2022, par Timo Rothenpieleravcodec/nvenc : hardcode color characteristics for internal RGB2YUV conversion
nvenc does not appear to use these values as inputs for its built in RGB
to YUV conversion, but instead sets them on the output as-is.Testing indicates the input is expected to be sRGB, with the output
ending up as limited range bt.470. -
Linux job queue for FFmpeg conversion [closed]
3 février 2013, par Rik BauwensI'm starting up a Debian web server which will host a website where users can upload video files and play them.
Hence, the video files need to be converted into the proper format (mp4, ogg, webm) for compatibility with the different browsers out there.
So far, I've written a bash script which does the trick using FFmpeg. The problem is, when a lot of users upload a video at the same time, my web server will get very slow.
I'm looking for a short and easy solution which queues different calls to the conversion script, so only one instance can run at the same time. I've tried using the batch command, but I can't find very much information on how to use it. I've also considered creating a named pipe, also without success.
Any help much appreciated
-
FFMPEG video conversion to MP4 works everywhere except in iOS Safari/Chrome
25 novembre 2023, par LinesofcodeI use the following code to convert
.webm
videos to.mp4
using the FFMPEG library :


ffmpeg -i video.webm -vcodec h264 -acodec aac -strict experimental video.mp4




This works flawless when playing the converted video in Windows (Chrome/Firefox), Mac (Safari/Chrome), Android (Chrome) but it does not work when watching through iOS (Safari/Chrome).



At first I thought it might be an
mp4
problem ? But then I played without any problems in my iOS Safari this video https://www.w3schools.com/html/mov_bbb.mp4 which is also amp4
.


So this tells me that something is not quite right about the conversion.



What am I missing in the conversion ?



Log from PuTTy : https://pastebin.com/VLSPL0nC