
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (51)
-
XMP PHP
13 mai 2011, parDixit 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 (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
MediaSPIP en mode privé (Intranet)
17 septembre 2013, parÀ partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)
Sur d’autres sites (7664)
-
How to get rec script of SOX to work on Android ?
1er mai 2013, par Arif NadeemI built sox for
Android
and I am using the generated binary files i.e.sox, rec, play and soxi
generated directly in my app by installing them as binaries within my app.I am able to invoke commands using
sox
directly however I have a problem in invokingrec
command.I used the following command,
rec -r 8000 -c 2 output.wav
But it fails saying thatsox is not found
orsox is expected but is not found
.The above rec command works perfectly in Ubuntu when I use it in command line
Please note that I am able to use operation related to
sox
binary successfully, but I am unable to use commands related torec
binary.Initially I thought the problem may be because of permissions imposed by Android so I included these permissions in
manifest.xml
but to no avail.I did some research and got this link, it says in section Using Sox to Play and Record that there might be some Linux systems which do not accept
rec
command directly.I followed his suggestion and appended my commands with
padsp
etc, but it still doesn't work.So my question is how do I invoke rec command successfully on Android system, has anyone tried this before ?
-
Trim with ffmpeg without re-encoding gives issues on the trimming point
3 mai 2022, par Oleg MerkulovI have a video file with following parameters :


Container: mp4
Video: h264
Audio: AAC
Duration: 00:29:38.03



I need to extract 2 parts from it and merge it into one video. I want to keep the quality and make the operation as fast as possible. Thus -> I don't want to re-encode.


I'm using the following :


ffmpeg -y -ss 00:01:00 -to 00:03:00 -i 30.mp4 -c copy part-1.mp4
ffmpeg -y -ss 00:21:00 -to 00:29:00 -i 30.mp4 -c copy part-2.mp4
ffmpeg -y -f concat -safe 0 -i parts.txt -c copy merged.mp4
parts.txt:
file 'part-1.mp4'
file 'part-2.mp4'



the output has 103 warnings like that :


[mp4 @ 0x7fa91d707e40] Non-monotonous DTS in output stream 0:1; previous: 5759491, current: 5719904; changing to 5759492. This may result in incorrect timestamps in the output file.
[mp4 @ 0x7fa91d707e40] Non-monotonous DTS in output stream 0:0; previous: 3598631, current: 3574391; changing to 3598632. This may result in incorrect timestamps in the output file.



merged.mp4 has an issue on 00:02:00, right after the cut.
The audio is not in sync with video for around 5 seconds and then after that it goes perfectly.


What can cause such an issue ? Is there is a way to trim without losing quality ?


-
Merge two audio files using ffmpeg : Unsafe file name './temp/speech/audio0.mp3'
18 juillet 2022, par PixelPagei want to merge audio files (/temp/speech/audio.mp3) into one (/temp/audio.mp3). I already tried
ffmpeg -f concat -i ./temp/speech/afiles.txt -c copy ./temp/audio.mp3
(I use nodejs child_process), but i get this error :

[concat @ 0x7fc08f70f140] Unsafe file name './temp/speech/audio0.mp3'
./temp/speech/afiles.txt: Operation not permitted

at ChildProcess.exithandler (node:child_process:398:12)
at ChildProcess.emit (node:events:527:28)
at maybeClose (node:internal/child_process:1092:16)
at Process.ChildProcess._handle.onexit (node:internal/child_process:302:5)



Note : This is my ./temp/speech/afiles.txt file :


file './temp/speech/audio0.mp3'
file './temp/speech/audio1.mp3'
file './temp/speech/audio2.mp3'
file './temp/speech/audio3.mp3'
file './temp/speech/audio4.mp3'



Thanks, Pixelpage