
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (61)
-
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 (5919)
-
Closed Captioned TS to Open Captioned MP4 (w/Accurate Positioning)
19 décembre 2019, par Cody GreeneI am attempting to convert closed captioned MPEG TS files to open captioned MP4s using ffmpeg.
I am having trouble retaining the positioning of the captions.
The closest I’ve gotten is with this simple script :
ffmpeg -f lavfi -i movie=input.ts[out+subcc] -map 0:1 output.ass
ffmpeg -i input.ts -vf "subtitles=output.ass" -c:v libx264 -pix_fmt yuv420p -b:v 8000k -c:a aac -b:a 192k target.mp4The result of this is the open captions are shifted FAR left and the bounding box draws black over the empty spaces left of wherever text is centered (ssa adds "/h", easily removed with sed, but then it’s left-aligned captions only)
However, the vertical position, overall size, etc. all look great.
Most subtitle formats force everything to the bottom center, but I’m trying to mimic the look of an open caption on the mp4 output.
I’ve tried several formats with ccextractor and ffmpeg, but no luck. Any ideas what I’m doing wrong ?
-
[Turmux][ffmpeg] encounter "can't open stat file" when use "-pass"
15 février 2020, par Jackal ZhaoI installed ffmpeg in turmux, in my home directory, ran :
ffmpeg -y -i /sdcard/FFMPEG/in.mp4 -c:v libx264 -b:v 2600k -pass 2 -c:a copy /sdcard/FFMPEG/out3.mp4
the error bumps :
ratecontrol_init: can't open stats file
if I enter
/sdcard/FFMEPG
folder first, then run
ffmpeg -y -i /sdcard/FFMPEG/in.mp4 -c:v libx264 -b:v 2600k -pass 2 -c:a copy /sdcard/FFMPEG/out3.mp4
the task will run successfully.then I went back to turmux home directory, ran
ffmpeg -y -i /sdcard/FFMPEG/in.mp4 -c:v libx264 -b:v 2600k -pass 2 -c:a copy /sdcard/FFMPEG/out3.mp4
, error still happens.so I then added
-strict -2 -passlogfile /tmp/mydummy
and ran ran
ffmpeg -y -i /sdcard/FFMPEG/in.mp4 -c:v libx264 -strict -2 -passlogfile /sdcard/FFMPEG/ -b:v 2600k -pass 2 -c:a copy /sdcard/FFMPEG/out3.mp4
, and same error still happens.My question is, how to use ffmpeg "-pass" in termux successfully without especially entering the target folder ?
-
Clarification on using FFmpeg in an open source app with —enable-gpl and —enable-nonfree [closed]
24 avril 2020, par Alex HoffmanCan someone please clarify the legality of bundling and using the full version of FFmpeg (with included
libx264
andlibx265
and othergpl
codecs) in an open source app.


I don't want to modify anything, all I want to do is to bundle compiled FFmpeg binaries downloaded from their website with my open source app which would use them for media files editing.



I want to bundle the full version of FFmpeg since without
--enable-gpl
and--enable-nonfree
, not being able to process h264, FFmpeg becomes effectivelly useless. So I want to know if I have to bundle the binaries compiled without--enable-gpl
and--enable-nonfree
or can I bundle the full version withshared linking
(libs separated from the executable) ?