
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 (57)
-
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 (...) -
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 (...)
Sur d’autres sites (4131)
-
How to Add Gstreamer Plugin on Mac when installed from Tutorials
31 juillet 2014, par Dave CollinsI basically have two installs of gstreamer on my Mac OS X machine :
The one that works perfectly was installed following this tutorial (http://docs.gstreamer.com/display/GstSDK/Installing+on+Mac+OS+X) and downloading and installing the Developer SDK and using XCode. All tutorials work well.I also have a local version installed with Homebrew but video playback does not work on that version (see SO : gstreamer gst-launch sample mac osx plays audio but not video)
SO, I’m trying to install the FFMPEG plugin into the working xcode dev system so that I can use FFDEC_H263 in a project.
I tried simply copying the related .SO files (e.g. libgstffmpg.so) from the homebrew (cellar) location to the
/Library/Frameworks/GStreamer.Framework/Versions/0.10/lib/gstreamer-0.10/
directory and changing permissions. However, that gives me a "Caught a segmentation fault while loading plugin file" error when building any code.
I also noticed that in the Xcode directory mentioned above, all of the plugins have a related .a and .la files in the \static subdirectory... Those same files don’t exist in the homebrew version.
So, what is the proper way to install a plugin when you’ve started with the developer SDK for Mac OSX ?
-
Audio Duration issue while Merging audio using FFMPEG
9 janvier 2023, par Vivek MakwanaI am using FFMPEG to merge 2 or more audios into one audio.


The audio is getting merged properly but the output duration of the audio is wrong.


Eg : Actual merged audio plays for 23 seconds and it shows 25 seconds.


Here is the command I am using for merging the audios.


-i audio1.aac -i audio2.aac -i audio3 -filter_complex "[1:a]adelay=5s:all=1[a1]; [2:a]adelay=10s:all=1[a2]; [0:a] [a1] [a2] amix=inputs=3[a] "-map "[a]" /data/user/0/com.sound.it/cache/mergedAudio1673260887341.aac




Let me know if you have any solutions for the same.


Thanks


-
I want to convert images and sounds into video using php [closed]
6 janvier 2023, par hossein ahmadiI have 5 pictures that contain 5 English words
Also, I have five audio files of pronunciation of the words above.


I want to write a program with php that puts five pictures together with intervals of five seconds and plays the audio file of each according to the words.


5s(word1.jpg) 5s(word2.jpg) 5s(word3.jpg) ...
(audio1.mp3) (audio2.mp3) (audio3.mp3) ...
output.mp4



I researched ffmpeg but still haven't found the answer to what I want to do