
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (39)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (8896)
-
Merge commit ’d4a8a86c6863ecea208fa2f774690b6df4b5bc71’
13 avril 2014, par Michael Niedermayer -
Is there a method to use old versions of ffmpeg and opencv ?
6 juin 2023, par mika_rollI'm trying to build a project through cmake and after some adjustements the terminal display some new errors about some libraries and I don't know how to fix them, an example :


/usr/bin/ld: warning: libopencv_core.so.3.4, needed by /media/myfolder/lib/Linux64_x64/file.so.3.3, not found (try using -rpath or -rpath-link)


and other errors like this one regarding libavcodec.so.57, libavformat.so.57...


I've already tried to install libavcodec-dev etc and also ffmpeg and opencv by command line, and all these packages contain effectively the .so files that I need but all of them have been updated to the new version that doesn't match the one specified in the warning lines.
So is there a way to install these old versions ? Or should I try something different ? I don't really know what to do, I'm kinda new to these things so I hope I can find some help.


Also, the project that I'm trying to build is not mine, someone else wrote it some time ago and my only task is to manipulate and adjust all the links to the different libraries.


English is not my first language so I really hope I wrote an understandable request !


-
Fffmpeg mapping audio and video by language
28 mars 2017, par TerrabyteI want to batch convert these mkv files, they contain more than one language. Instances include : Eng/Ger, Eng/JPN. Sometimes there are multiple video sources within the mkv for whatever reason :
ive tried using :
FFMPEG_PATH . ' -i ' . $localFile . ' -sn -map 0:v:0 -map 0:a:m:language:jpn -c:v ' . $videoCodec . ' -tune animation -crf 20 -refs 6 -bf 6 -trellis 1 -b_strategy 1 -profile:v high -level 4.0 -pix_fmt yuv420p -ac 2 -flags +aic+mv4 ' . $scale . ' ' . $convertedFilename;
This one grabs the first video (this doesnt matter, but i need it to grab one video just in case)
-map 0:v:0 -map
I don’t thing this one works because when i tried it, it grabbed the english one instead so i dont know the issue.
0:a:m:language:jpn
I could do
0:m:language:jpn
but then id have to remove : 0:v:0 and sometimes theres a issue where just using the general mapping would encode both video sources so it wold double in file sizes
so how would i just map the audio file while keeping the video mapping ?
Fgmpeg is really confusing with this instruction.