
Recherche avancée
Autres articles (4)
-
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 (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...)
Sur d’autres sites (1961)
-
FFmpeg Arthenica always encodes with x265 Main10 profile [closed]
5 avril, par Jabed DhaliI'm using FFmpeg-Kit (Arthenica) for iOS to compress videos using the libx265 encoder. I'm building FFmpeg with a custom configuration script :


export CUSTOM_CONFIG="--disable-indevs \
 --disable-outdevs \
 --disable-hwaccels \
 --enable-videotoolbox \
 --disable-protocols \
 --enable-protocol=file,fd,saf,async \
 --disable-decoders \
 --enable-decoder=${ENABLE_DECODER_LIST} \
 --disable-encoders \
 --enable-encoder=${ENABLE_ENCODER_LIST}"

export CUSTOM_CONFIG_IOS=${CUSTOM_CONFIG}
 ./ios.sh --enable-ios-videotoolbox --enable-lame --enable-libaom --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libxml2 --enable-opencore-amr --enable-openh264 --enable-opus --enable-twolame --enable-x264 --enable-x265 --enable-gpl



Then I run FFmpeg with the following commands :


-y -hide_banner -i input.MOV -vcodec libx265 -x265-params profile=main output.mov
-y -hide_banner -i input.MOV -vcodec libx265 -x265-params profile=main10 output.mov



However, regardless of the profile I set, the output always ends up being encoded with the Main10 profile.


Here’s the log output :


x265 [info]: HEVC encoder version 3.4
x265 [info]: build info [Mac OS X][clang 16.0.0][32 bit][noasm] 10bit
x265 [info]: using cpu capabilities: none!
x265 [info]: Main 10 profile, Level-5 (Main tier)



It seems that the FFmpeg build only supports 10-bit encoding. I want to be able to encode with different profiles (main, main10, etc.), as well as to build libx265 in a way that supports 8-bit + 10-bit + 12-bit encoding (unified 64-bit build), as like as the same command executes for MacOS.


x265 [info]: HEVC encoder version 4.1+1-1d117be
x265 [info]: build info [Mac OS X][clang 16.0.0][64 bit] 8bit+10bit+12bit
x265 [info]: using cpu capabilities: NEON Neon_DotProd Neon_I8MM
x265 [info]: Main profile, Level-2.1 (Main tier)



How can I correctly configure and build FFmpeg and libx265 with Mobile FFmpeg to support multiple bit depths and allow setting different profiles via -x265-params ?


-
Two videos playing, how to crop the second video in FFmpeg
14 janvier 2021, par RorlingurI'm totally new to FFmpeg and I'm still learning.


I've been trying to combine two videos into one. Where there is a "main" video that plays and a secondary video that is much smaller in the corner.


I have managed to figure out almost everything on my own except for how to crop the smaller corner video by half. My goal is to crop/cut the corner video so it will only show the right half of the video but I can't seem to make it work, any help/tips would be much appreciated !


ffmpeg -ss 00:04:10.10 -i corner.m4v -vf "movie=main.mkv [in1]; [in]scale=iw/4:ih/4, pad=0*iw:ih[in0]; [in1][in0] overlay=main_w/1.334:550 [out]" -b:v 3500k out.mkv



The above is what I currently have that works, the only thing that is missing is cropping the corner video.


-
Linking shared libraries (.so) in Android Studio 2.2.2
22 novembre 2016, par fadiI am really stuck and desperate for an answer.
I have looked pretty much everywhere online to solve this problem with no real success.Basically I have compiled ffmpeg for android and I am trying to use the (
.so
) files inside Android Studio 2.2.2.The problem is that I keep getting this error when I try to compile my code
Please note that my code worked perfectly under MS Visual Studio and I am certain it works as it should.I am thinking this error means that I am not linking my shared libraries (
.so
) files against my.cpp
file (correct me if I am wrong).Things I tried :
-
I have tried including my
.so
files insidemain/jniLibs
, and still didn’t work. -
I put the
.so
files insideapp/libs
, and still no success. -
Provided linking rules in cmake for example :
add_library(B SHARED IMPORTED)
set_target_properties(B PROPERTIES
IMPORTED_LOCATION src/main/jniLibs/armeabi-v7a/libavformat-55.so
)
include_directories(src/main/cpp/include/)
target_link_libraries(native-lib B)This gave me another error which looks like this :
Error:error: 'src/main/jniLibs/armeabi-v7a/libavformat-55.so', needed by '../../../../build/intermediates/cmake/debug/obj/armeabi-v7a/libnative-lib.so', missing and no known rule to make it
Here is the structure of my project tree :
I really need help.
-