
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (102)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...)
Sur d’autres sites (14211)
-
Could not resolve com.android.tools.build:gradle:4.0.1
9 juillet 2021, par AKclownwhen I installed react-native-ffmpeg and executed react-native run-android, the following error was reported



I used the newly created react native project. When I haven’t installed this package, everything is normal.
Unfortunately, when I installed this package without any operation, I got an error.
Can you give me some suggestions?


Expected behavior
react-native run-android success


Current behavior
react-native run-android failed


Screenshots
This is all my dependencies, this is the new start of react native



Environment
"react" : "17.0.1",
"react-native" : "0.64.2",
"react-native-ffmpeg" : "^0.5.1"


Please give me some suggestions, thank you very much, it has troubled me for a long time


-
"fixing" RTL texts from logical to visual, before embedding in video as subtitles with ffmpeg
13 mai 2024, par Berry TsakalaI'm searching for the correct way to pre-process my subtitles files before hard-coding them into video clips.


Currently, ffmpeg does not process RTL (right-to-left) languges properly ; I have detailed the problem here :
https://superuser.com/questions/1679536/how-to-embed-rtl-subtitles-in-a-video-hebrew-arabic-with-the-correct-lan


However, there could be 2 programmatic solutions :


- 

- adding certain unicode control characters can fix (or partially fix) the text, which is then fed into ffmpeg, giving good results.




- 

- character 0x200F at the end of a hebrew clause, after punctuation
- character 0x202B, I haven't yet learned its usage.






- 

- I can edit the text so that it will produce the correct results on ffmpeg.
But that requires smart BiDi algorithm.




Do you know how to preprocess such text ?


(this is NOT an encoding question. It is about RTL/LTR algorithm to use.)


Thank you


-
How can I add a background image while combining *.png files using ffmpeg
12 février 2023, par Walt HowardI'd like to add a background image while combining *.png files to make an mp4 file, using ffmpeg.


Currently, I have to first create an animated gif using imagemagick convert, like this :


convert -delay ${DELAY} -dispose Background *.png -coalesce null: ${BACKGROUND} -compose dstOver -layers composite -layers optimize -loop 0 planet.gif



Then I process that animated gif using ffmpeg to optimize it :


ffmpeg -i planet.gif -movflags faststart -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" planet.mp4



Which sort of works, but is slow and has a problem. I craps out if I go above about 100 input files, and creates animated gifs that are basically just white screens.


ffmpeg alone works great, and 100 times faster stitching the *.png files together


ffmpeg -framerate 10 -pattern_type glob -i '*.png' -movflags faststart -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" planet.mp4


But, no background there. I haven't found anyway to add that background. Does ffmpeg even support such a thing ?