
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (111)
-
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 -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
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" (...)
Sur d’autres sites (9910)
-
Looking for technical details about X265 encoding and decoding
10 décembre 2015, par SitoumbazI’am working on x265, Is there some one who can you share with me how did I encode yuv using x265 codec ? I Need to know how do you get pixel encoded from picture_out structure, And can you tell me if this code is good ? Hope get solution from you ! I’am using the x265 api documentation but it is less understandable.
ret = x265_encoder_encode(encoder, pp_nal, &pi_nal, pic_in, pic_out);
if(ret < 0){
printf("encodePictureIn, Error in x265_encoder_encode %d\n",ret);
return ret;
}
do{
ret = x265_encoder_encode(encoder, pp_nal, &pi_nal, NULL, pic_out);
printf("...\n");
}while(ret > 0); -
Bash while loop wait until task has completed
30 juillet 2015, par macmichael01I have a bash script that I created to process videos from within a folder and it’s subfolders :
find . -type f -name '*.mkv' | while read file;
do
ffmpeg -i $file ...
doneThe problem : Instead of the while loop waiting ffmpeg to complete, it continues iterate through the loop. The end result is, files not getting processed. I need a way to have the current while loop iteration to wait until ffmpeg is complete before continuing to the next. Or alternatively a way to queue these items.
Edit : So The solution when iterating over a set of files is to pass the -nostdin param to ffmpeg. Hope this helps anyone else who might have a similar issue.
Also file —> $file was a copy/paste typo.
-
Unknown OS MinGW and MSYS (ffmpeg / JAVE)
26 novembre 2015, par Hendrik_the_bestI Have been at this for about 3 hour and i’ve tried everything i can think of.
I’ve been trying to compile/build ffmpeg (because the one thats give with JAVE( http://www.sauronsoftware.it/projects/jave/ ) gives me a error when i’m trying to run it.
I really suck at this but i still hope someone will help :)I’m on windows 10 and I have all the latest versions from git bash, mingw and msys installed.