
Recherche avancée
Autres articles (88)
-
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 (...) -
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 (...) -
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 (18815)
-
Running ffmpeg with Mac's Automator to remove metadata
11 février 2019, par sd100Hi so I am having problems running ffmpeg on a folder of movie files with Mac’s automator. My goal is to select a folder and right click/select service and automatically the script should run on only movie files (of mp4 type).
So I have a Automator workflow receives files or folders in finder. Then I have "Selected Finder items" and then run shell script (code below).
This works but firstly it gives the ffmpeg verbose output in the results window in the mac which I have to press ok. I tried the "-hide_banner -loglevel panic" but the script doesn’t work then.
Secondly the "Selected finder items" works but I want to only select a folder and automatically the automator script should go in the folder and run the shell script on only mp4 files (movie).
Is there anyway to set both requirements ? Any advise would be appreciated !
Code I’ve tried :
for f in "$@"
do
/usr/local/bin/ffmpeg -i "$f" -map_metadata -1 -c:v copy -c:a copy "$f%.mp4"-new.mp4 ;
doneAlso am trying to move all converted mp4 files to a directory in the current directory with shell code like this :
for f in *.mp4 ; do ffmpeg -i "$f" -map_metadata -1 -c:v copy -c:a copy "converted/$f" ; done
This doesn’t work either in automator as I don’t know how to move the ffmpeg output files into another directory via automator.
-
Anomalie #3930 (En cours) : Moteur de recherche : combinaison de DEUX mots avec accents ne retourne...
17 septembre 2017, par b bJe viens de tester sur SPIP 3.1.6 branché sur une base MySQL (MariaDB) et la recherche renvoie bien l’article intitulé "Secrétariat général" dans les trois cas. Tu cites le bug #3162 mais celui-ci est résolu, je ne comprends pas trop.
-
Transcoding and Streaming a video file for Android
2 août 2013, par Yaron BudowskiI'm trying to encode a local/static input file (can MP4, for example) into a smaller video file (either by resizing, lesser quality video, etc.) and stream it in parallel (i.e. I can't wait for the encoding process to finish before streaming it back), so it can be played by an Android client (the standard Android video player).
So I've tried using ffmpeg as follows :
ffmpeg -re -i input.mp4 -g 52 -acodec libvo_aacenc -ab 64k -vcodec libx264 -vb 448k -f mp4 -movflags frag_keyframe+empty_moov -
Notice I'm using stdout as the output so I can run ffmpeg and stream its output on the fly
However, such methods (and other similar methods) don't seem to work on Android - it can't simply play it once it receives "non-standard" files (such as a fragmented MP4s) - it seems like the empty moov atom messes it up.
I also tried other container formats, such as 3GPP and WebM.
I'd love to hear any kind of input on this issue...
Thanks