
Recherche avancée
Autres articles (96)
-
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 -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (8850)
-
remove . from the results of find
12 mai 2017, par user2680603I am trying to use the below command on ubuntu to find files in one folder and feed through FFmpeg and output to another folder. The problem is that when it processes the output path and filename it adds a . to the path like so : /conversions./resultFromFind.mkv
find -name '*720p*.mp4' -exec ffmpeg -i {} -c:v copy -c:a ac3 /home/plex/library/localFiles/Complete/conversions{} \;
I understand why it does that but can’t find the right search term to get a solution. How do I remove the . ?
-
FFMPEG cannot find openCV while integrating modified HEVC
12 mai 2017, par haider aliWe modified HEVC (open-source downloaded from bitbucket) encoder and have included some openCV libraries.
It works perfect on visual studio.Problem :
FFMPEG is unable to find openCV libraries.Please suggest us a solution ?
Are there any other software in which we can integrate our customized HEVC library ?
-
ffmpeg Unable to find a suitable output format for 'ffmpeg -i '
20 mai 2017, par RamosHi everyone i try to mirror my video file i use this library for ffmpeg
compile ’com.writingminds:FFmpegAndroid:0.3.2’
and this is my commande :
uriPathOut = getInternalDirectoryPath() + "/Movies/3.mp4" ;
uriPathIn = getInternalDirectoryPath() + "/Movies/1.mp4" ;cmd = new String[]"ffmpeg -i",uriPathIn," -vf \"vflip\" -metadata:s:v rotate=180 ",uriPathOut ;
and i always get this error :
’[NULL @ 0xb84192d0] Unable to find a suitable output format for ’ffmpeg -i’
ffmpeg -i : Invalid argument’is there any solution help me please.