
Recherche avancée
Médias (29)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (60)
-
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 -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (5669)
-
How to convert .fbx to frame images
24 mai 2024, par Ittefaq TechnologiesI wanna to need help that i wanna to convert .fbx to video through script and i found a soluotion to do it through FFmpeg but it not supports .fbx so i need help in to get frame images so i can make video through ffmpeg or if i am goin in wrong direction you can help me


I tried to convert a .fbx file to .obj using three.js and then create a video from the .obj file, but it didn't work.


<code class="echappe-js"><script>&#xA; // Function to load FBX using FBXLoader&#xA; function loadFBX(blob, loader, callback) {&#xA; var url = URL.createObjectURL(blob);&#xA; loader.load(url, function(object) {&#xA; callback(object);&#xA; });&#xA; }&#xA;&#xA; // Function to export THREE.Object3D to OBJ format using OBJExporter&#xA; function exportToOBJ(object, callback) {&#xA; var exporter = new THREE.OBJExporter();&#xA; var result = exporter.parse(object);&#xA; callback(result);&#xA; }&#xA;&#xA; // Function to send OBJ file to PHP script&#xA; function sendToPHP(objBlob, fileName) {&#xA; var formData = new FormData();&#xA; formData.append(&#x27;objFile&#x27;, objBlob, fileName);&#xA;&#xA; var xhr = new XMLHttpRequest();&#xA; xhr.open(&#x27;POST&#x27;, &#x27;convert.php&#x27;, true);&#xA; xhr.onload = function() {&#xA; if (xhr.status === 200) {&#xA; console.log(&#x27;Conversion successful:&#x27;, xhr.responseText);&#xA; } else {&#xA; console.error(&#x27;Conversion failed:&#x27;, xhr.responseText);&#xA; }&#xA; };&#xA; xhr.send(formData);&#xA; }&#xA;&#xA; // Function to convert FBX to OBJ&#xA; function convertToOBJ() {&#xA; var fileInput = document.getElementById(&#x27;fileInput&#x27;);&#xA; var file = fileInput.files[0];&#xA;&#xA; if (file) {&#xA; var reader = new FileReader();&#xA; reader.onload = function(event) {&#xA; var arrayBuffer = event.target.result;&#xA; var blob = new Blob([arrayBuffer]);&#xA; var loader = new THREE.FBXLoader();&#xA; loadFBX(blob, loader, function(object) {&#xA; exportToOBJ(object, function(objText) {&#xA; var objBlob = new Blob([objText], { type: &#x27;text/plain&#x27; });&#xA; sendToPHP(objBlob, file.name.split(&#x27;.&#x27;)[0] &#x2B; &#x27;.obj&#x27;);&#xA; });&#xA; });&#xA; };&#xA; reader.readAsArrayBuffer(file);&#xA; } else {&#xA; alert(&#x27;Please select an FBX file to convert.&#x27;);&#xA; }&#xA; }&#xA; </script>



<?php


// Check if form submitted and file uploaded
if ($_SERVER["REQUEST_METHOD"] == "POST" && isset($_FILES["objFile"])) {
 $objFile = $_FILES["objFile"];
 $objFilePath = $objFile["tmp_name"];
 $outputVideo = 'output.mp4';

 // Execute FFmpeg command to convert OBJ to video
 exec("ffmpeg -i \"$objFilePath\" $outputVideo", $output, $returnCode);

 if ($returnCode === 0) {
 echo 'Conversion successful';
 } else {
 echo 'Conversion failed';
 }
} else {
 echo 'No OBJ file uploaded';
}
?>




-
Audio along video processing together by opencv
25 février 2015, par user3397178I am going to do some video processing so that I need my audio signal as well. I wanna develop a framework which extracts the frames of an input video file, processes (like tracking an object, etc) and then combines all frames together to have a new video. As I did it by means of Opencv, it is so straightforward. But as I know, OpenCV does not handle the audio signal along with video. The important point which I really have to do is to have a processed video along with sound. I would like to have the original sounds after processing in the new created video.
I have heard that, I can do Audio processing with ffmpeg and video processing by Opencv, but I don’t have any opinions regarding that. It would be really appreciated if you give me a hint, a general overview or any possibilities for this task. Is is possible to integrate these two libraries (OpenCv, ffmpeg) together and do the mentioned task ? If so, how can I do that ? (any help, hint or suggestion is appreciated)
thanks in advance
Bests, -
how to add text to the video in android ?
4 octobre 2024, par Sajad NorouziIn my app I record a video and I wanna overlay the url of my company on the right bottom of that video. I record video with MediaRecorder and there is no problem with the recording, but for adding text to the video I haven't been successful. I searched and found some library like FFmpeg and JavaCV which let user overlay a text on the video but I don't know if there is any way for using them in Android. after that found OnPreviewFrame which returns each frame of the camerapreivew. I want to get all frames after user touch record button and draw text using canvas to each frame and then save all those frame together until recording video stops, and videos duration are fix and 15 seconds. Is it a good solution ? if it is, how should I implement OnPreviewFrame function ? I know how to draw canvas but I don't know how to convert data[] to the bitmap.