
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 (63)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 ;
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (8940)
-
batch ffmpeg conversion (aspect, crop, and concatenate) and naming based on subfolder
3 avril 2015, par hordorTYIA for any help !
Seems I have a somewhat complicated, multi-step process. If you can help any part of it that would be appreciated.
What I hope to accomplish
- Example of folder/file is here : https://mega.co.nz/#F !RJRWRLTJ !c6b-z3Vl-Tlh0uGbCflx7Q
- I have many subfolders that each contain 7 files from a DVD (originally PAL-encoded I think). I only care about the VTS_01_1.VOB AND VTS_01_2.VOB files. The two files together are one match
- The videos are stretched (from 4:3 to 16:9) and letterboxed. I want to undo that
- The future title of the final MP4 video should be the name of the folder
- BONUS : title of the video should also include the folder before it (e.g. "Friday H2 G1 CAN - BEL.mp4")
I’d like to do this via batch file because there are a lot of folders.
What I have done :
dir/b/s *.vob | findstr /v VIDEO | findstr /v 01_ >list.txt
@echo off
for %%i in list.txt
do
ffmpeg -i VTS_01_1.VOB -aspect 4:3 "%%~pi\v1step1.mp4"
ffmpeg -i vob1.mp4 -vf "crop=704:432:10:72" "%%~pi\v1step2.mp4"
ffmpeg -i vob11.mp4 -c copy "%%~pi\v1step3.ts"
ffmpeg -i VTS_01_2.VOB -aspect 4:3 "%%~pi\v2step1.mp4"
ffmpeg -i vob2.mp4 -vf "crop=704:432:10:72" "%%~pi\v2step2.mp4"
ffmpeg -i vob22.mp4 -bsf h264_mp4toannexb -c copy "%%~pi\v2step3.ts"
ffmpeg -i "concat:v1step3.ts|v2step3.ts" -c copy file.mp4 "%%~pi\Match.mp4"
@echo on
pauseProblem with current code
- Doesn’t start converting (can’t see error message either)
- Doesn’t have the file naming that I want
- A lot of steps in conversation - can that be simplified ?
- Not sure why it wanted the -bsf command for the second conversion but not the first
Apologies if I’d made basic mistakes. I’m a big newbie and just to get this far has taken me hours of research. Thanks again !
-
Merging mp4 and mp3 on Android using FFmpeg
4 janvier 2015, par user3568918i am developing a video capturing Android App.
My Goal is to merge the captured Video file with a given mp3 audio file. I am using FFmpeg to merge the files. The capturing is done with the Android.Media Framework.
If i now try to merge the files like descripted here :How to multiplex mp3 and mp4 files in Android
i get the error :
avcodec_open2() error -1: Could not open video codec.
Is there a way to convert the captured video file in a readable version for FFmpeg ?
Or is there any other way to solve this issue ?i Dont want to capture the video with FFmpeg, caus this will be to much complex and not clean (for my opinion)
Hope that any body can help :)
thanks in advance.I Capture like propsed in the android DOC :
http://developer.android.com/guide/topics/media/camera.html
and this is how i try to merge
FrameGrabber grabber1 = new FFmpegFrameGrabber(videoPath);
FrameGrabber grabber2 = new FFmpegFrameGrabber(audioPath);
grabber1.start();
grabber2.start();
FrameRecorder recorder = new FFmpegFrameRecorder(OutputPath,grabber1.getImageWidth(), grabber1.getImageHeight(), 2);
recorder.setFormat("mp4");
recorder.setVideoQuality(1);
recorder.setFrameRate(grabber1.getFrameRate());
recorder.setSampleRate(grabber2.getSampleRate());
recorder.start();
Frame frame1, frame2 = null;
long timestamp = -2;
int count = 0;
boolean isFirstTime = false;
boolean isFirstCheck = true;
while ((frame1 = grabber1.grabFrame())!=null) {
//frame1 = grabber1.grabFrame();
frame2 = grabber2.grabFrame();
recorder.record(frame1);
recorder.record(frame2);
}
recorder.stop();
grabber1.stop();
grabber2.stop();
}catch (org.bytedeco.javacv.FrameGrabber.Exception e) {
e.printStackTrace();
} catch (Exception e1) {
e1.printStackTrace();
} -
Is it possible to stream a video from FMLE directly to an media player without a mediation of FMS ?
7 janvier 2015, par UserOfStackoverflowI want to know if it is possible to stream a video from FMLE (Flash Media Live Encoder) directly to an media player without a mediation of FMS (Flash Media Server) since I don’t want to restream it to many users ?
Here is schematics of what I want (I hope it better explains my question) : http://s12.postimg.org/x4glz1l59/My_Scheme.png
If it is possible then what media player(s) can do that ?
Also if you know more tool like FMLE (Flash Media Live Encoder) or FFmpeg which can be controlled over command line please let me know !
P.S.
Thank you for your answers and suggestions also I hope that you like my drawing skills... :D