
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (92)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (7940)
-
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 :