
Advanced search
Medias (1)
-
The Great Big Beautiful Tomorrow
28 October 2011, by
Updated: October 2011
Language: English
Type: Text
Other articles (62)
-
Le profil des utilisateurs
12 April 2011, byChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
HTML5 audio and video support
13 April 2011, byMediaSPIP 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 (...) -
Configurer la prise en compte des langues
15 November 2010, byAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
On other websites (4810)
-
NaCl with FFmpeg, avformat_open_input return -5 and -1052488119 [duplicate]
30 July 2013, by JarThis question is an exact duplicate of:
I'm trying to port FFmpeg into my NaCl module.
So far, my module linked ffmpeg and SDL libraries.
It already can play YUV format video which is directed load into memory and copy into YUVOverlay buffer (it's very easy).
Now, I want to use ffmpeg to decode video, but when I call the function avformat_open_input it returns
-5
when input is URL string, such asrtmp://
ormmsh://
; it returns-1052488119
when input is file name, such as/saved/tmp
(I mount the file system - html5fs).
There are some questions:
- What means of -5 and -1052488119?
- If file can't open by avformat_open_input, is it possible the input type is from buffer not from file name or url string?
If I'm not clearly about my question or description, you can tell me.
If you are doing the same thing or having the same problem, we can discuss together.Thanks,
Jar -
qt-faststart: Fix the signedness of variables keeping the ftello return values
29 October 2012, by Michael Niedermayerqt-faststart: Fix the signedness of variables keeping the ftello return values
These variables are assigned the return values of ftello, which
returns an off_t, which is a signed type. On errors, ftello returns1, thus make sure this error return value can be stored properly.
Signed-off-by: Martin Storsjö <martin@martin.st>
-
PySceneDetect FFmpeg Not Available
14 August 2023, by Dmitriy PushkarevI already installed FFmpeg and this is available in terminal I can convert video and etc, but it's completely not available in PySceneDetect.


pip installed FFmpeg-python and FFmpeg library and FFmpeg itself in system.


PySceneDetect returns:


ffmpeg could not be found on the system. Please install ffmpeg to enable video output support.



I think trouble with path, but can't put path in PySceneDetect. I can use path to binary FFmpeg, only in ffmpeg-python library, like this and it's working


This code working fine:


Here i using only FFmpeg-python library


stream = ffmpeg.input('vi0.mp4')
stream = ffmpeg.filter(stream, 'fps', fps=10, round='up')
stream = ffmpeg.output(stream, 'vi1.mp4')
ffmpeg.run(stream,cmd='./ffmpeg')



But can't it to get work with PySceneDetect


print(scenedetect.video_splitter.is_ffmpeg_available())



return False


split_video_ffmpeg(video_path, scene_list, show_progress=False)



returns "ffmpeg could not be found on the system. Please install ffmpeg to enable video output support."