
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (33)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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" (...) -
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 : (...)
Sur d’autres sites (6877)
-
Revision b957439c87 : Fix a potential invalid memory access in non-RD coding flow This commit fixes a
11 juillet 2014, par Jingning HanChanged Paths :
Modify /test/cpu_speed_test.cc
Modify /vp9/encoder/vp9_pickmode.c
Modify /vp9/encoder/vp9_speed_features.c
Fix a potential invalid memory access in non-RD coding flowThis commit fixes a potential out-of-boundary memory access due to
the use of reuse_inter_pred_sby in the non-RD coding flow. It
resolves the corresponding asan error.Change-Id : Iff605f5921230966990013541cd855d698810922
-
Cannot access the files in the subdirectories [FFmpeg]
9 décembre 2019, par Ahmet MehmetI try to do a loop job in bash. For example, I want to know some video files’ media info with using ffmpeg using in a loop :
for i in * */* */*/*; do
ffmpeg -i "$i" -hide_banner
doneBut if I want to access up to 10 subdirectories, I must use */ symbol 10 times and this is so bad. Have can do this operation more pratic and pro way :) ?
I tried oguz ismail’s solution and it’s worked, thanks for that. But I have an another problem : This time I tried to take an input file to an output file like this :
find . -c:v copy -c:a copy -i {} \;
But I got an error something like "At least one output file must be specified", because I couldn’t specify an output. How can I do that ?
-
ENOENT error when trying to access output with ffmpeg + node.js
29 juin 2020, par John GraysonI am running ffmpeg in a lambda function to do some video processing. My problem is the processed video is not being outputted/saved. Therefore, when I try to access the processed video, I get the error :


ERROR Error retrieving video to upload [Error: ENOENT: no such file or directory


Relevant parts of my code :


const { spawnSync } = require("child_process");

exports.handler = async (event, context) => {
 spawnSync(
 "/opt/ffmpeg/ffmpeg",
 [
 "-i",
 `/tmp/myfile`,
 'title="Test 123"',
 `/tmp/processed_file`,
 ],
 { stdio: "inherit" }
 );
}




The conversion file itself does not return any errors, but when I try to access
processed_file
, I get the ENOENT error. I also used anfs.readdir
to see what files actually exist in/tmp
and the only file there wasmyfile
. Therefore, my processed video truly did not save correctly.

Does anyone know what I might be doing wrong here ? Thanks !