
Recherche avancée
Autres articles (62)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Liste des distributions compatibles
26 avril 2011, parLe tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)
Sur d’autres sites (6525)
-
Protecting consumer privacy : How to ensure CCPA compliance
-
Looking to use ffmpeg in shell to grab metadata
13 novembre 2012, par user1664433I have a script that uses ffmpeg to convert mp3 to avi. I need to know how to grab the metadata from the mp3 using ffmpeg or the next best commang, ex. the metadata is :
Input #1, mp3, from '21 - STACY BARTH - DRINK MY PAIN AWAY.mp3':
Metadata:
artist : DJ WHITEOWL
album : Dj Whiteowl - R&b's New Generation
title : STACY BARTH - DRINK MY PAIN AWAY
track : 21/21
genre : R&B
date : 2012
TCMP : 1
TDTG : 2012-10-27T00:36:48
Duration: 00:05:02.23, start: 0.000000, bitrate: 191 kb/s
Stream #1.0: Audio: mp3, 44100 Hz, stereo, s16, 192 kb/sI need to grab the artist, album, title, track, genre, data etc and load them into separate variables.
i.etrack = 21/21
genre = R&Betc
-
Ffmpeg - Concat two video file - Defining absolute path of video file not working
9 juillet 2014, par Ghanshyam DobariyaI am using Ffmpeg to concate three mp4 files.
I am following this article
https://trac.ffmpeg.org/wiki/How%20to%20concatenate%20(join,%20merge)%20media%20filesCheck topic Concat protocol
I have 3 .ts files, now running following command that merges all 3 .ts files properly
ffmpeg -i "concat:video1.ts|video2.ts|video3.ts" -c copy -bsf:a aac_adtstoasc output.mp4
Now same command I want to run from php code, so I am giving absolute path of each file, and the command is as below.
/home/pc-16/bin/ffmpeg -i "concat:|'/var/temp/rt-web/web/video/iRec/HOKPINzHFS/video1.ts'|'/var/temp/rt-web/web/video/iRec/HOKPINzHFS/video2.ts'|'/var/temp/rt-web/web/video/iRec/HOKPINzHFS/video3.ts'" -c copy -bsf:a aac_adtstoasc "/var/temp/rt-web/web/video/iRec/HOKPINzHFS/final.mp4"
This gives following error
concat:|'/var/temp/rt-web/web/video/iRec/HOKPINzHFS/video1.ts'|'/var/temp/rt-web/web/video/iRec/HOKPINzHFS/video2.ts'|'/var/temp/rt-web/web/video/iRec/HOKPINzHFS/video3.ts': No such file or directory
Have also tried the same command by removing single quotes from file names
/home/pc-16/bin/ffmpeg -i "concat:|/var/temp/rt-web/web/video/iRec/HOKPINzHFS/video1.ts|/var/temp/rt-web/web/video/iRec/HOKPINzHFS/video2.ts|/var/temp/rt-web/web/video/iRec/HOKPINzHFS/video3.ts" -c copy -bsf:a aac_adtstoasc "/var/temp/rt-web/web/video/iRec/HOKPINzHFS/final.mp4"
but got the same error message.
Can anybody tell me how to specify absolute file names in command.