
Recherche avancée
Autres articles (105)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...)
Sur d’autres sites (12961)
-
Crop layout for Videos using touch for a Video Editor like Video Show or Filmora Go in android studio [closed]
26 août 2020, par Rayhan KhanI am new to the android studio (Java) and video editing application. I am developing a video editor in android studio with FFMpeg Library.


I want to create a crop layout with a rectangle layer on top of it to measure the details like :




crop video width : 900
crop video height : 500
left distance (x value) : 190
top distance (y value) : 110

 1280
****************************************************************************
*FULL VIDEO | *
* 110 *
* | *
* ************************************************** *
* * 900 * *
* * * *
* * * *
* * * *
* * * *
* * * *
*----190-----* CONTENT 500 *----190-----* 720
* * * *
* * * *
* * * *
* * * *
* * * *
* ************************************************** *
* | *
* 110 *
* | *
****************************************************************************



Please help. Thank you.


Screenshot 1 :




Screenshot 2 :




-
AForge.Video.VideoException : Cannot allocate video picture
23 octobre 2015, par user5389242I’m trying to convert images into a video file, but I’m getting the following error :
An unhandled exception of type ’AForge.Video.VideoException’ occurred in AForge.Video.FFMPEG.dll
Additional information : Cannot allocate video picture.
The error occurs on
writer.Open
:writer = new VideoFileWriter();
writer.Open("/output.avi", width, height, 30, VideoCodec.MPEG4, 1000000); -
SVT-AV1 : After encoding the video seeking is very bad in any video player (even HTML5)
18 juin 2020, par Viktor Machniki am using SVT-AV1 and FFMPEG to encode Videos into the AV1 video and opus audio codec (.webm), it works fine, except that the video seeking do not work really (extremly bad). When i seek, the CPU useage jumps up and it takes up to minutes until the seeking process finishes.



Here is how i encode the videos :



- 

- Convert any video into yuv :
ffmpeg -i -preset veryslow -level 6.2 .yuv
- First AV1 run
svt-av1 -i '.yuv' -w -h --fps --rc 0 -q 30 --preset 8 -b '.\output1.ivf' --output-stat-file '.\stat_file.stat' --keyint 1 --enable-restoration-filtering 1
- Second AV1 run
svt-av1 -i '.yuv' -w -h --fps --rc 0 -q 30 --preset 3 -b '.\output.ivf' --input-stat-file '.\stat_file.stat' --keyint 1 --enable-restoration-filtering 1
- Get source video audio in opus codec
ffmpeg -i -c:a libopus -vn -preset veryslow -level 6.2 output.ogg
- Get final .webm video
ffmpeg -i output.ivf -i output.ogg -c copy output.webm













I have allready tryed to play with the —keyin option, also just letting it away and use the encoder default, but the results are always the same. (
--keyin 1
seems to work better than without this option, but also very very bad)


What am i doing wrong ?



Extras : I am using Windows 10 with downloaded version of SVT-AV1 and FFMPEG (I just renamed the SVT-AV1 Encoder .exe file to be
svt-av1.exe
). Used CPU is Ryzen 9 3900X

- Convert any video into yuv :