
Advanced search
Medias (1)
-
Rennes Emotion Map 2010-11
19 October 2011, by
Updated: July 2013
Language: français
Type: Text
Other articles (111)
-
Le profil des utilisateurs
12 April 2011, byChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 November 2010, byAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
XMP PHP
13 May 2011, byDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
On other websites (13995)
-
Which FFMPEG Arguments to Copy .m4a Audio File in Flutter?
25 July 2021, by MeggyI've got my own fork of GSPrakashNaidu' Flutter Audio_Trimmer plugin which I'd like to use to edit an M4a audio file.


https://github.com/meghead/audio_trimmer


The plugin passes the following command to Flutter's FFMPEG plugin;


"-y -i \"$path\" -vn -ss $start -to $end -ar 16k -ac -c:a aac -b:a 96k -acodec copy $outPath"; 



Which can be seen here in the Android Studio console;


Running FFmpeg with arguments: [-y, -i, /storage/emulated/0/Android/data/myfiles/files/flutter_audio_recorder_1627212132002.m4a.temp, -vn, -ss, 5.0, -to, 10.5, -ar, 44k, -ac, 2, -b:a, 96k, -acodec, copy, /data/user/0/myfiles/cache/output.m4a].



But here's the error which gets thrown;


Guessed Channel Layout for Input Stream #0.0 : mono
I/mobile-ffmpeg(21007): Input #0, wav, from '/storage/emulated/0/Android/data/myfiles/files/flutter_audio_recorder_1627212265033.m4a':
I/mobile-ffmpeg(21007): Duration: 
I/mobile-ffmpeg(21007): 00:00:01.91
I/mobile-ffmpeg(21007): , bitrate: 
I/mobile-ffmpeg(21007): 705 kb/s
I/mobile-ffmpeg(21007): 
I/mobile-ffmpeg(21007): Stream #0:0
I/mobile-ffmpeg(21007): : Audio: pcm_s16le ([1][0][0][0] / 0x0001), 44100 Hz, mono, s16, 705 kb/s
I/mobile-ffmpeg(21007): 
E/mobile-ffmpeg(21007): [ipod @ 0x7277f388c0] Could not find tag for codec pcm_s16le in stream #0, codec not currently supported in container
E/mobile-ffmpeg(21007): Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument
I/mobile-ffmpeg(21007): Stream mapping:
I/mobile-ffmpeg(21007): Stream #0:0 -> #0:0
I/mobile-ffmpeg(21007): (copy)
I/mobile-ffmpeg(21007): 
E/mobile-ffmpeg(21007): 
I/mobile-ffmpeg(21007): Conversion failed!
D/flutter-ffmpeg(21007): FFmpeg exited with rc: 1 



What argument can I use to output .m4a?


-
Which FFMPEG Arguments to Pass for .m4a Audio File in Flutter?
25 July 2021, by MeggyI've got my own fork of GSPrakashNaidu' Flutter Audio_Trimmer plugin which I'd like to use to edit an M4a audio file.


https://github.com/meghead/audio_trimmer


The plugin passes the following command to Flutter's FFMPEG plugin;


"-y -i \"$path\" -vn -ss $start -to $end -ar 16k -ac -c:a aac -b:a 96k -acodec copy $outPath"; 



Which can be seen here in the Android Studio console;


Running FFmpeg with arguments: [-y, -i, /storage/emulated/0/Android/data/myfiles/files/flutter_audio_recorder_1627212132002.m4a.temp, -vn, -ss, 5.0, -to, 10.5, -ar, 44k, -ac, 2, -b:a, 96k, -acodec, copy, /data/user/0/myfiles/cache/output.m4a].



But here's the error which gets thrown;


Guessed Channel Layout for Input Stream #0.0 : mono
I/mobile-ffmpeg(21007): Input #0, wav, from '/storage/emulated/0/Android/data/myfiles/files/flutter_audio_recorder_1627212265033.m4a':
I/mobile-ffmpeg(21007): Duration: 
I/mobile-ffmpeg(21007): 00:00:01.91
I/mobile-ffmpeg(21007): , bitrate: 
I/mobile-ffmpeg(21007): 705 kb/s
I/mobile-ffmpeg(21007): 
I/mobile-ffmpeg(21007): Stream #0:0
I/mobile-ffmpeg(21007): : Audio: pcm_s16le ([1][0][0][0] / 0x0001), 44100 Hz, mono, s16, 705 kb/s
I/mobile-ffmpeg(21007): 
E/mobile-ffmpeg(21007): [ipod @ 0x7277f388c0] Could not find tag for codec pcm_s16le in stream #0, codec not currently supported in container
E/mobile-ffmpeg(21007): Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument
I/mobile-ffmpeg(21007): Stream mapping:
I/mobile-ffmpeg(21007): Stream #0:0 -> #0:0
I/mobile-ffmpeg(21007): (copy)
I/mobile-ffmpeg(21007): 
E/mobile-ffmpeg(21007): 
I/mobile-ffmpeg(21007): Conversion failed!
D/flutter-ffmpeg(21007): FFmpeg exited with rc: 1 



What argument can I use to output .m4a?


-
Ffmpeg in docker-compose could not be started
27 May 2021, by indexlin





I have the following
docker-compose
file but myffmpeg
container does not seem to start for some reason. It outputs a code of0
and does not give any other info.


version: '3'

networks:
 b2c:
 driver: bridge

services:
 ffmpeg:
 container_name: b2c-ffmpeg
 image: jrottenberg/ffmpeg

 nginx:
 container_name: b2c-nginx
 image: nginx:1.17.0
 depends_on:
 - "php"
 volumes:
 - ../server/public:/server/public
 - ./config/nginx/conf.d:/etc/nginx/conf.d
 - ./config/nginx/nginx.conf:/etc/nginx/nginx.conf
 - ../data/nginx/logs:/logs
 networks:
 - b2c
 ports:
 - "20001:80"

 php:
 container_name: b2c-php
 image: indexlin/gzyx-php7.2.4:1.1
 working_dir: /server
 volumes:
 - ../server:/server
 #- ./php/docker-php-ext-xdebug.ini:/usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
 networks:
 - b2c
 ports:
 - "23001:9000"
 #user: "1000:1000"

 mysql:
 container_name: b2c-mysql
 image: mysql:5.7.21
 environment:
 MYSQL_ROOT_PASSWORD: root
 volumes:
 - ../data/mysql/lib:/var/lib/mysql
 #- ../data/mysql/log:/var/log/mysql
 - ./config/mysql/mysqld.cnf:/etc/mysql/mysql.conf.d/mysqld.cnf
 networks:
 - b2c
 ports:
 - "25001:3306"

 redis:
 container_name: b2c-redis
 image: redis:5.0.5
 volumes:
 - ../data/redis:/data
 - ./config/redis/redis.conf:/usr/local/etc/redis/redis.conf
 networks:
 - b2c
 ports:
 - "27001:6379"

 node:
 container_name: b2c-node
 volumes:
 - ../server:/server
 - ../web:/web
 image: node:10.15.3
 networks:
 - b2c
 tty: true
 working_dir: /web
 ports:
 - "29001:29000"