
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (87)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (5120)
-
How to remove one track from video file using ffmpeg ?
1er janvier 2021, par user25How to remove only one track (not all) from video file container (.vob or .mkv) using ffmpeg ?



I know I can just copy video (
-c:v copy -an
) and specific audio track from container into two separated files and then join them.


But is there an easier way ? Can I just remove specific audio track from container ? ffmpeg command ?


-
python Instagram API doesnt work
9 avril 2017, par sdgmI was looking for a c++-Instagram API but there was not any complete project. Now,I am using python-Instagram API. whenever I execute my code, too many errors occur. this is my code :
from InstagramAPI import InstagramAPI
InstagramAPI = InstagramAPI("no_ideaw", "xs*************#")
InstagramAPI.login()
InstagramAPI.removeProfilePicture()Then, these are the errors :
Traceback (most recent call last):
File "tester.py", line 1, in <module>
from InstagramAPI import InstagramAPI
File "/home/muhammad/Downloads/Instagram-API-python-master/InstagramAPI.py", line 25, in <module>
from moviepy.editor import VideoFileClip
File "/home/muhammad/.local/lib/python2.7/site-packages/moviepy/editor.py", line 22, in <module>
from .video.io.VideoFileClip import VideoFileClip
File "/home/muhammad/.local/lib/python2.7/site-packages/moviepy/video/io/VideoFileClip.py", line 3, in <module>
from moviepy.video.VideoClip import VideoClip
File "/home/muhammad/.local/lib/python2.7/site-packages/moviepy/video/VideoClip.py", line 20, in <module>
from .io.ffmpeg_writer import ffmpeg_write_image, ffmpeg_write_video
File "/home/muhammad/.local/lib/python2.7/site-packages/moviepy/video/io/ffmpeg_writer.py", line 15, in <module>
from moviepy.config import get_setting
File "/home/muhammad/.local/lib/python2.7/site-packages/moviepy/config.py", line 38, in <module>
FFMPEG_BINARY = get_exe()
File "/home/muhammad/.local/lib/python2.7/site-packages/imageio/plugins/ffmpeg.py", line 86, in get_exe
raise NeedDownloadError('Need ffmpeg exe. '
imageio.core.fetching.NeedDownloadError: Need ffmpeg exe. You can download it by calling:
imageio.plugins.ffmpeg.download()
</module></module></module></module></module></module></module>I tried to install
imageio.plugins.ffmpeg.download()
but nothing happened. what is wrong with my python code ?
-
ffmpeg over https fails
5 janvier 2017, par RobinIf I feed
url
withhttp
, such as this :ffmpeg -i http://vjs.zencdn.net/v/oceans.mp4 videojs.mp4
It works perfectly. However, when I feed
url
withhttps
, such as this :ffmpeg -i https://s3-us-west-2.amazonaws.com/bucket/check.mp4 video.mp4
This gives me an error :
https protocol not found, recompile FFmpeg with openssl, gnutls, or
securetransport enabled.
https://s3-us-west-2.amazonaws.com/bucket/check.mp4 : Protocol not
foundWhat should I do to enable https?