
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (89)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (4638)
-
"Error configuring filters" FFmpeg issue while using Vogon
8 juillet 2018, par Jk425Prerequisites :
vogon, python 2.7, ffmpeg 2.3.6(newer versions caused + one more error :
"Error configuring complex filters" due to vogon outdate itself, i
suppose)sample_project/
├── adwords_video_csv.py
├── adwords_video_csv.pyc
├── assets
│ ├── car_ad.mp4
│ ├── README.txt
│ └── vogon.png
├── edit_config.py
├── output
│ └── README.txt
├── sample.csv
├── sample.json
├── sample_win.json
├── vogon.py
├── vogon.pyc
├── yt_upload.py
└── yt_upload.pycGetting such a message after executing command :
python vogon.py sample.json --noauth_local_webserver
Input #1, image2, from 'assets/vogon.png':
Duration: 00:00:00.04, start: 0.000000, bitrate: N/A
Stream #1:0: Video: png, rgba, 400x223 [SAR 2835:2835 DAR 400:223], 25 tbr, 25 tbn, 25 tbc
[Parsed_movie_1 @ 0x1b35480] Failed to avformat_open_input '/tmp/vogon_Ql9UW7.gif'
[AVFilterGraph @ 0x1af08e0] Error initializing filter 'movie' with args '/tmp/vogon_Ql9UW7.gif'
Error configuring filters.vogon.py -h:
positional arguments:
config_file Configuration JSON file
optional arguments:
-h, --help show this help message and exit
--auth_host_name AUTH_HOST_NAME
Hostname when running a local web server.
--noauth_local_webserver
Do not run a local web server.
--auth_host_port [AUTH_HOST_PORT [AUTH_HOST_PORT ...]]
Port web server should listen on.
--logging_level {DEBUG,INFO,WARNING,ERROR,CRITICAL}
Set the logging level of detail.
--youtube_upload Upload generated videos to YouTube
--preview_line PREVIEW_LINE
Generate only one video, for the given CSV line numberMakes me think it is an ffmgep issue. What could it be ?
-
Upload video file to amazon S3 after FFMPEG conversions - Laravel
11 mai 2018, par SiddharthI’m trying to upload file to s3 using ffmpeg, and its creating a 0B file, what could be the reason behind this ?
My Code is as follows :
exec('ffmpeg -i '.config('medialibrary.s3.domain').'/listing_video/intromain.mp4'.' -vf "drawtext=fontfile='.storage_path('assets/video/FutuMd.ttf').': text='.$listing->car->name.': x=680: y=500: fontsize=55: fontcolor=white: enable=\'between(t,4,6)\'" '.Storage::put('intromainfinal.mp4', '').'');
-
script to concatenate one asset to multiple video files using ffmpeg
14 novembre 2015, par Jack MNewbie to using ffmpeg, I have a question, is there a way to batch encode one file (like a 30 sec commercial) to multiple video files, I was successful in encoding one file using the following command :
ffmpeg -f concat -i mylist.txt -c copy test.mov
I would like to add the same 30sec commercial video to 40 different video assets.
Can anyone help me ?
Thanks !