
Recherche avancée
Autres articles (32)
-
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone. -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 (4243)
-
Undefined reference to _aacplusEncOpen
26 décembre 2011, par TarunFollowing is the copy of my config.log file->
http://pastebin.com/embed_js.php?i=UyTBTTZv
Following is copy of configure file->
http://pastebin.com/embed_js.php?i=2c15zppN
One more thing..As of now I am trying to cross-compile ffmpeg on ubuntu,But If I just compile it for linux..The same command doesnt gives any error and executes smoothly and then I am able to get ffmpeg with aacplus support for my linux machine, But why the problem is coming when I am cross compiling it.
Another thing as aacplus is not on by default, If in configuration I dont put any (off by default) library support like if I remove aacplus from it, Then also it goes smoothly.
Help please ASAP
-
Can't load audio files with librosa
19 août 2020, par rocksNwavesUnless I use one of
librosa
's native 'example' audio files which are in some format '.ogg', I cannot load audio.

Every github issue and SO answer says I need to install ffmpeg. I found a python package called
ffmpeg
and installed it into my virtual environment. I also found some sort of multi-purpose program calledffmpeg
and installed it onto my Windows machine, and added it's location to my PATH variable.

I still get the same warnings and errors that everyone else is getting :


c:\users\wesle\appdata\local\programs\python\python38\lib\site-packages\librosa\core\audio.py:162: UserWarning: PySoundFile failed. Trying audioread instead.
 warnings.warn("PySoundFile failed. Trying audioread instead.")
---------------------------------------------------------------------------
.
.
.

 115 # All backends failed!
--> 116 raise NoBackendError()



I can find no resolution for this problem despite the number of people asking for help on it.


-
Inconsistent Rotation of Output Video OpenCV
27 avril 2021, par user530316I am reading in mobile videos shot on an iphone (.MOV format). When the video is shot upright, ffmpeg meta data states the video frames are rotated 90 clockwise. When I read the video in with opencv as a .MOV and then outwrite again with opencv as a .mp4, both the input and output videos appear upright. Note I display the video frames using opencv via a while loop :

cap = cv2.VideoCapture("video.MOV")


ret,frame=cap.read()


while ret:
 cv2.imshow('',frame)
 if cv2.waitKey(1) & 0xFF == ord('q'):
 break
 ret,frame = cap.read()
cap.release()
cv2.destroyAllWindows() 



This is not the problem. The problem is that when the same video is run on another machine with the same os and same virtual environment, the videos come out rotated by 90 degrees. Any reason this should happen ?


Both machines are using opencv-python version 4.5.1, ffmpeg 4.2.2, and ffmpeg-python 0.2.0.